All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ionoscloud.s3.credentials.IonosEnvironmentProvider Maven / Gradle / Ivy

The newest version!
package com.ionoscloud.s3.credentials;

/** Credential provider using IONOS server specific environment variables. */
public class IonosEnvironmentProvider extends EnvironmentProvider {
  @Override
  public Credentials fetch() {
    return new Credentials(
        getProperty("IONOS_S3_ACCESS_KEY"), getProperty("IONOS_S3_SECRET_KEY"), null, null);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy