Package javax.websocket.server
Interface ServerEndpointConfig
- 
- All Superinterfaces:
- EndpointConfig
 
 public interface ServerEndpointConfig extends EndpointConfig Provides configuration information for WebSocket endpoints published to a server. Applications may provide their own implementation or useServerEndpointConfig.Builder.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classServerEndpointConfig.Builderstatic classServerEndpointConfig.Configurator
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ServerEndpointConfig.ConfiguratorgetConfigurator()java.lang.Class<?>getEndpointClass()java.util.List<Extension>getExtensions()java.lang.StringgetPath()Returns the path at which this WebSocket server endpoint has been registered.java.util.List<java.lang.String>getSubprotocols()- 
Methods inherited from interface javax.websocket.EndpointConfiggetDecoders, getEncoders, getUserProperties
 
- 
 
- 
- 
- 
Method Detail- 
getEndpointClassjava.lang.Class<?> getEndpointClass() 
 - 
getPathjava.lang.String getPath() Returns the path at which this WebSocket server endpoint has been registered. It may be a path or a level 0 URI template.- Returns:
- The registered path
 
 - 
getSubprotocolsjava.util.List<java.lang.String> getSubprotocols() 
 - 
getExtensionsjava.util.List<Extension> getExtensions() 
 - 
getConfiguratorServerEndpointConfig.Configurator getConfigurator() 
 
- 
 
-