Class ExternalRequestContext
java.lang.Object
org.forgerock.openam.auth.node.api.ExternalRequestContext
A representation of the external HTTP request in the current tree authentication context.
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionfinal String
The authId.final String
The IP address associated with the current HTTP request.The cookie name-value pairs for the current authenticate HTTP request.final ListMultimap<String,
String> The HTTP headers from the current authenticate HTTP request.final String
The host name associated with the current HTTP request.final PreferredLocales
The preferred locales for the request.The parameters of the request.final String
The URL of the server.final javax.servlet.http.HttpServletRequest
TheHttpServletRequest
of the current authentication context.final javax.servlet.http.HttpServletResponse
TheHttpServletResponse
of the current authentication context.final String
The SSO token ID. -
Method Summary
-
Field Details
-
headers
The HTTP headers from the current authenticate HTTP request. -
cookies
The cookie name-value pairs for the current authenticate HTTP request. -
locales
The preferred locales for the request. -
clientIp
The IP address associated with the current HTTP request. -
hostName
The host name associated with the current HTTP request. -
ssoTokenId
The SSO token ID. This is available if user already has a session, usually during upgrade. -
authId
The authId. This is typically available after the first call to the authentication. -
parameters
The parameters of the request. -
serverUrl
The URL of the server. -
servletRequest
public final javax.servlet.http.HttpServletRequest servletRequestTheHttpServletRequest
of the current authentication context. -
servletResponse
public final javax.servlet.http.HttpServletResponse servletResponseTheHttpServletResponse
of the current authentication context.
-