Package org.apache.karaf.http.core.internal

Examples of org.apache.karaf.http.core.internal.ServletServiceImpl


    @Override
    protected void doStart() throws Exception {
        ServletEventHandler servletEventHandler = new ServletEventHandler();
        register(ServletListener.class, servletEventHandler);

        ServletServiceImpl servletService = new ServletServiceImpl(servletEventHandler);
        register(ServletService.class, servletService);

        HttpMBeanImpl httpMBean = new HttpMBeanImpl(servletService);
        registerMBean(httpMBean, "type=http");
    }
View Full Code Here

TOP

Related Classes of org.apache.karaf.http.core.internal.ServletServiceImpl

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.