Package com.amazonaws.auth
Class ClasspathPropertiesFileCredentialsProvider
- java.lang.Object
-
- com.amazonaws.auth.ClasspathPropertiesFileCredentialsProvider
-
- All Implemented Interfaces:
AWSCredentialsProvider
public class ClasspathPropertiesFileCredentialsProvider extends Object implements AWSCredentialsProvider
AWSCredentialsProviderimplementation that loads AWS security credentials from a properties file on the classpath. The default constructor creates a credentials provider that loads the credentials from a file namedAwsCredentials.propertieson the classpath, but which file to use from the classpath can also be controled through the one-argument constructor.The AWS access key ID is expected to be in the
accessKeyproperty and the AWS secret key is expected to be in thesecretKeyproperty.
-
-
Constructor Summary
Constructors Constructor Description ClasspathPropertiesFileCredentialsProvider()Creates a new ClasspathPropertiesFileCredentialsProvider that will attempt to load theAwsCredentials.propertiesfile from the classpath to read AWS security credentials.ClasspathPropertiesFileCredentialsProvider(String credentialsFilePath)Creates a new ClasspathPropertiesFileCredentialsProvider that will attempt to load a custom file from the classpath to read AWS security credentials.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AWSCredentialsgetCredentials()Returns AWSCredentials which the caller can use to authorize an AWS request.voidrefresh()Forces this credentials provider to refresh its credentials.StringtoString()
-
-
-
Constructor Detail
-
ClasspathPropertiesFileCredentialsProvider
public ClasspathPropertiesFileCredentialsProvider()
Creates a new ClasspathPropertiesFileCredentialsProvider that will attempt to load theAwsCredentials.propertiesfile from the classpath to read AWS security credentials.
-
ClasspathPropertiesFileCredentialsProvider
public ClasspathPropertiesFileCredentialsProvider(String credentialsFilePath)
Creates a new ClasspathPropertiesFileCredentialsProvider that will attempt to load a custom file from the classpath to read AWS security credentials.- Parameters:
credentialsFilePath- The custom classpath resource path to a properties file from which the AWS security credentials should be loaded. For example,- com/mycompany/credentials.properties
- beta-credentials.properties
- AwsCredentials.properties
-
-
Method Detail
-
getCredentials
public AWSCredentials getCredentials()
Description copied from interface:AWSCredentialsProviderReturns AWSCredentials which the caller can use to authorize an AWS request. Each implementation of AWSCredentialsProvider 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:
getCredentialsin interfaceAWSCredentialsProvider- Returns:
- AWSCredentials which the caller can use to authorize an AWS request.
-
refresh
public void refresh()
Description copied from interface:AWSCredentialsProviderForces this credentials provider to refresh its credentials. For many implementations of credentials provider, this method may simply be a no-op, such as any credentials provider implementation that vends static/non-changing credentials. For other implementations that vend different credentials through out their lifetime, this method should force the credentials provider to refresh its credentials.- Specified by:
refreshin interfaceAWSCredentialsProvider
-
-