Uses of Interface
com.auth0.jwt.interfaces.Verification
Packages that use Verification
-
Uses of Verification in com.auth0.jwt
Classes in com.auth0.jwt that implement VerificationModifier and TypeClassDescriptionstatic class
The Verification class holds the Claims required by a JWT to be valid.Methods in com.auth0.jwt that return VerificationModifier and TypeMethodDescriptionJWTVerifier.BaseVerification.acceptExpiresAt
(long leeway) Set a specific leeway window in seconds in which the Expires At ("exp") Claim will still be valid.JWTVerifier.BaseVerification.acceptIssuedAt
(long leeway) Set a specific leeway window in seconds in which the Issued At ("iat") Claim will still be valid.JWTVerifier.BaseVerification.acceptLeeway
(long leeway) Define the default window in seconds in which the Not Before, Issued At and Expires At Claims will still be valid.JWTVerifier.BaseVerification.acceptNotBefore
(long leeway) Set a specific leeway window in seconds in which the Not Before ("nbf") Claim will still be valid.JWTVerifier.BaseVerification.ignoreIssuedAt()
Skip the Issued At ("iat") date verification.(package private) static Verification
Initialize a JWTVerifier instance using the given Algorithm.static Verification
Returns aJWTVerifier
builder with the algorithm to be used to validate token signature.JWTVerifier.BaseVerification.withArrayClaim
(String name, Integer... items) Require a specific Array Claim to contain at least the given items.JWTVerifier.BaseVerification.withArrayClaim
(String name, String... items) Require a specific Array Claim to contain at least the given items.JWTVerifier.BaseVerification.withAudience
(String... audience) Require a specific Audience ("aud") claim.Require a specific Claim value.Require a specific Claim value.Require a specific Claim value.Require a specific Claim value.Require a specific Claim value.Require a specific Claim value.JWTVerifier.BaseVerification.withIssuer
(String... issuer) Require a specific Issuer ("iss") claim.Require a specific JWT Id ("jti") claim.JWTVerifier.BaseVerification.withSubject
(String subject) Require a specific Subject ("sub") claim. -
Uses of Verification in com.auth0.jwt.interfaces
Methods in com.auth0.jwt.interfaces that return VerificationModifier and TypeMethodDescriptionVerification.acceptExpiresAt
(long leeway) Verification.acceptIssuedAt
(long leeway) Verification.acceptLeeway
(long leeway) Verification.acceptNotBefore
(long leeway) Verification.ignoreIssuedAt()
Verification.withArrayClaim
(String name, Integer... items) Verification.withArrayClaim
(String name, String... items) Verification.withAudience
(String... audience) Verification.withIssuer
(String... issuer) Verification.withSubject
(String subject)