Package org.astrogrid.samp.httpd

Examples of org.astrogrid.samp.httpd.HttpServer


    /**
     * Private constructor constructs sole instance.
     */
    private JSkyServer() throws IOException {
        httpServer_ = new HttpServer();
        httpServer_.setDaemon(true);

        /* Set up handler for custom resource serving. */
        resourceHandler_ = new ResourceHandler(httpServer_, "/dynamic");
        httpServer_.addHandler(resourceHandler_);
View Full Code Here

TOP

Related Classes of org.astrogrid.samp.httpd.HttpServer

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.