Package voldemort.server.http.gui

Examples of voldemort.server.http.gui.StatusServlet


                               "/admin");
            context.addServlet(new ServletHolder(new StoreServlet(requestHandler)), "/stores");
            context.addServlet(new ServletHolder(new ReadOnlyStoreManagementServlet(server,
                                                                                    velocityEngine)),
                               "/read-only/mgmt");
            context.addServlet(new ServletHolder(new StatusServlet(server, velocityEngine)),
                               "/server-status");
            this.context = context;
            this.httpServer = httpServer;
            this.httpServer.start();
            logger.info("HTTP service started on port " + this.port);
View Full Code Here

TOP

Related Classes of voldemort.server.http.gui.StatusServlet

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.