Uses of Class
org.forgerock.openig.tools.jwt.validation.ValidatorConstraintContext
-
Packages that use ValidatorConstraintContext Package Description org.forgerock.openig.tools.jwt.validation 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 ValidatorConstraintContext Modifier and Type Method Description Promise<Result,NeverThrowsException>
JweDecryptionConstraint. apply(ValidatorConstraintContext constraintContext)
Promise<Result,NeverThrowsException>
JwtClaimConstraint. apply(ValidatorConstraintContext constraintContext, String key, T value)
Apply a constraint to the given claim value.Promise<Result,NeverThrowsException>
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 ValidatorConstraintContext Modifier and Type Method Description static <T extends Comparable<T>>
JwtClaimConstraint<T>Constraints. isGreaterOrEqualTo(Function<ValidatorConstraintContext,T> limitSupplier)
Returns aJwtClaimConstraint
that 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 aJwtClaimConstraint
that 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 aJwtClaimConstraint
that 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 aJwtClaimConstraint
that will succeed if the value is less than the given value, otherwise it will fail.
-