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

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


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

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

        ServletServiceImpl servletService = new ServletServiceImpl(servletEventHandler);
        register(ServletService.class, servletService);
View Full Code Here

TOP

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

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.