Uses of Interface
com.auth0.jwt.interfaces.Claim
-
Packages that use Claim Package Description com.auth0.jwt com.auth0.jwt.exceptions com.auth0.jwt.impl Contains parts of the internal implementation of this library.com.auth0.jwt.interfaces -
-
Uses of Claim in com.auth0.jwt
Method parameters in com.auth0.jwt with type arguments of type Claim Modifier and Type Method Description Verification
JWTVerifier.BaseVerification. withClaim(java.lang.String name, java.util.function.BiPredicate<Claim,DecodedJWT> predicate)
-
Uses of Claim in com.auth0.jwt.exceptions
Methods in com.auth0.jwt.exceptions that return Claim Modifier and Type Method Description Claim
IncorrectClaimException. getClaimValue()
This method can be used to fetch the value for which the Claim verification failed.Constructors in com.auth0.jwt.exceptions with parameters of type Claim Constructor Description IncorrectClaimException(java.lang.String message, java.lang.String claimName, Claim claim)
Used internally to construct the IncorrectClaimException which is thrown when there is verification failure for a Claim that exists. -
Uses of Claim in com.auth0.jwt.impl
Methods in com.auth0.jwt.impl with parameters of type Claim Modifier and Type Method Description boolean
ExpectedCheckHolder. verify(Claim claim, DecodedJWT decodedJWT)
The verification that will be run. -
Uses of Claim in com.auth0.jwt.interfaces
Methods in com.auth0.jwt.interfaces that return Claim Modifier and Type Method Description Claim
Payload. getClaim(java.lang.String name)
Get a Claim given its name.Claim
Header. getHeaderClaim(java.lang.String name)
Get a Private Claim given it's name.Methods in com.auth0.jwt.interfaces that return types with arguments of type Claim Modifier and Type Method Description java.util.Map<java.lang.String,Claim>
Payload. getClaims()
Get the Claims defined in the Token.Method parameters in com.auth0.jwt.interfaces with type arguments of type Claim Modifier and Type Method Description Verification
Verification. withClaim(java.lang.String name, java.util.function.BiPredicate<Claim,DecodedJWT> predicate)
Executes the predicate provided and the validates the JWT if the predicate returns true.
-