return implementationFactory.createOSGiProperties(reference);
}
public static OSGiProperty createOSGiProperty(ExtensionPointRegistry registry, String name, Object value) {
FactoryExtensionPoint factoryExtensionPoint = registry.getExtensionPoint(FactoryExtensionPoint.class);
OSGiImplementationFactory implementationFactory =
factoryExtensionPoint.getFactory(OSGiImplementationFactory.class);
return implementationFactory.createOSGiProperty(name, value);
}