public abstract class AbstractStandardUpgradeStrategy extends Object implements RequestUpgradeStrategy
RequestUpgradeStrategy
implementations that build on the
standard WebSocket API for Java.Constructor and Description |
---|
AbstractStandardUpgradeStrategy() |
Modifier and Type | Method and Description |
---|---|
protected javax.websocket.server.ServerContainer |
getContainer(HttpServletRequest request) |
protected HttpServletRequest |
getHttpServletRequest(ServerHttpRequest request) |
protected HttpServletResponse |
getHttpServletResponse(ServerHttpResponse response) |
protected List<WebSocketExtension> |
getInstalledExtensions(javax.websocket.WebSocketContainer container) |
List<WebSocketExtension> |
getSupportedExtensions(ServerHttpRequest request) |
void |
upgrade(ServerHttpRequest request,
ServerHttpResponse response,
String selectedProtocol,
List<WebSocketExtension> selectedExtensions,
Principal user,
WebSocketHandler wsHandler,
Map<String,Object> attrs)
Perform runtime specific steps to complete the upgrade.
|
protected abstract void |
upgradeInternal(ServerHttpRequest request,
ServerHttpResponse response,
String selectedProtocol,
List<javax.websocket.Extension> selectedExtensions,
javax.websocket.Endpoint endpoint) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getSupportedVersions
protected final Log logger
public List<WebSocketExtension> getSupportedExtensions(ServerHttpRequest request)
getSupportedExtensions
in interface RequestUpgradeStrategy
protected javax.websocket.server.ServerContainer getContainer(HttpServletRequest request)
protected List<WebSocketExtension> getInstalledExtensions(javax.websocket.WebSocketContainer container)
protected final HttpServletResponse getHttpServletResponse(ServerHttpResponse response)
protected final HttpServletRequest getHttpServletRequest(ServerHttpRequest request)
public void upgrade(ServerHttpRequest request, ServerHttpResponse response, String selectedProtocol, List<WebSocketExtension> selectedExtensions, Principal user, WebSocketHandler wsHandler, Map<String,Object> attrs) throws HandshakeFailureException
RequestUpgradeStrategy
upgrade
in interface RequestUpgradeStrategy
request
- the current requestresponse
- the current responseselectedProtocol
- the selected sub-protocol, if anyselectedExtensions
- the selected WebSocket protocol extensionsuser
- the user to associate with the WebSocket sessionwsHandler
- the handler for WebSocket messagesattrs
- handshake request specific attributes to be set on the WebSocket
session via HandshakeInterceptor
and thus made available to the
WebSocketHandler
;HandshakeFailureException
- thrown when handshake processing failed to
complete due to an internal, unrecoverable error, i.e. a server error as
opposed to a failure to successfully negotiate the requirements of the
handshake request.protected abstract void upgradeInternal(ServerHttpRequest request, ServerHttpResponse response, String selectedProtocol, List<javax.websocket.Extension> selectedExtensions, javax.websocket.Endpoint endpoint) throws HandshakeFailureException
HandshakeFailureException