Uses of Interface
com.auth0.jwt.interfaces.DecodedJWT
-
Packages that use DecodedJWT Package Description com.auth0.jwt com.auth0.jwt.algorithms com.auth0.jwt.impl Contains parts of the internal implementation of this library.com.auth0.jwt.interfaces -
-
Uses of DecodedJWT in com.auth0.jwt
Methods in com.auth0.jwt that return DecodedJWT Modifier and Type Method Description static DecodedJWT
JWT. decode(java.lang.String token)
Decode a given Json Web Token.DecodedJWT
JWT. decodeJwt(java.lang.String token)
Decode a given Json Web Token.DecodedJWT
JWTVerifier. verify(DecodedJWT jwt)
Perform the verification against the given decoded JWT, using any previous configured options.DecodedJWT
JWTVerifier. verify(java.lang.String token)
Perform the verification against the given Token, using any previous configured options.Methods in com.auth0.jwt with parameters of type DecodedJWT Modifier and Type Method Description DecodedJWT
JWTVerifier. 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 DecodedJWT Modifier and Type Method Description Verification
JWTVerifier.BaseVerification. withClaim(java.lang.String name, java.util.function.BiPredicate<Claim,DecodedJWT> predicate)
-
Uses of DecodedJWT in com.auth0.jwt.algorithms
Methods in com.auth0.jwt.algorithms with parameters of type DecodedJWT Modifier and Type Method Description abstract 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 DecodedJWT Modifier and Type Method Description boolean
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 DecodedJWT Modifier and Type Method Description DecodedJWT
JWTVerifier. verify(DecodedJWT jwt)
Performs the verification against the givenDecodedJWT
.DecodedJWT
JWTVerifier. verify(java.lang.String token)
Performs the verification against the given Token.Methods in com.auth0.jwt.interfaces with parameters of type DecodedJWT Modifier and Type Method Description DecodedJWT
JWTVerifier. verify(DecodedJWT jwt)
Performs the verification against the givenDecodedJWT
.Method parameters in com.auth0.jwt.interfaces with type arguments of type DecodedJWT 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.
-