Interface JwtAssertionParameters


  • public interface JwtAssertionParameters
    • Method Detail

      • getSignatureAlgorithm

        String getSignatureAlgorithm()
        Returns a string description of the Signature Algorithm to be used to sign this claim.
        Returns:
        String representing the selected algorithm.
      • getIssuer

        String getIssuer()
        Identifies the principal that issued the JWT.
        Returns:
        String representation of the principal.
      • getSubject

        String getSubject()
        Identifies the principal that is the subject of the JWT.
        Returns:
        String representation of the subject.
      • getAudience

        String getAudience()
        Identifies the recipients the JWT is intended for.
        Returns:
        String representation of the audience.
      • getExpiration

        long getExpiration()
        The time at which the JWT will expire.
        Returns:
        Long representing the time in millis since Epoch.
      • getExtendedClaims

        Map<String,​String> getExtendedClaims()
        Public and Private claims which must be included in the JWT.
        Returns:
        Map of the key value pairs which will be submitted with this assertion.