Class AnnotatedServerEndpointConfig
- java.lang.Object
-
- org.eclipse.jetty.websocket.jsr356.server.AnnotatedServerEndpointConfig
-
- All Implemented Interfaces:
EndpointConfig,ServerEndpointConfig
public class AnnotatedServerEndpointConfig 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 AnnotatedServerEndpointConfig(org.eclipse.jetty.websocket.common.scopes.WebSocketContainerScope containerScope, Class<?> endpointClass, ServerEndpoint anno)AnnotatedServerEndpointConfig(org.eclipse.jetty.websocket.common.scopes.WebSocketContainerScope containerScope, Class<?> endpointClass, ServerEndpoint anno, ServerEndpointConfig baseConfig)
-
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()StringtoString()
-
-
-
Constructor Detail
-
AnnotatedServerEndpointConfig
public AnnotatedServerEndpointConfig(org.eclipse.jetty.websocket.common.scopes.WebSocketContainerScope containerScope, Class<?> endpointClass, ServerEndpoint anno) throws DeploymentException- Throws:
DeploymentException
-
AnnotatedServerEndpointConfig
public AnnotatedServerEndpointConfig(org.eclipse.jetty.websocket.common.scopes.WebSocketContainerScope containerScope, Class<?> endpointClass, ServerEndpoint anno, ServerEndpointConfig baseConfig) throws DeploymentException- Throws:
DeploymentException
-
-
Method Detail
-
getConfigurator
public ServerEndpointConfig.Configurator getConfigurator()
- Specified by:
getConfiguratorin interfaceServerEndpointConfig
-
getDecoders
public List<Class<? extends Decoder>> getDecoders()
- Specified by:
getDecodersin interfaceEndpointConfig
-
getEncoders
public List<Class<? extends Encoder>> getEncoders()
- Specified by:
getEncodersin interfaceEndpointConfig
-
getEndpointClass
public Class<?> getEndpointClass()
- Specified by:
getEndpointClassin interfaceServerEndpointConfig
-
getExtensions
public List<Extension> getExtensions()
- Specified by:
getExtensionsin interfaceServerEndpointConfig
-
getPath
public String getPath()
- Specified by:
getPathin interfaceServerEndpointConfig
-
getSubprotocols
public List<String> getSubprotocols()
- Specified by:
getSubprotocolsin interfaceServerEndpointConfig
-
getUserProperties
public Map<String,Object> getUserProperties()
- Specified by:
getUserPropertiesin interfaceEndpointConfig
-
-