Package org.apache.tuscany.sca.implementation.osgi

Examples of org.apache.tuscany.sca.implementation.osgi.OSGiImplementationFactory


        return files;
    }

    public static Collection<OSGiProperty> getOSGiProperties(ExtensionPointRegistry registry, ServiceReference reference) {
        FactoryExtensionPoint factoryExtensionPoint = registry.getExtensionPoint(FactoryExtensionPoint.class);
        OSGiImplementationFactory implementationFactory =
            factoryExtensionPoint.getFactory(OSGiImplementationFactory.class);
        return implementationFactory.createOSGiProperties(reference);
    }
View Full Code Here


        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);
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.implementation.osgi.OSGiImplementationFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.