Uses of Interface
io.helidon.security.jwt.Validator
Packages that use Validator
- 
Uses of Validator in io.helidon.security.jwtClasses in io.helidon.security.jwt that implement ValidatorModifier and TypeClassDescriptionstatic final classValidator of expiration claim.static final classValidator of a string field obtained from a JWT.static final classValidator of issue time claim.static final classValidator of not before claim.Methods in io.helidon.security.jwt that return types with arguments of type ValidatorModifier and TypeMethodDescriptionJwt.defaultTimeValidators()Return a list of validators to validate expiration time, issue time and not-before time.Jwt.defaultTimeValidators(Instant now, int timeSkewAmount, ChronoUnit timeSkewUnit, boolean mandatory) Return a list of validators to validate expiration time, issue time and not-before time.Method parameters in io.helidon.security.jwt with type arguments of type ValidatorModifier and TypeMethodDescriptionstatic voidJwt.addAudienceValidator(Collection<Validator<Jwt>> validators, String audience, boolean mandatory) Add validator of audience to the collection of validators.static voidJwt.addAudienceValidator(Collection<Validator<Jwt>> validators, Set<String> audience, boolean mandatory) Add validator of audience to the collection of validators.static voidJwt.addIssuerValidator(Collection<Validator<Jwt>> validators, String issuer, boolean mandatory) Add validator of issuer to the collection of validators.static voidJwt.addUserPrincipalValidator(Collection<Validator<Jwt>> validators) Adds a validator that makes sure theJwt.userPrincipal()is present.Validate this JWT against provided validators.