Interface JWTPartsParser

  • All Known Implementing Classes:
    JWTParser

    public interface JWTPartsParser
    The JWTPartsParser class defines which parts of the JWT should be converted to its specific Object representation instance.
    • Method Detail

      • parsePayload

        Payload parsePayload​(java.lang.String json)
                      throws JWTDecodeException
        Parses the given JSON into a Payload instance.
        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 a Header instance.
        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.