Uses of Interface
org.keycloak.TokenVerifier.Predicate
Packages that use TokenVerifier.Predicate
-
Uses of TokenVerifier.Predicate in org.keycloak
Classes in org.keycloak that implement TokenVerifier.PredicateModifier and TypeClassDescriptionstatic classstatic classstatic classstatic classFields in org.keycloak declared as TokenVerifier.PredicateModifier and TypeFieldDescriptionstatic final TokenVerifier.Predicate<JsonWebToken>TokenVerifier.IS_ACTIVECheck for token being neither expired nor used before it gets valid.static final TokenVerifier.Predicate<JsonWebToken>TokenVerifier.SUBJECT_EXISTS_CHECKMethods in org.keycloak that return TokenVerifier.PredicateModifier and TypeMethodDescriptionstatic <T extends JsonWebToken>
TokenVerifier.Predicate<T>TokenVerifier.alternative(TokenVerifier.Predicate<? super T>... predicates) Creates a predicate that will proceed with checks of the given predicates and will pass if and only if at least one of the given predicates passes.static <T extends JsonWebToken>
TokenVerifier.Predicate<T>TokenVerifier.optional(TokenVerifier.Predicate<T> mandatoryPredicate) Creates an optional predicate from a predicate that will proceed with check but always pass.Methods in org.keycloak with parameters of type TokenVerifier.PredicateModifier and TypeMethodDescriptionstatic <T extends JsonWebToken>
TokenVerifier.Predicate<T>TokenVerifier.alternative(TokenVerifier.Predicate<? super T>... predicates) Creates a predicate that will proceed with checks of the given predicates and will pass if and only if at least one of the given predicates passes.static <T extends JsonWebToken>
TokenVerifier.Predicate<T>TokenVerifier.optional(TokenVerifier.Predicate<T> mandatoryPredicate) Creates an optional predicate from a predicate that will proceed with check but always pass.final TokenVerifier<T>TokenVerifier.withChecks(TokenVerifier.Predicate<? super T>... checks) Will test the given checks inTokenVerifier.verify()method in addition to already set checks.