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 DecodedJWTJWT. decode(java.lang.String token)Decode a given Json Web Token.DecodedJWTJWT. 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 HeaderJWTParser. parseHeader(java.lang.String json)PayloadJWTParser. 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> TClaim. 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.HeaderJWTPartsParser. parseHeader(java.lang.String json)Parses the given JSON into aHeaderinstance.PayloadJWTPartsParser. parsePayload(java.lang.String json)Parses the given JSON into aPayloadinstance.
-