Class CdpSystemPropertiesCredentialsProvider

  • All Implemented Interfaces:
    CdpCredentialsProvider

    public class CdpSystemPropertiesCredentialsProvider
    extends Object
    implements CdpCredentialsProvider
    CdpCredentialsProvider implementation that provides credentials by looking at the CDP_ACCESS_KEY_ID, CDP_PRIVATE_KEY and CDP_ACCESS_TOKEN system properties.
    • Field Detail

      • CDP_ACCESS_KEY_ID

        public static final String CDP_ACCESS_KEY_ID
        Name of system variable holding the users CDP access key ID.
        See Also:
        Constant Field Values
      • CDP_PRIVATE_KEY

        public static final String CDP_PRIVATE_KEY
        Name of system variable holding the users CDP private key.
        See Also:
        Constant Field Values
      • CDP_ACCESS_TOKEN

        public static final String CDP_ACCESS_TOKEN
        Name of system variable holding the users CDP access token.
        See Also:
        Constant Field Values
    • Constructor Detail

      • CdpSystemPropertiesCredentialsProvider

        public CdpSystemPropertiesCredentialsProvider()
    • Method Detail

      • getCredentials

        public CdpCredentials getCredentials()
        Description copied from interface: CdpCredentialsProvider
        Returns CdpCredentials which the caller can use to authenticate a CDP request. Each implementation of CdpCredentialsProvider can chose its own strategy for loading credentials. For example, an implementation might load credentials from an existing key management system, or load new credentials when credentials are rotated.
        Specified by:
        getCredentials in interface CdpCredentialsProvider
        Returns:
        CdpCredentials which the caller can use to authenticate an CDP request.