Class IdpVerifyAccountLinkActionTokenHandler
- java.lang.Object
- 
- org.keycloak.authentication.actiontoken.AbstractActionTokenHandler<IdpVerifyAccountLinkActionToken>
- 
- org.keycloak.authentication.actiontoken.idpverifyemail.IdpVerifyAccountLinkActionTokenHandler
 
 
- 
- All Implemented Interfaces:
- ActionTokenHandler<IdpVerifyAccountLinkActionToken>,- ActionTokenHandlerFactory<IdpVerifyAccountLinkActionToken>,- Provider,- ProviderFactory<ActionTokenHandler<IdpVerifyAccountLinkActionToken>>
 
 public class IdpVerifyAccountLinkActionTokenHandler extends AbstractActionTokenHandler<IdpVerifyAccountLinkActionToken> Action token handler for verification of e-mail address.- Author:
- hmlnarik
 
- 
- 
Constructor SummaryConstructors Constructor Description IdpVerifyAccountLinkActionTokenHandler()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description TokenVerifier.Predicate<? super IdpVerifyAccountLinkActionToken>[]getVerifiers(ActionTokenContext<IdpVerifyAccountLinkActionToken> tokenContext)Returns an array of verifiers that are tested prior to handling the token.javax.ws.rs.core.ResponsehandleToken(IdpVerifyAccountLinkActionToken token, ActionTokenContext<IdpVerifyAccountLinkActionToken> tokenContext)Performs the action as per the token details.- 
Methods inherited from class org.keycloak.authentication.actiontoken.AbstractActionTokenHandlercanUseTokenRepeatedly, close, create, eventType, getAuthenticationSessionIdFromToken, getDefaultErrorMessage, getDefaultEventError, getId, getTokenClass, init, postInit, startFreshAuthenticationSession, verifyEmail
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.keycloak.provider.ProviderFactorygetConfigMetadata, order
 
- 
 
- 
- 
- 
Method Detail- 
getVerifierspublic TokenVerifier.Predicate<? super IdpVerifyAccountLinkActionToken>[] getVerifiers(ActionTokenContext<IdpVerifyAccountLinkActionToken> tokenContext) Description copied from interface:ActionTokenHandlerReturns 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.
 
 - 
handleTokenpublic javax.ws.rs.core.Response handleToken(IdpVerifyAccountLinkActionToken token, ActionTokenContext<IdpVerifyAccountLinkActionToken> tokenContext) Description copied from interface:ActionTokenHandlerPerforms 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:
 
 
- 
 
-