Uses of Class
javax.websocket.server.ServerEndpointConfig.Builder

Packages that use ServerEndpointConfig.Builder
javax.websocket.server This package contains all the WebSocket APIs used only by server side applications. 
 

Uses of ServerEndpointConfig.Builder in javax.websocket.server
 

Methods in javax.websocket.server that return ServerEndpointConfig.Builder
 ServerEndpointConfig.Builder ServerEndpointConfig.Builder.configurator(ServerEndpointConfig.Configurator serverEndpointConfigurator)
          Sets the custom configurator to use on the configuration object built by this builder.
static ServerEndpointConfig.Builder ServerEndpointConfig.Builder.create(Class<?> endpointClass, String path)
          Creates the builder with the mandatory information of the endpoint class (programmatic or annotated), the relative URI or URI-template to use, and with no subprotocols, extensions, encoders, decoders or custom configurator.
 ServerEndpointConfig.Builder ServerEndpointConfig.Builder.decoders(List<Class<? extends Decoder>> decoders)
          Sets the decoder implementation classes to use in the configuration.
 ServerEndpointConfig.Builder ServerEndpointConfig.Builder.encoders(List<Class<? extends Encoder>> encoders)
          Sets the list of encoder implementation classes for this builder.
 ServerEndpointConfig.Builder ServerEndpointConfig.Builder.extensions(List<Extension> extensions)
          Sets the extensions to use in the configuration.
 ServerEndpointConfig.Builder ServerEndpointConfig.Builder.subprotocols(List<String> subprotocols)
          Sets the subprotocols to use in the configuration.
 



Copyright © 2012-2013, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.
Comments to : users@websocket-spec.java.net