Package com.wordnik.swaggersocket.server

Examples of com.wordnik.swaggersocket.server.SwaggerSocketProtocolInterceptor


    public static void main(String[] args) throws IOException {
        Config.Builder b = new Config.Builder();
        b.resource("./app")
                .initParam("com.sun.jersey.config.property.packages", NettoSphere.class.getPackage().getName())
                .initParam(DISABLE_ATMOSPHEREINTERCEPTOR, "true")
                .interceptor(new SwaggerSocketProtocolInterceptor())
                .port(8080)
                .host("127.0.0.1")
                .build();
        Nettosphere s = new Nettosphere.Builder().config(b.build()).build();
        s.start();
View Full Code Here

TOP

Related Classes of com.wordnik.swaggersocket.server.SwaggerSocketProtocolInterceptor

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.