Uses of Class
com.auth0.jwt.exceptions.JWTDecodeException
-
Packages that use JWTDecodeException Package Description com.auth0.jwt com.auth0.jwt.impl Contains parts of the internal implementation of this library.com.auth0.jwt.interfaces -
-
Uses of JWTDecodeException in com.auth0.jwt
Methods in com.auth0.jwt that throw JWTDecodeException 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. -
Uses of JWTDecodeException in com.auth0.jwt.impl
Methods in com.auth0.jwt.impl that throw JWTDecodeException Modifier and Type Method Description Header
JWTParser. parseHeader(java.lang.String json)
Payload
JWTParser. parsePayload(java.lang.String json)
-
Uses of JWTDecodeException in com.auth0.jwt.interfaces
Methods in com.auth0.jwt.interfaces that throw JWTDecodeException Modifier and Type Method Description <T> T
Claim. as(java.lang.Class<T> clazz)
Get this Claim as a custom type T.<T> T[]
Claim. asArray(java.lang.Class<T> clazz)
Get this Claim as an Array of type T.<T> java.util.List<T>
Claim. asList(java.lang.Class<T> clazz)
Get this Claim as a List of type T.java.util.Map<java.lang.String,java.lang.Object>
Claim. asMap()
Get this Claim as a generic Map of values.Header
JWTPartsParser. parseHeader(java.lang.String json)
Parses the given JSON into aHeader
instance.Payload
JWTPartsParser. parsePayload(java.lang.String json)
Parses the given JSON into aPayload
instance.
-