Package com.auth0.jwt.interfaces
Interface JWTPartsParser
-
- All Known Implementing Classes:
JWTParser
public interface JWTPartsParserThe JWTPartsParser class defines which parts of the JWT should be converted to its specific Object representation instance.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HeaderparseHeader(java.lang.String json)Parses the given JSON into aHeaderinstance.PayloadparsePayload(java.lang.String json)Parses the given JSON into aPayloadinstance.
-
-
-
Method Detail
-
parsePayload
Payload parsePayload(java.lang.String json) throws JWTDecodeException
Parses the given JSON into aPayloadinstance.- Parameters:
json- the content of the Payload in a JSON representation.- Returns:
- the Payload.
- Throws:
JWTDecodeException- if the json doesn't have a proper JSON format.
-
parseHeader
Header parseHeader(java.lang.String json) throws JWTDecodeException
Parses the given JSON into aHeaderinstance.- Parameters:
json- the content of the Header in a JSON representation.- Returns:
- the Header.
- Throws:
JWTDecodeException- if the json doesn't have a proper JSON format.
-
-