Package org.apache.felix.scr.impl.runtime

Examples of org.apache.felix.scr.impl.runtime.ServiceComponentRuntimeImpl


    protected void doStart() throws Exception {

        // prepare component registry
        m_componentBundles = new HashMap<Long, BundleComponentActivator>();
        m_componentRegistry = new ComponentRegistry( m_context );
        ServiceComponentRuntime runtime = new ServiceComponentRuntimeImpl(m_context, m_componentRegistry);
        m_runtime_reg = m_context.registerService(ServiceComponentRuntime.class, runtime, null);

        // log SCR startup
        log( LogService.LOG_INFO, m_bundle, " Version = {0}",
            new Object[] {m_bundle.getHeaders().get( Constants.BUNDLE_VERSION )}, null );
View Full Code Here

TOP

Related Classes of org.apache.felix.scr.impl.runtime.ServiceComponentRuntimeImpl

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.