Class ResetCredentialsActionTokenHandler
java.lang.Object
org.keycloak.authentication.actiontoken.AbstractActionTokenHandler<ResetCredentialsActionToken>
org.keycloak.authentication.actiontoken.resetcred.ResetCredentialsActionTokenHandler
- All Implemented Interfaces:
ActionTokenHandler<ResetCredentialsActionToken>
,ActionTokenHandlerFactory<ResetCredentialsActionToken>
,Provider
,ProviderFactory<ActionTokenHandler<ResetCredentialsActionToken>>
public class ResetCredentialsActionTokenHandler
extends AbstractActionTokenHandler<ResetCredentialsActionToken>
- Author:
- hmlnarik
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
canUseTokenRepeatedly
(ResetCredentialsActionToken token, ActionTokenContext tokenContext) Returnstrue
when the token can be used repeatedly to invoke the action,false
when the token is intended to be for single use only.getVerifiers
(ActionTokenContext<ResetCredentialsActionToken> tokenContext) Returns an array of verifiers that are tested prior to handling the token.jakarta.ws.rs.core.Response
handleToken
(ResetCredentialsActionToken token, ActionTokenContext tokenContext) Performs the action as per the token details.Methods inherited from class org.keycloak.authentication.actiontoken.AbstractActionTokenHandler
close, create, eventType, getAuthenticationSessionIdFromToken, getDefaultErrorMessage, getDefaultEventError, getId, getTokenClass, init, postInit, startFreshAuthenticationSession, verifyEmail
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.keycloak.authentication.actiontoken.ActionTokenHandler
preHandleToken
Methods inherited from interface org.keycloak.provider.ProviderFactory
getConfigMetadata, order
-
Constructor Details
-
ResetCredentialsActionTokenHandler
public ResetCredentialsActionTokenHandler()
-
-
Method Details
-
getVerifiers
public TokenVerifier.Predicate<? super ResetCredentialsActionToken>[] getVerifiers(ActionTokenContext<ResetCredentialsActionToken> tokenContext) Description copied from interface:ActionTokenHandler
Returns an array of verifiers that are tested prior to handling the token. All verifiers have to pass successfully for token to be handled. The returned array must not benull
.- Returns:
- Verifiers or an empty array. The returned array must not be
null
.
-
handleToken
public jakarta.ws.rs.core.Response handleToken(ResetCredentialsActionToken token, ActionTokenContext tokenContext) Description copied from interface:ActionTokenHandler
Performs the action as per the token details. This method is only called if all verifiers returned inActionTokenHandler.handleToken(T, org.keycloak.authentication.actiontoken.ActionTokenContext<T>)
succeed.- Returns:
-
canUseTokenRepeatedly
public boolean canUseTokenRepeatedly(ResetCredentialsActionToken token, ActionTokenContext tokenContext) Description copied from interface:ActionTokenHandler
Returnstrue
when the token can be used repeatedly to invoke the action,false
when the token is intended to be for single use only.- Specified by:
canUseTokenRepeatedly
in interfaceActionTokenHandler<ResetCredentialsActionToken>
- Overrides:
canUseTokenRepeatedly
in classAbstractActionTokenHandler<ResetCredentialsActionToken>
- Returns:
- see above
-