Package org.apache.karaf.wrapper

Examples of org.apache.karaf.wrapper.WrapperService


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

    @Override
    protected void doStart() throws Exception {
        WrapperService wrapperService = new WrapperServiceImpl();
        register(WrapperService.class, wrapperService);

        WrapperMBeanImpl wrapperMBean = new WrapperMBeanImpl();
        wrapperMBean.setWrapperService(wrapperService);
        registerMBean(wrapperMBean, "type=wrapper");
View Full Code Here

TOP

Related Classes of org.apache.karaf.wrapper.WrapperService

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.