Uses of Interface
com.auth0.jwt.interfaces.DecodedJWT
-
Packages that use DecodedJWT Package Description com.auth0.jwt com.auth0.jwt.algorithms 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(String token)
Decode a given Json Web Token.DecodedJWT
JWT. decodeJwt(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(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. -
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.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 given decoded JWTDecodedJWT
JWTVerifier. verify(String token)
Performs the verification against the given TokenMethods 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 given decoded JWT
-