Package org.glassfish.tyrus.core
Class RequestContext
java.lang.Object
org.glassfish.tyrus.spi.UpgradeRequest
org.glassfish.tyrus.core.RequestContext
- All Implemented Interfaces:
HandshakeRequest
Implementation of all possible request interfaces. Should be the only point of truth.
- Author:
- Pavel Bucek
-
Nested Class Summary
Nested Classes -
Field Summary
Fields inherited from class org.glassfish.tyrus.spi.UpgradeRequest
AUTHORIZATION, CLUSTER_CONNECTION_ID_HEADER, CONNECTION, ENABLE_TRACING_HEADER, HOST, ORIGIN_HEADER, RESPONSE_CODE_MESSAGE, SEC_WS_ORIGIN_HEADER, SERVER_KEY_HASH, TRACING_THRESHOLD, UPGRADE, WEBSOCKETFields inherited from interface jakarta.websocket.server.HandshakeRequest
SEC_WEBSOCKET_EXTENSIONS, SEC_WEBSOCKET_KEY, SEC_WEBSOCKET_PROTOCOL, SEC_WEBSOCKET_VERSION -
Method Summary
Modifier and TypeMethodDescriptionReturns the header value corresponding to the name.Get headers.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.Get the Internet Protocol (IP) address of the client or last proxy that sent the request.Get the undecoded request uri (up to the query string) of underlying HTTP handshake request.Return the request URI of the handshake request.Returns the host name of the server to which the request was sent.intGet the port of the last client or proxy that sent the request.Return the authenticated user ornullif no user is authenticated for this handshake.booleanisSecure()Indicates whether this request was made using a secure channel (such as HTTPS).booleanisUserInRole(String role) Checks whether the current user is in the given role.voidlock()Make headers and parameter map read-only.
-
Method Details
-
getHeaders
Get headers.- Returns:
- headers map. List items are corresponding to header declaration in HTTP request.
-
getHeader
Returns the header value corresponding to the name.- Specified by:
getHeaderin classUpgradeRequest- Parameters:
name- header name.- Returns:
Listof header values iff found,nullotherwise.
-
lock
public void lock()Make headers and parameter map read-only. -
getUserPrincipal
Description copied from interface:HandshakeRequestReturn the authenticated user ornullif no user is authenticated for this handshake.- Returns:
- the user principal.
-
getRequestURI
Description copied from interface:HandshakeRequestReturn the request URI of the handshake request.- Returns:
- the request uri of the handshake request.
-
isUserInRole
Description copied from interface:HandshakeRequestChecks 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
Description copied from interface:HandshakeRequestReturn 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
nullif 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
Description copied from interface:HandshakeRequestReturn the request parameters associated with the request.- Returns:
- the unmodifiable map of the request parameters.
-
getQueryString
Description copied from interface:HandshakeRequestReturn the query string associated with the request.- Returns:
- the query string.
-
getRequestUri
Description copied from class:UpgradeRequestGet the undecoded request uri (up to the query string) of underlying HTTP handshake request.- Specified by:
getRequestUriin classUpgradeRequest- Returns:
- request uri.
-
isSecure
public boolean isSecure()Description copied from class:UpgradeRequestIndicates whether this request was made using a secure channel (such as HTTPS).- Specified by:
isSecurein classUpgradeRequest- Returns:
- true if the request was made using secure channel, false otherwise.
-
getRemoteAddr
Get the Internet Protocol (IP) address of the client or last proxy that sent the request.- Returns:
- a
Stringcontaining the IP address of the client that sent the request ornullwhen method is called on client-side.
-
getServerAddr
Returns the host name of the server to which the request was sent.- Returns:
- a
StringReturns the host name of the server to which the request was sent ornullwhen method is called on client-side.
-
getServerPort
public int getServerPort()Get the port of the last client or proxy that sent the request.- Returns:
- a port of the client that sent the request.
-