Package org.apache.felix.http.whiteboard.internal.manager

Examples of org.apache.felix.http.whiteboard.internal.manager.HttpWhiteboardWebConsolePlugin


        addTracker(new HttpContextTracker(getBundleContext(), this.manager));
        addTracker(new FilterTracker(getBundleContext(), this.manager));
        addTracker(new ServletTracker(getBundleContext(), this.manager));
        addTracker(new HttpServiceTracker(getBundleContext(), this.manager));

        HttpWhiteboardWebConsolePlugin plugin = new HttpWhiteboardWebConsolePlugin(this.manager);
        Hashtable<String, Object> props = new Hashtable<String, Object>();
        props.put("felix.webconsole.label", plugin.getLabel());
        props.put("felix.webconsole.title", plugin.getTitle());
        props.put("felix.webconsole.configprinter.modes", new String[]
            { "txt", "zip" });
        props.put(Constants.SERVICE_DESCRIPTION, "Felix Http Whiteboard WebConsole Plugin and Configuration Printer");
        httpPlugin = getBundleContext().registerService("javax.servlet.Servlet", plugin, props);
View Full Code Here

TOP

Related Classes of org.apache.felix.http.whiteboard.internal.manager.HttpWhiteboardWebConsolePlugin

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.