Uses of Interface
org.keycloak.TokenVerifier.Predicate
-
Packages that use TokenVerifier.Predicate Package Description org.keycloak -
-
Uses of TokenVerifier.Predicate in org.keycloak
Classes in org.keycloak that implement TokenVerifier.Predicate Modifier and Type Class Description static classTokenVerifier.AudienceCheckstatic classTokenVerifier.IssuedForCheckstatic classTokenVerifier.RealmUrlCheckstatic classTokenVerifier.TokenTypeCheckFields in org.keycloak declared as TokenVerifier.Predicate Modifier and Type Field Description static TokenVerifier.Predicate<JsonWebToken>TokenVerifier. IS_ACTIVECheck for token being neither expired nor used before it gets valid.static TokenVerifier.Predicate<JsonWebToken>TokenVerifier. SUBJECT_EXISTS_CHECKMethods in org.keycloak that return TokenVerifier.Predicate Modifier and Type Method Description static <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.Predicate Modifier and Type Method Description static <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.TokenVerifier<T>TokenVerifier. withChecks(TokenVerifier.Predicate<? super T>... checks)Will test the given checks inTokenVerifier.verify()method in addition to already set checks.
-