Package com.elastisys.scale.commons.server

Examples of com.elastisys.scale.commons.server.ServletDefinition


    }

    // build server
    ServletContainer restApiServlet = new ServletContainer(
        ResourceConfig.forApplication(application));
    ServletDefinition servlet = new ServletDefinition.Builder().servlet(
        restApiServlet).build();
    Server server = ServletServerBuilder.create()
        .httpsPort(options.httpsPort)
        .sslKeyStoreType(KeyStoreType.PKCS12)
        .sslKeyStorePath(options.sslKeyStore)
View Full Code Here

TOP

Related Classes of com.elastisys.scale.commons.server.ServletDefinition

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.