Uses of Interface
com.auth0.jwt.interfaces.DecodedJWT
Packages that use DecodedJWT
Package
Description
Contains parts of the internal implementation of this library.
-
Uses of DecodedJWT in com.auth0.jwt
Methods in com.auth0.jwt that return DecodedJWTModifier and TypeMethodDescriptionstatic DecodedJWT
Decode a given Json Web Token.Decode a given Json Web Token.JWTVerifier.verify
(DecodedJWT jwt) Perform the verification against the given decoded JWT, using any previous configured options.Perform the verification against the given Token, using any previous configured options.Methods in com.auth0.jwt with parameters of type DecodedJWTModifier and TypeMethodDescriptionJWTVerifier.verify
(DecodedJWT jwt) Perform the verification against the given decoded JWT, using any previous configured options.Method parameters in com.auth0.jwt with type arguments of type DecodedJWTModifier and TypeMethodDescriptionJWTVerifier.BaseVerification.withClaim
(String name, BiPredicate<Claim, DecodedJWT> predicate) -
Uses of DecodedJWT in com.auth0.jwt.algorithms
Methods in com.auth0.jwt.algorithms with parameters of type DecodedJWTModifier and TypeMethodDescriptionabstract void
Algorithm.verify
(DecodedJWT jwt) Verify the given token using this Algorithm instance. -
Uses of DecodedJWT in com.auth0.jwt.impl
Methods in com.auth0.jwt.impl with parameters of type DecodedJWTModifier and TypeMethodDescriptionboolean
ExpectedCheckHolder.verify
(Claim claim, DecodedJWT decodedJWT) The verification that will be run. -
Uses of DecodedJWT in com.auth0.jwt.interfaces
Methods in com.auth0.jwt.interfaces that return DecodedJWTModifier and TypeMethodDescriptionJWTVerifier.verify
(DecodedJWT jwt) Performs the verification against the givenDecodedJWT
.Performs the verification against the given Token.Methods in com.auth0.jwt.interfaces with parameters of type DecodedJWTModifier and TypeMethodDescriptionJWTVerifier.verify
(DecodedJWT jwt) Performs the verification against the givenDecodedJWT
.Method parameters in com.auth0.jwt.interfaces with type arguments of type DecodedJWTModifier and TypeMethodDescriptionVerification.withClaim
(String name, BiPredicate<Claim, DecodedJWT> predicate) Executes the predicate provided and the validates the JWT if the predicate returns true.