Interface JwtSignatureBuilder

  • All Superinterfaces:
    JwtSignature

    public interface JwtSignatureBuilder
    extends JwtSignature
    JWT JsonWebSignature Builder.

    JwtSignatureBuilder implementations must set the 'alg' (algorithm) header to 'RS256' and 'typ' (token type) header to 'JWT' unless they have already been set.

    Note that JwtSignatureBuilder implementations are not expected to be thread-safe.

    See Also:
    RFC7515