public interface HandshakeRequest
The handshake request represents the WebSocket defined HTTP GET request for the opening handshake of a WebSocket
session.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn the read only map of HTTP headers to header values that came with the handshake request.Return a reference to the HttpSession that the web socket handshake that started this conversation was part of, if the implementation is part of a Java EE web container.Return the request parameters associated with the request.Return the query string associated with the request.Return the request URI of the handshake request.Return the authenticated user ornull
if no user is authenticated for this handshake.boolean
isUserInRole
(String role) Checks whether the current user is in the given role.
-
Field Details
-
SEC_WEBSOCKET_KEY
-
SEC_WEBSOCKET_PROTOCOL
-
SEC_WEBSOCKET_VERSION
-
SEC_WEBSOCKET_EXTENSIONS
-
-
Method Details
-
getHeaders
-
getUserPrincipal
Principal getUserPrincipal()Return the authenticated user ornull
if no user is authenticated for this handshake.- Returns:
- the user principal.
-
getRequestURI
URI getRequestURI()Return the request URI of the handshake request.- Returns:
- the request uri of the handshake request.
-
isUserInRole
Checks whether the current user is in the given role. Roles and role membership can be defined using deployment descriptors of the containing WAR file, if running in a Java EE web container. If the user has not been authenticated, the method returnsfalse
.- Parameters:
role
- the role being checked.- Returns:
- whether the authenticated user is in the role, or false if the user has not been authenticated.
-
getHttpSession
Object getHttpSession()Return a reference to the HttpSession that the web socket handshake that started this conversation was part of, if the implementation is part of a Java EE web container.- Returns:
- the http session or
null
if either the websocket implementation is not part of a Java EE web container, or there is no HttpSession associated with the opening handshake request.
-
getParameterMap
-
getQueryString
String getQueryString()Return the query string associated with the request.- Returns:
- the query string.
-