Uses of Class
org.forgerock.openig.tools.jwt.validation.ValidatorConstraintContext
Packages that use ValidatorConstraintContext
Package
Description
This package contains classes used to perform JWT validation.
-
Uses of ValidatorConstraintContext in org.forgerock.openig.tools.jwt.validation
Methods in org.forgerock.openig.tools.jwt.validation with parameters of type ValidatorConstraintContextModifier and TypeMethodDescriptionJweDecryptionConstraint.apply(ValidatorConstraintContext constraintContext) JwtClaimConstraint.apply(ValidatorConstraintContext constraintContext, String key, T value) Apply a constraint to the given claim value.JwtConstraint.apply(ValidatorConstraintContext constraintContext) Apply a constraint to the given JWT.Method parameters in org.forgerock.openig.tools.jwt.validation with type arguments of type ValidatorConstraintContextModifier and TypeMethodDescriptionstatic <T extends Comparable<T>>
JwtClaimConstraint<T>Constraints.isGreaterOrEqualTo(Function<ValidatorConstraintContext, T> limitSupplier) Returns aJwtClaimConstraintthat will succeed if the value is greater than or equal to the given value, otherwise it will fail.static <T extends Comparable<T>>
JwtClaimConstraint<T>Constraints.isGreaterThan(Function<ValidatorConstraintContext, T> limitSupplier) Returns aJwtClaimConstraintthat will succeed if the value is greater than the given value, otherwise it will fail.static <T extends Comparable<T>>
JwtClaimConstraint<T>Constraints.isLessOrEqualTo(Function<ValidatorConstraintContext, T> limitSupplier) Returns aJwtClaimConstraintthat will succeed if the value is less than or equal to the given value, otherwise it will fail.static <T extends Comparable<T>>
JwtClaimConstraint<T>Constraints.isLessThan(Function<ValidatorConstraintContext, T> limitSupplier) Returns aJwtClaimConstraintthat will succeed if the value is less than the given value, otherwise it will fail.