Uses of Interface
com.auth0.jwt.interfaces.Claim
Packages that use Claim
Package
Description
Contains parts of the internal implementation of this library.
-
Uses of Claim in com.auth0.jwt
Method parameters in com.auth0.jwt with type arguments of type ClaimModifier and TypeMethodDescriptionJWTVerifier.BaseVerification.withClaim
(String name, BiPredicate<Claim, DecodedJWT> predicate) -
Uses of Claim in com.auth0.jwt.exceptions
Methods in com.auth0.jwt.exceptions that return ClaimModifier and TypeMethodDescriptionIncorrectClaimException.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 ClaimModifierConstructorDescriptionIncorrectClaimException
(String message, 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 ClaimModifier and TypeMethodDescriptionboolean
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 ClaimModifier and TypeMethodDescriptionGet a Claim given its name.Header.getHeaderClaim
(String name) Get a Private Claim given it's name.Methods in com.auth0.jwt.interfaces that return types with arguments of type ClaimMethod parameters in com.auth0.jwt.interfaces with type arguments of type ClaimModifier and TypeMethodDescriptionVerification.withClaim
(String name, BiPredicate<Claim, DecodedJWT> predicate) Executes the predicate provided and the validates the JWT if the predicate returns true.