public static class ServerEndpointConfig.Configurator
extends java.lang.Object
Constructor and Description |
---|
Configurator() |
Modifier and Type | Method and Description |
---|---|
boolean |
checkOrigin(java.lang.String originHeaderValue)
Check the value of the Origin header (See Origin Header) the
client passed during the opening handshake.
|
ServerEndpointConfig.Configurator |
getContainerDefaultConfigurator()
Return the platform default configurator.
|
<T> T |
getEndpointInstance(java.lang.Class<T> endpointClass)
This method is called by the container each time a new client connects to the logical endpoint this
configurator configures.
|
java.util.List<Extension> |
getNegotiatedExtensions(java.util.List<Extension> installed,
java.util.List<Extension> requested)
Return the ordered list of extensions that t server endpoint will support given the requested extension list
passed in, the empty list if none.
|
java.lang.String |
getNegotiatedSubprotocol(java.util.List<java.lang.String> supported,
java.util.List<java.lang.String> requested)
Return the subprotocol the server endpoint has chosen from the requested list supplied by a client who wishes
to connect, or none if there wasn't one this server endpoint liked.
|
void |
modifyHandshake(ServerEndpointConfig sec,
HandshakeRequest request,
HandshakeResponse response)
Called by the container after it has formulated a handshake response resulting from a well-formed handshake
request.
|
public ServerEndpointConfig.Configurator getContainerDefaultConfigurator()
public java.lang.String getNegotiatedSubprotocol(java.util.List<java.lang.String> supported, java.util.List<java.lang.String> requested)
The default platform implementation of this method returns the first subprotocol in the list sent by the client that the server supports, or the empty string if there isn't one.
requested
- the requested subprotocols from the client endpointsupported
- the subprotocols supported by the server endpointpublic java.util.List<Extension> getNegotiatedExtensions(java.util.List<Extension> installed, java.util.List<Extension> requested)
The default platform implementation of this method returns a list containing all of the requested extensions passed to this method that it supports, using the order in the requested extensions, the empty list if none.
installed
- the installed extensions on the implementation.requested
- the requested extensions, in the order they were requested by the clientpublic boolean checkOrigin(java.lang.String originHeaderValue)
The platform default implementation of this method makes a check of the validity of the Origin header sent along with the opening handshake following the recommendation at: Sending the Server's Opening Handshake.
originHeaderValue
- the value of the origin header passed by the client.public void modifyHandshake(ServerEndpointConfig sec, HandshakeRequest request, HandshakeResponse response)
If the developer does not override this method, no further modification of the request and response are made by the implementation.
The user properties made available via EndpointConfig.getUserProperties()
must be a per
WebSocket connection (i.e. per Session
) copy of the user properties. This copy,
including any modifications made to the user properties during the execution of this method must be used to
populate the initial contents of Session.getUserProperties()
.
sec
- the configuration object involved in the handshakerequest
- the opening handshake request.response
- the proposed opening handshake responsepublic <T> T getEndpointInstance(java.lang.Class<T> endpointClass) throws java.lang.InstantiationException
T
- the type of the endpointendpointClass
- the class of the endpointjava.lang.InstantiationException
- if there was an error producing the endpoint instance.