Package org.keycloak.authentication
Class AuthenticationProcessor.Result
- java.lang.Object
-
- org.keycloak.authentication.AuthenticationProcessor.Result
-
- All Implemented Interfaces:
AbstractAuthenticationFlowContext,AuthenticationFlowContext,ClientAuthenticationFlowContext
- Enclosing class:
- AuthenticationProcessor
public class AuthenticationProcessor.Result extends Object implements AuthenticationFlowContext, ClientAuthenticationFlowContext
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidattachUserSession(UserSessionModel userSession)voidattempted()There was no failure or challenge.voidcancelLogin()End the flow and redirect browser based on protocol specific respones.voidchallenge(javax.ws.rs.core.Response challenge)Sends a challenge response back to the HTTP client.voidclearUser()Clear the user from the flow.voidfailure(AuthenticationFlowError error)Aborts the current flowvoidfailure(AuthenticationFlowError error, javax.ws.rs.core.Response challenge)Aborts the current flow.voidfailure(AuthenticationFlowError error, javax.ws.rs.core.Response challenge, String eventDetails, String userErrorMessage)Aborts the current flow.voidfailureChallenge(AuthenticationFlowError error, javax.ws.rs.core.Response challenge)Same behavior as forceChallenge(), but the error count in brute force attack detection will be incremented.voidforceChallenge(javax.ws.rs.core.Response challenge)Sends the challenge back to the HTTP client irregardless of the current executionr requirementvoidfork()Fork the current flow.voidforkWithErrorMessage(FormMessage message)Fork the current flow.voidforkWithSuccessMessage(FormMessage message)Fork the current flow.LoginFormsProviderform()Create a Freemarker form builder that presets the user, action URI, and a generated access codeStringgenerateAccessCode()Generates access code and updates clientsession timestamp Access codes must be included in form action callbacks as a query parameter.URIgetActionTokenUrl(String tokenString)Get the action URL for the action token executor.URIgetActionUrl(String code)Get the action URL for the required action.List<AuthenticationSelectionOption>getAuthenticationSelections()AuthenticationSessionModelgetAuthenticationSession()AuthenticationSessionModel attached to this flowAuthenticatorgetAuthenticator()AuthenticatorConfigModelgetAuthenticatorConfig()Get any configuration associated with the current executionAuthenticationExecutionModel.RequirementgetCategoryRequirementFromCurrentFlow(String authenticatorCategory)javax.ws.rs.core.ResponsegetChallenge()ClientModelgetClient()Current client attached to this flow.Map<String,String>getClientAuthAttributes()Return the map where the authenticators can put some additional state related to authenticated client and the context how was client authenticated (ie.ClientAuthenticatorgetClientAuthenticator()ClientConnectiongetConnection()Information about the IP address from the connecting HTTP client.AuthenticationFlowErrorgetError()Get the error condition of a failed execution.FormMessagegetErrorMessage()EventBuildergetEvent()Current event builder being usedStringgetEventDetails()Get details of the event that caused an errorAuthenticationExecutionModelgetExecution()The current execution in the flowStringgetFlowPath()FormMessagegetForwardedErrorMessage()This could be an error message forwarded from another authenticator that is restarting or continuing the flo.FormMessagegetForwardedInfoMessage()This could be an info message forwarded from another authenticator.FormMessagegetForwardedSuccessMessage()This could be an success message forwarded from another authenticator that is restarting or continuing the flow.HttpRequestgetHttpRequest()BruteForceProtectorgetProtector()RealmModelgetRealm()Current realmURIgetRefreshExecutionUrl()Get the refresh URL for the required action.URIgetRefreshUrl(boolean authSessionIdParam)Get the refresh URL for the flow.KeycloakSessiongetSession()Current sessionFlowStatusgetStatus()Get the current status of the current execution.FormMessagegetSuccessMessage()javax.ws.rs.core.UriInfogetUriInfo()UriInfo of the current requestUserModelgetUser()Current user attached to this flow.StringgetUserErrorMessage()A custom error message that can be displayed to the userEventBuildernewEvent()Create a refresh new EventBuilder to use within this contextvoidresetFlow()Reset the current flow to the beginning and restarts it.voidresetFlow(Runnable afterResetListener)Reset the current flow to the beginning and restarts it.voidsetAuthenticationSelections(List<AuthenticationSelectionOption> authenticationSelections)voidsetClient(ClientModel client)Attach a specific client to this flow.voidsetForwardedInfoMessage(String message, Object... parameters)voidsetUser(UserModel user)Attach a specific user to this flow.voidsuccess()Mark the current execution as successful.
-
-
-
Method Detail
-
newEvent
public EventBuilder newEvent()
Description copied from interface:AbstractAuthenticationFlowContextCreate a refresh new EventBuilder to use within this context- Specified by:
newEventin interfaceAbstractAuthenticationFlowContext- Returns:
-
getCategoryRequirementFromCurrentFlow
public AuthenticationExecutionModel.Requirement getCategoryRequirementFromCurrentFlow(String authenticatorCategory)
- Specified by:
getCategoryRequirementFromCurrentFlowin interfaceAbstractAuthenticationFlowContext
-
getExecution
public AuthenticationExecutionModel getExecution()
Description copied from interface:AbstractAuthenticationFlowContextThe current execution in the flow- Specified by:
getExecutionin interfaceAbstractAuthenticationFlowContext- Returns:
-
getAuthenticatorConfig
public AuthenticatorConfigModel getAuthenticatorConfig()
Description copied from interface:AbstractAuthenticationFlowContextGet any configuration associated with the current execution- Specified by:
getAuthenticatorConfigin interfaceAbstractAuthenticationFlowContext- Returns:
-
getAuthenticator
public Authenticator getAuthenticator()
-
getStatus
public FlowStatus getStatus()
Description copied from interface:AbstractAuthenticationFlowContextGet the current status of the current execution.- Specified by:
getStatusin interfaceAbstractAuthenticationFlowContext- Returns:
- may return null if not set yet.
-
getClientAuthenticator
public ClientAuthenticator getClientAuthenticator()
-
success
public void success()
Description copied from interface:AbstractAuthenticationFlowContextMark the current execution as successful. The flow will then continue- Specified by:
successin interfaceAbstractAuthenticationFlowContext
-
failure
public void failure(AuthenticationFlowError error)
Description copied from interface:AbstractAuthenticationFlowContextAborts the current flow- Specified by:
failurein interfaceAbstractAuthenticationFlowContext
-
challenge
public void challenge(javax.ws.rs.core.Response challenge)
Description copied from interface:AbstractAuthenticationFlowContextSends a challenge response back to the HTTP client. If the current execution requirement is optional, this response will not be sent. If the current execution requirement is alternative, then this challenge will be sent if no other alternative execution was successful.- Specified by:
challengein interfaceAbstractAuthenticationFlowContext
-
forceChallenge
public void forceChallenge(javax.ws.rs.core.Response challenge)
Description copied from interface:AbstractAuthenticationFlowContextSends the challenge back to the HTTP client irregardless of the current executionr requirement- Specified by:
forceChallengein interfaceAbstractAuthenticationFlowContext
-
failureChallenge
public void failureChallenge(AuthenticationFlowError error, javax.ws.rs.core.Response challenge)
Description copied from interface:AbstractAuthenticationFlowContextSame behavior as forceChallenge(), but the error count in brute force attack detection will be incremented. For example, if a user enters in a bad password, the user is directed to try again, but Keycloak will keep track of how many failures have happened.- Specified by:
failureChallengein interfaceAbstractAuthenticationFlowContext
-
failure
public void failure(AuthenticationFlowError error, javax.ws.rs.core.Response challenge)
Description copied from interface:AbstractAuthenticationFlowContextAborts the current flow.- Specified by:
failurein interfaceAbstractAuthenticationFlowContextchallenge- Response that will be sent back to HTTP client
-
failure
public void failure(AuthenticationFlowError error, javax.ws.rs.core.Response challenge, String eventDetails, String userErrorMessage)
Description copied from interface:AbstractAuthenticationFlowContextAborts the current flow.- Specified by:
failurein interfaceAbstractAuthenticationFlowContextchallenge- Response that will be sent back to HTTP clienteventDetails- Details about the error eventuserErrorMessage- A message describing the error to the user
-
attempted
public void attempted()
Description copied from interface:AbstractAuthenticationFlowContextThere was no failure or challenge. The authenticator was attempted, but not fulfilled. If the current execution requirement is alternative or optional, then this status is ignored by the flow.- Specified by:
attemptedin interfaceAbstractAuthenticationFlowContext
-
getUser
public UserModel getUser()
Description copied from interface:AuthenticationFlowContextCurrent user attached to this flow. It can return null if no user has been identified yet- Specified by:
getUserin interfaceAuthenticationFlowContext- Returns:
-
setUser
public void setUser(UserModel user)
Description copied from interface:AuthenticationFlowContextAttach a specific user to this flow.- Specified by:
setUserin interfaceAuthenticationFlowContext
-
getAuthenticationSelections
public List<AuthenticationSelectionOption> getAuthenticationSelections()
- Specified by:
getAuthenticationSelectionsin interfaceAuthenticationFlowContext
-
setAuthenticationSelections
public void setAuthenticationSelections(List<AuthenticationSelectionOption> authenticationSelections)
- Specified by:
setAuthenticationSelectionsin interfaceAuthenticationFlowContext
-
clearUser
public void clearUser()
Description copied from interface:AuthenticationFlowContextClear the user from the flow.- Specified by:
clearUserin interfaceAuthenticationFlowContext
-
getRealm
public RealmModel getRealm()
Description copied from interface:AbstractAuthenticationFlowContextCurrent realm- Specified by:
getRealmin interfaceAbstractAuthenticationFlowContext- Returns:
-
getClient
public ClientModel getClient()
Description copied from interface:ClientAuthenticationFlowContextCurrent client attached to this flow. It can return null if no client has been identified yet- Specified by:
getClientin interfaceClientAuthenticationFlowContext- Returns:
-
setClient
public void setClient(ClientModel client)
Description copied from interface:ClientAuthenticationFlowContextAttach a specific client to this flow.- Specified by:
setClientin interfaceClientAuthenticationFlowContext
-
getClientAuthAttributes
public Map<String,String> getClientAuthAttributes()
Description copied from interface:ClientAuthenticationFlowContextReturn the map where the authenticators can put some additional state related to authenticated client and the context how was client authenticated (ie. attributes from client certificate etc). Map is writable, so you can add/remove items from it as needed. After successful authentication will be those state data put into UserSession notes. This allows you to configure UserSessionNote protocol mapper for your client, which will allow to map those state data into the access token available in the application- Specified by:
getClientAuthAttributesin interfaceClientAuthenticationFlowContext- Returns:
-
getAuthenticationSession
public AuthenticationSessionModel getAuthenticationSession()
Description copied from interface:AuthenticationFlowContextAuthenticationSessionModel attached to this flow- Specified by:
getAuthenticationSessionin interfaceAuthenticationFlowContext- Returns:
-
getFlowPath
public String getFlowPath()
- Specified by:
getFlowPathin interfaceAuthenticationFlowContext- Returns:
- current flow path (EG. authenticate, reset-credentials)
-
getConnection
public ClientConnection getConnection()
Description copied from interface:AbstractAuthenticationFlowContextInformation about the IP address from the connecting HTTP client.- Specified by:
getConnectionin interfaceAbstractAuthenticationFlowContext- Returns:
-
getUriInfo
public javax.ws.rs.core.UriInfo getUriInfo()
Description copied from interface:AbstractAuthenticationFlowContextUriInfo of the current request- Specified by:
getUriInfoin interfaceAbstractAuthenticationFlowContext- Returns:
-
getSession
public KeycloakSession getSession()
Description copied from interface:AbstractAuthenticationFlowContextCurrent session- Specified by:
getSessionin interfaceAbstractAuthenticationFlowContext- Returns:
-
getHttpRequest
public HttpRequest getHttpRequest()
- Specified by:
getHttpRequestin interfaceAbstractAuthenticationFlowContext
-
attachUserSession
public void attachUserSession(UserSessionModel userSession)
- Specified by:
attachUserSessionin interfaceAuthenticationFlowContext
-
getProtector
public BruteForceProtector getProtector()
- Specified by:
getProtectorin interfaceAbstractAuthenticationFlowContext
-
getEvent
public EventBuilder getEvent()
Description copied from interface:AbstractAuthenticationFlowContextCurrent event builder being used- Specified by:
getEventin interfaceAbstractAuthenticationFlowContext- Returns:
-
getForwardedErrorMessage
public FormMessage getForwardedErrorMessage()
Description copied from interface:AbstractAuthenticationFlowContextThis could be an error message forwarded from another authenticator that is restarting or continuing the flo. For example the brokering API sends this when the broker failed authentication and we want to continue authentication locally. forwardedErrorMessage can then be displayed by whatever form is challenging.- Specified by:
getForwardedErrorMessagein interfaceAbstractAuthenticationFlowContext
-
generateAccessCode
public String generateAccessCode()
Description copied from interface:AbstractAuthenticationFlowContextGenerates access code and updates clientsession timestamp Access codes must be included in form action callbacks as a query parameter.- Specified by:
generateAccessCodein interfaceAbstractAuthenticationFlowContext- Returns:
-
getChallenge
public javax.ws.rs.core.Response getChallenge()
-
getError
public AuthenticationFlowError getError()
Description copied from interface:AbstractAuthenticationFlowContextGet the error condition of a failed execution.- Specified by:
getErrorin interfaceAbstractAuthenticationFlowContext- Returns:
- may return null if there was no error
-
form
public LoginFormsProvider form()
Description copied from interface:AuthenticationFlowContextCreate a Freemarker form builder that presets the user, action URI, and a generated access code- Specified by:
formin interfaceAuthenticationFlowContext- Returns:
-
getActionUrl
public URI getActionUrl(String code)
Description copied from interface:AuthenticationFlowContextGet the action URL for the required action.- Specified by:
getActionUrlin interfaceAuthenticationFlowContext- Parameters:
code- authentication session access code- Returns:
-
getActionTokenUrl
public URI getActionTokenUrl(String tokenString)
Description copied from interface:AuthenticationFlowContextGet the action URL for the action token executor.- Specified by:
getActionTokenUrlin interfaceAuthenticationFlowContext- Parameters:
tokenString- String representation (JWT) of action token- Returns:
-
getRefreshExecutionUrl
public URI getRefreshExecutionUrl()
Description copied from interface:AuthenticationFlowContextGet the refresh URL for the required action.- Specified by:
getRefreshExecutionUrlin interfaceAuthenticationFlowContext- Returns:
-
getRefreshUrl
public URI getRefreshUrl(boolean authSessionIdParam)
Description copied from interface:AuthenticationFlowContextGet the refresh URL for the flow.- Specified by:
getRefreshUrlin interfaceAuthenticationFlowContext- Parameters:
authSessionIdParam- will include auth_session query param for clients that don't process cookies- Returns:
-
cancelLogin
public void cancelLogin()
Description copied from interface:AuthenticationFlowContextEnd the flow and redirect browser based on protocol specific respones. This should only be executed in browser-based flows.- Specified by:
cancelLoginin interfaceAuthenticationFlowContext
-
resetFlow
public void resetFlow()
Description copied from interface:AuthenticationFlowContextReset the current flow to the beginning and restarts it.- Specified by:
resetFlowin interfaceAuthenticationFlowContext
-
resetFlow
public void resetFlow(Runnable afterResetListener)
Description copied from interface:AuthenticationFlowContextReset the current flow to the beginning and restarts it. Allows to add additional listener, which is triggered after flow restarted- Specified by:
resetFlowin interfaceAuthenticationFlowContext
-
fork
public void fork()
Description copied from interface:AuthenticationFlowContextFork the current flow. The authentication session will be cloned and set to point at the realm's browser login flow. The Response will be the result of this fork. The previous flow will still be set at the current execution. This is used by reset password when it sends an email. It sends an email linking to the current flow and redirects the browser to a new browser login flow.- Specified by:
forkin interfaceAuthenticationFlowContext
-
forkWithSuccessMessage
public void forkWithSuccessMessage(FormMessage message)
Description copied from interface:AuthenticationFlowContextFork the current flow. The authentication session will be cloned and set to point at the realm's browser login flow. The Response will be the result of this fork. The previous flow will still be set at the current execution. This is used by reset password when it sends an email. It sends an email linking to the current flow and redirects the browser to a new browser login flow. This method will set up a success message that will be displayed in the first page of the new flow- Specified by:
forkWithSuccessMessagein interfaceAuthenticationFlowContext- Parameters:
message- Corresponds to raw text or a message property defined in a message bundle
-
forkWithErrorMessage
public void forkWithErrorMessage(FormMessage message)
Description copied from interface:AuthenticationFlowContextFork the current flow. The authentication session will be cloned and set to point at the realm's browser login flow. The Response will be the result of this fork. The previous flow will still be set at the current execution. This is used by reset password when it sends an email. It sends an email linking to the current flow and redirects the browser to a new browser login flow. This method will set up an error message that will be displayed in the first page of the new flow- Specified by:
forkWithErrorMessagein interfaceAuthenticationFlowContext- Parameters:
message- Corresponds to raw text or a message property defined in a message bundle
-
getForwardedSuccessMessage
public FormMessage getForwardedSuccessMessage()
Description copied from interface:AbstractAuthenticationFlowContextThis could be an success message forwarded from another authenticator that is restarting or continuing the flow. For example a reset password sends an email, then resets the flow with a success message. forwardedSuccessMessage can then be displayed by whatever form is challenging.- Specified by:
getForwardedSuccessMessagein interfaceAbstractAuthenticationFlowContext
-
setForwardedInfoMessage
public void setForwardedInfoMessage(String message, Object... parameters)
- Specified by:
setForwardedInfoMessagein interfaceAbstractAuthenticationFlowContext- Parameters:
message- to be forwardedparameters- parameters of the message if any- See Also:
AbstractAuthenticationFlowContext.getForwardedInfoMessage()
-
getForwardedInfoMessage
public FormMessage getForwardedInfoMessage()
Description copied from interface:AbstractAuthenticationFlowContextThis could be an info message forwarded from another authenticator. This info message will be usually displayed only once on the first screen shown to the user during authentication. The authenticator forwarding the info message does not know which the screen would be. For example during user re-authentication, the user should see info message like "Please re-authenticate", but at the beginning of the authentication, it is not 100% clear which screen will be the first shown screen where this message should be displayed- Specified by:
getForwardedInfoMessagein interfaceAbstractAuthenticationFlowContext
-
getErrorMessage
public FormMessage getErrorMessage()
-
getSuccessMessage
public FormMessage getSuccessMessage()
-
getEventDetails
public String getEventDetails()
Description copied from interface:AbstractAuthenticationFlowContextGet details of the event that caused an error- Specified by:
getEventDetailsin interfaceAbstractAuthenticationFlowContext- Returns:
- may return null if not set
-
getUserErrorMessage
public String getUserErrorMessage()
Description copied from interface:AbstractAuthenticationFlowContextA custom error message that can be displayed to the user- Specified by:
getUserErrorMessagein interfaceAbstractAuthenticationFlowContext- Returns:
- Optional error message
-
-