Interface AuthScheme<T extends Identity>

  • Type Parameters:
    T - The type of the Identity used by this authentication scheme.

    public interface AuthScheme<T extends Identity>
    An authentication scheme, composed of:
    1. A scheme ID - A unique identifier for the authentication scheme.
    2. An identity provider - An API that can be queried to acquire the customer's identity.
    3. A signer - An API that can be used to sign HTTP requests.
    See example auth schemes defined here.
    See Also:
    IdentityProvider, HttpSigner
    • Method Detail

      • schemeId

        String schemeId()
        Retrieve the scheme ID, a unique identifier for the authentication scheme.
      • identityProvider

        IdentityProvider<T> identityProvider​(IdentityProviders providers)
        Retrieve the identity provider associated with this authentication scheme. The identity generated by this provider is guaranteed to be supported by the signer in this authentication scheme.

        For example, if the scheme ID is aws.auth#sigv4, the provider returns an AwsCredentialsIdentity, if the scheme ID is httpBearerAuth, the provider returns a TokenIdentity.

        Note, the returned identity provider may differ from the type of identity provider retrieved from the provided IdentityProviders.

      • signer

        HttpSigner<T> signer()
        Retrieve the signer associated with this authentication scheme. This signer is guaranteed to support the identity generated by the identity provider in this authentication scheme.