Uses of Interface
io.inverno.mod.security.jose.jwt.JWTClaimsSetValidator
Packages that use JWTClaimsSetValidator
-
Uses of JWTClaimsSetValidator in io.inverno.mod.security.jose.jwt
Methods in io.inverno.mod.security.jose.jwt that return JWTClaimsSetValidatorModifier and TypeMethodDescriptionstatic JWTClaimsSetValidatorReturns a JWT claims set validator that validates that the JWT audience corresponds to trusted audiences.static JWTClaimsSetValidatorJWTClaimsSetValidator.expiration()Returns a JWT claims set validator that validates that the JWT expiration time is after current date time.static JWTClaimsSetValidatorJWTClaimsSetValidator.expiration(ZonedDateTime time) Returns a JWT claims set validator that validates that the JWT expiration time is after the specified expiration time.static JWTClaimsSetValidatorReturns a JWT claims set validator that validates that the JWT issuer corresponds to the specified trusted issuer.static JWTClaimsSetValidatorJWTClaimsSetValidator.notBefore()Returns a JWT claims set validator that validates that the JWT not before time is after the current date time.static JWTClaimsSetValidatorJWTClaimsSetValidator.notBefore(ZonedDateTime time) Returns a JWT claims set validator that validates that the JWT not before time is after the specified activation time.static JWTClaimsSetValidatorReturns a JWT claims set validator that validates that the JWT subject corresponds to the specified trusted subject.Methods in io.inverno.mod.security.jose.jwt that return types with arguments of type JWTClaimsSetValidatorModifier and TypeMethodDescriptionfinal List<JWTClaimsSetValidator>JWTClaimsSet.getValidators()Returns the list of JWT claims set validators.final List<JWTClaimsSetValidator>JWTEAuthenticator.getValidators()Returns the list of JWT claims set validators.final List<JWTClaimsSetValidator>JWTSAuthenticator.getValidators()Returns the list of JWT claims set validators.Methods in io.inverno.mod.security.jose.jwt with parameters of type JWTClaimsSetValidatorModifier and TypeMethodDescriptionfinal JWTClaimsSetJWTClaimsSet.validate(JWTClaimsSetValidator validator) Adds the specified validator to the JWT claims set.JWTEAuthenticator.validate(JWTClaimsSetValidator validator) Adds the specified validator to the JWT claims set.JWTSAuthenticator.validate(JWTClaimsSetValidator validator) Adds the specified validator to the JWT claims set.Method parameters in io.inverno.mod.security.jose.jwt with type arguments of type JWTClaimsSetValidatorModifier and TypeMethodDescriptionfinal voidJWTClaimsSet.setValidators(List<JWTClaimsSetValidator> validators) Sets the JWT claims set validators.voidJWTEAuthenticator.setValidators(List<JWTClaimsSetValidator> validators) Sets the JWT claims set validators.voidJWTSAuthenticator.setValidators(List<JWTClaimsSetValidator> validators) Sets the JWT claims set validators.