Class BasicServerEndpointConfig
- java.lang.Object
-
- org.eclipse.jetty.websocket.jsr356.server.BasicServerEndpointConfig
-
- All Implemented Interfaces:
EndpointConfig,ServerEndpointConfig
- Direct Known Subclasses:
PathParamServerEndpointConfig
public class BasicServerEndpointConfig extends Object implements ServerEndpointConfig
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface javax.websocket.server.ServerEndpointConfig
ServerEndpointConfig.Builder, ServerEndpointConfig.Configurator
-
-
Constructor Summary
Constructors Constructor Description BasicServerEndpointConfig(org.eclipse.jetty.websocket.common.scopes.WebSocketContainerScope containerScope, Class<?> endpointClass, String path)BasicServerEndpointConfig(org.eclipse.jetty.websocket.common.scopes.WebSocketContainerScope containerScope, ServerEndpointConfig copy)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ServerEndpointConfig.ConfiguratorgetConfigurator()List<Class<? extends Decoder>>getDecoders()List<Class<? extends Encoder>>getEncoders()Class<?>getEndpointClass()List<Extension>getExtensions()StringgetPath()List<String>getSubprotocols()Map<String,Object>getUserProperties()
-
-
-
Constructor Detail
-
BasicServerEndpointConfig
public BasicServerEndpointConfig(org.eclipse.jetty.websocket.common.scopes.WebSocketContainerScope containerScope, Class<?> endpointClass, String path)
-
BasicServerEndpointConfig
public BasicServerEndpointConfig(org.eclipse.jetty.websocket.common.scopes.WebSocketContainerScope containerScope, ServerEndpointConfig copy)
-
-
Method Detail
-
getEncoders
public List<Class<? extends Encoder>> getEncoders()
- Specified by:
getEncodersin interfaceEndpointConfig
-
getDecoders
public List<Class<? extends Decoder>> getDecoders()
- Specified by:
getDecodersin interfaceEndpointConfig
-
getUserProperties
public Map<String,Object> getUserProperties()
- Specified by:
getUserPropertiesin interfaceEndpointConfig
-
getEndpointClass
public Class<?> getEndpointClass()
- Specified by:
getEndpointClassin interfaceServerEndpointConfig
-
getPath
public String getPath()
- Specified by:
getPathin interfaceServerEndpointConfig
-
getSubprotocols
public List<String> getSubprotocols()
- Specified by:
getSubprotocolsin interfaceServerEndpointConfig
-
getExtensions
public List<Extension> getExtensions()
- Specified by:
getExtensionsin interfaceServerEndpointConfig
-
getConfigurator
public ServerEndpointConfig.Configurator getConfigurator()
- Specified by:
getConfiguratorin interfaceServerEndpointConfig
-
-