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 DecodedJWTJWT. decode(java.lang.String token)Decode a given Json Web Token.DecodedJWTJWT. decodeJwt(java.lang.String token)Decode a given Json Web Token.DecodedJWTJWTVerifier. verify(DecodedJWT jwt)Perform the verification against the given decoded JWT, using any previous configured options.DecodedJWTJWTVerifier. 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 DecodedJWTJWTVerifier. 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 VerificationJWTVerifier.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 voidAlgorithm. 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 booleanExpectedCheckHolder. 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 DecodedJWTJWTVerifier. verify(DecodedJWT jwt)Performs the verification against the givenDecodedJWT.DecodedJWTJWTVerifier. 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 DecodedJWTJWTVerifier. 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 VerificationVerification. 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.
-