Package org.apache.karaf.system.internal

Examples of org.apache.karaf.system.internal.SystemServiceImpl


@Services(provides = @ProvideService(SystemService.class))
public class Activator extends BaseActivator {

    @Override
    protected void doStart() throws Exception {
        SystemServiceImpl systemService = new SystemServiceImpl();
        systemService.setBundleContext(bundleContext);
        register(SystemService.class, systemService);

        SystemMBeanImpl mbean = new SystemMBeanImpl();
        mbean.setBundleContext(bundleContext);
        mbean.setSystemService(systemService);
View Full Code Here

TOP

Related Classes of org.apache.karaf.system.internal.SystemServiceImpl

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.