Uses of Interface
uk.co.spudsoft.jwtvalidatorvertx.JwtValidatorVertx
Packages that use JwtValidatorVertx
-
Uses of JwtValidatorVertx in uk.co.spudsoft.jwtvalidatorvertx
Methods in uk.co.spudsoft.jwtvalidatorvertx that return JwtValidatorVertxModifier and TypeMethodDescriptionJwtValidatorVertx.addPermittedAlgorithm
(JsonWebAlgorithm algorithm) Add a single algorithm to the current set of permitted algorithms.static JwtValidatorVertx
JwtValidatorVertx.create
(io.vertx.core.Vertx vertx, Collection<String> acceptableIssuerRegexes, Duration defaultJwkCacheDuration) Create a JwtValidatorVertx.JwtValidatorVertx.setPermittedAlgorithms
(EnumSet<JsonWebAlgorithm> algorithms) Replace the current set of permitted algorithms with a new set.JwtValidatorVertx.setRequireExp
(boolean requireExp) Set to true if the token is required to have an exp claim.JwtValidatorVertx.setRequireNbf
(boolean requireNbf) Set to true if the token is required to have an nbf claim.JwtValidatorVertx.setTimeLeewaySeconds
(long timeLeewaySeconds) Set the maximum amount of time that can pass between the exp and now. -
Uses of JwtValidatorVertx in uk.co.spudsoft.jwtvalidatorvertx.impl
Classes in uk.co.spudsoft.jwtvalidatorvertx.impl that implement JwtValidatorVertxModifier and TypeClassDescriptionclass
Token validation for vertx - implementation ofJwtValidatorVertx
.Methods in uk.co.spudsoft.jwtvalidatorvertx.impl that return JwtValidatorVertxModifier and TypeMethodDescriptionJwtValidatorVertxImpl.addPermittedAlgorithm
(JsonWebAlgorithm algorithm) JwtValidatorVertxImpl.setPermittedAlgorithms
(EnumSet<JsonWebAlgorithm> algorithms) JwtValidatorVertxImpl.setRequireExp
(boolean requireExp) Set to true if the token is required to have an exp claim.JwtValidatorVertxImpl.setRequireNbf
(boolean requireNbf) Set to true if the token is required to have an nbf claim.JwtValidatorVertxImpl.setTimeLeewaySeconds
(long timeLeewaySeconds) Set the maximum amount of time that can pass between the exp and now.