use of org.apache.aries.blueprint.mutable.MutableValueMetadata in project karaf by apache.
the class NamespaceHandler method createValue.
private static ValueMetadata createValue(ParserContext context, String value, String type) {
MutableValueMetadata m = context.createMetadata(MutableValueMetadata.class);
m.setStringValue(value);
m.setType(type);
return m;
}
Aggregations