Uses of Class
com.auth0.jwt.exceptions.JWTDecodeException
-
Packages that use JWTDecodeException Package Description com.auth0.jwt com.auth0.jwt.impl 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(String token)
Decode a given Json Web Token.DecodedJWT
JWT. decodeJwt(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 <T> T
NullClaim. as(Class<T> tClazz)
<T> T[]
NullClaim. asArray(Class<T> tClazz)
<T> List<T>
NullClaim. asList(Class<T> tClazz)
Map<String,Object>
NullClaim. asMap()
Header
JWTParser. parseHeader(String json)
Payload
JWTParser. parsePayload(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(Class<T> tClazz)
Get this Claim as a custom type T.<T> T[]
Claim. asArray(Class<T> tClazz)
Get this Claim as an Array of type T.<T> List<T>
Claim. asList(Class<T> tClazz)
Get this Claim as a List of type T.Map<String,Object>
Claim. asMap()
Get this Claim as a generic Map of values.Header
JWTPartsParser. parseHeader(String json)
Parses the given JSON into a Header instance.Payload
JWTPartsParser. parsePayload(String json)
Parses the given JSON into a Payload instance.
-