Package org.keycloak.services.resources
Class LoginActionsServiceChecks.IsActionRequired
java.lang.Object
org.keycloak.services.resources.LoginActionsServiceChecks.IsActionRequired
- All Implemented Interfaces:
- TokenVerifier.Predicate<JsonWebToken>
- Enclosing class:
- LoginActionsServiceChecks
public static class LoginActionsServiceChecks.IsActionRequired
extends Object
implements TokenVerifier.Predicate<JsonWebToken>
Verifies that if authentication session exists and any action is required according to it, then it is
 the expected one.
 If there is an action required in the session, furthermore it is not the expected one, and the required
 action is redirection to "required actions", it throws with response performing the redirect to required
 actions.
- 
Constructor SummaryConstructorsConstructorDescriptionIsActionRequired(ActionTokenContext<?> context, CommonClientSessionModel.Action expectedAction) 
- 
Method SummaryModifier and TypeMethodDescriptionbooleantest(JsonWebToken t) Performs a single check on the given token verifier.
- 
Constructor Details- 
IsActionRequiredpublic IsActionRequired(ActionTokenContext<?> context, CommonClientSessionModel.Action expectedAction) 
 
- 
- 
Method Details- 
testDescription copied from interface:TokenVerifier.PredicatePerforms a single check on the given token verifier.- Specified by:
- testin interface- TokenVerifier.Predicate<JsonWebToken>
- Parameters:
- t- Token, guaranteed to be non-null.
- Returns:
- Throws:
- VerificationException
 
 
-