public class ServerEndpointRegistration extends javax.websocket.server.ServerEndpointConfig.Configurator implements javax.websocket.server.ServerEndpointConfig, BeanFactoryAware
ServerEndpointConfig
for use in
Spring-based applications. A ServerEndpointRegistration
bean is detected by
ServerEndpointExporter
and registered with a Java WebSocket runtime at startup.
Class constructors accept a singleton Endpoint
instance
or an Endpoint specified by type Class
. When specified by type, the endpoint
will be instantiated and initialized through the Spring ApplicationContext before
each client WebSocket connection.
This class also extends
ServerEndpointConfig.Configurator
to make it easier
to override methods for customizing the handshake process.
ServerEndpointExporter
Constructor and Description |
---|
ServerEndpointRegistration(java.lang.String path,
java.lang.Class<? extends javax.websocket.Endpoint> endpointClass)
Create a new
ServerEndpointRegistration instance from an
javax.websocket.Endpoint class. |
ServerEndpointRegistration(java.lang.String path,
javax.websocket.Endpoint endpoint)
Create a new
ServerEndpointRegistration instance from an
javax.websocket.Endpoint instance. |
Modifier and Type | Method and Description |
---|---|
javax.websocket.server.ServerEndpointConfig.Configurator |
getConfigurator() |
java.util.List<java.lang.Class<? extends javax.websocket.Decoder>> |
getDecoders() |
java.util.List<java.lang.Class<? extends javax.websocket.Encoder>> |
getEncoders() |
javax.websocket.Endpoint |
getEndpoint() |
java.lang.Class<? extends javax.websocket.Endpoint> |
getEndpointClass() |
<T> T |
getEndpointInstance(java.lang.Class<T> clazz) |
java.util.List<javax.websocket.Extension> |
getExtensions() |
java.lang.String |
getPath() |
java.util.List<java.lang.String> |
getSubprotocols() |
java.util.Map<java.lang.String,java.lang.Object> |
getUserProperties() |
void |
modifyHandshake(javax.websocket.server.ServerEndpointConfig sec,
javax.websocket.server.HandshakeRequest request,
javax.websocket.HandshakeResponse response) |
void |
setBeanFactory(BeanFactory beanFactory)
Callback that supplies the owning factory to a bean instance.
|
void |
setDecoders(java.util.List<java.lang.Class<? extends javax.websocket.Decoder>> decoders) |
void |
setEncoders(java.util.List<java.lang.Class<? extends javax.websocket.Encoder>> encoders) |
void |
setExtensions(java.util.List<javax.websocket.Extension> extensions) |
void |
setSubprotocols(java.util.List<java.lang.String> subprotocols) |
void |
setUserProperties(java.util.Map<java.lang.String,java.lang.Object> userProperties) |
java.lang.String |
toString() |
public ServerEndpointRegistration(java.lang.String path, javax.websocket.Endpoint endpoint)
ServerEndpointRegistration
instance from an
javax.websocket.Endpoint
instance.path
- the endpoint pathendpoint
- the endpoint instancepublic ServerEndpointRegistration(java.lang.String path, java.lang.Class<? extends javax.websocket.Endpoint> endpointClass)
ServerEndpointRegistration
instance from an
javax.websocket.Endpoint
class.path
- the endpoint pathendpointClass
- the endpoint classpublic java.lang.String getPath()
getPath
in interface javax.websocket.server.ServerEndpointConfig
public java.lang.Class<? extends javax.websocket.Endpoint> getEndpointClass()
getEndpointClass
in interface javax.websocket.server.ServerEndpointConfig
public javax.websocket.Endpoint getEndpoint()
public void setSubprotocols(java.util.List<java.lang.String> subprotocols)
public java.util.List<java.lang.String> getSubprotocols()
getSubprotocols
in interface javax.websocket.server.ServerEndpointConfig
public void setExtensions(java.util.List<javax.websocket.Extension> extensions)
public java.util.List<javax.websocket.Extension> getExtensions()
getExtensions
in interface javax.websocket.server.ServerEndpointConfig
public void setEncoders(java.util.List<java.lang.Class<? extends javax.websocket.Encoder>> encoders)
public java.util.List<java.lang.Class<? extends javax.websocket.Encoder>> getEncoders()
getEncoders
in interface javax.websocket.EndpointConfig
public void setDecoders(java.util.List<java.lang.Class<? extends javax.websocket.Decoder>> decoders)
public java.util.List<java.lang.Class<? extends javax.websocket.Decoder>> getDecoders()
getDecoders
in interface javax.websocket.EndpointConfig
public void setUserProperties(java.util.Map<java.lang.String,java.lang.Object> userProperties)
public java.util.Map<java.lang.String,java.lang.Object> getUserProperties()
getUserProperties
in interface javax.websocket.EndpointConfig
public javax.websocket.server.ServerEndpointConfig.Configurator getConfigurator()
getConfigurator
in interface javax.websocket.server.ServerEndpointConfig
public final <T> T getEndpointInstance(java.lang.Class<T> clazz) throws java.lang.InstantiationException
getEndpointInstance
in class javax.websocket.server.ServerEndpointConfig.Configurator
java.lang.InstantiationException
public void modifyHandshake(javax.websocket.server.ServerEndpointConfig sec, javax.websocket.server.HandshakeRequest request, javax.websocket.HandshakeResponse response)
modifyHandshake
in class javax.websocket.server.ServerEndpointConfig.Configurator
public void setBeanFactory(BeanFactory beanFactory)
BeanFactoryAware
Invoked after the population of normal bean properties
but before an initialization callback such as
InitializingBean.afterPropertiesSet()
or a custom init-method.
setBeanFactory
in interface BeanFactoryAware
beanFactory
- owning BeanFactory (never null
).
The bean can immediately call methods on the factory.BeanInitializationException
public java.lang.String toString()
toString
in class java.lang.Object