Class InviteOrgActionTokenHandler
java.lang.Object
org.keycloak.authentication.actiontoken.AbstractActionTokenHandler<InviteOrgActionToken>
org.keycloak.authentication.actiontoken.inviteorg.InviteOrgActionTokenHandler
- All Implemented Interfaces:
ActionTokenHandler<InviteOrgActionToken>,ActionTokenHandlerFactory<InviteOrgActionToken>,Provider,ProviderFactory<ActionTokenHandler<InviteOrgActionToken>>
Action token handler for handling invitation of an existing user to an organization. A new user is handled in registration
LoginActionsService.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionTokenVerifier.Predicate<? super InviteOrgActionToken>[]getVerifiers(ActionTokenContext<InviteOrgActionToken> tokenContext) Returns an array of verifiers that are tested prior to handling the token.jakarta.ws.rs.core.ResponsehandleToken(InviteOrgActionToken token, ActionTokenContext<InviteOrgActionToken> tokenContext) Performs the action as per the token details.Methods inherited from class org.keycloak.authentication.actiontoken.AbstractActionTokenHandler
canUseTokenRepeatedly, close, create, eventType, getAuthenticationSessionIdFromToken, getDefaultErrorMessage, getDefaultEventError, getId, getTokenClass, init, postInit, startFreshAuthenticationSession, verifyEmailMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.keycloak.provider.ProviderFactory
getConfigMetadata, order
-
Constructor Details
-
InviteOrgActionTokenHandler
public InviteOrgActionTokenHandler()
-
-
Method Details
-
getVerifiers
public TokenVerifier.Predicate<? super InviteOrgActionToken>[] getVerifiers(ActionTokenContext<InviteOrgActionToken> 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.
-
handleToken
public jakarta.ws.rs.core.Response handleToken(InviteOrgActionToken token, ActionTokenContext<InviteOrgActionToken> 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:
-