Package org.apache.karaf.web.internal

Examples of org.apache.karaf.web.internal.WebContainerServiceImpl


        }

        WebEventHandler webEventHandler = new WebEventHandler();
        register(WebListener.class, webEventHandler);

        WebContainerServiceImpl webContainerService = new WebContainerServiceImpl();
        webContainerService.setBundleContext(bundleContext);
        webContainerService.setWarManager(warManager);
        webContainerService.setWebEventHandler(webEventHandler);
        register(WebContainerService.class, webContainerService);

        WebMBeanImpl webMBean = new WebMBeanImpl();
        webMBean.setWebContainerService(webContainerService);
        registerMBean(webMBean, "type=web");
View Full Code Here

TOP

Related Classes of org.apache.karaf.web.internal.WebContainerServiceImpl

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.