com.amazonaws.auth
Class PropertiesCredentials

java.lang.Object
  extended by com.amazonaws.auth.PropertiesCredentials
All Implemented Interfaces:
AWSCredentials

public class PropertiesCredentials
extends java.lang.Object
implements AWSCredentials

Simple implementation AWSCredentials that reads in AWS access keys from a properties file. The AWS access key is expected to be in the "accessKey" property and the AWS secret key id is expected to be in the "secretKey" property.


Constructor Summary
PropertiesCredentials(java.io.File file)
          Reads the specified file as a Java properties file and extracts the AWS access key from the "accessKey" property and AWS secret access key from the "secretKey" property.
PropertiesCredentials(java.io.InputStream inputStream)
          Reads the specified input stream as a stream of Java properties file content and extracts the AWS access key ID and secret access key from the properties.
 
Method Summary
 java.lang.String getAWSAccessKeyId()
          Returns the AWS access key ID for this credentials object.
 java.lang.String getAWSSecretKey()
          Returns the AWS secret access key for this credentials object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PropertiesCredentials

public PropertiesCredentials(java.io.File file)
                      throws java.io.FileNotFoundException,
                             java.io.IOException,
                             java.lang.IllegalArgumentException
Reads the specified file as a Java properties file and extracts the AWS access key from the "accessKey" property and AWS secret access key from the "secretKey" property. If the specified file doesn't contain the AWS access keys an IOException will be thrown.

Parameters:
file - The file from which to read the AWS credentials properties.
Throws:
java.io.FileNotFoundException - If the specified file isn't found.
java.io.IOException - If any problems are encountered reading the AWS access keys from the specified file.
java.lang.IllegalArgumentException - If the specified properties file does not contain the required keys.

PropertiesCredentials

public PropertiesCredentials(java.io.InputStream inputStream)
                      throws java.io.IOException
Reads the specified input stream as a stream of Java properties file content and extracts the AWS access key ID and secret access key from the properties.

Parameters:
inputStream - The input stream containing the AWS credential properties.
Throws:
java.io.IOException - If any problems occur while reading from the input stream.
Method Detail

getAWSAccessKeyId

public java.lang.String getAWSAccessKeyId()
Description copied from interface: AWSCredentials
Returns the AWS access key ID for this credentials object.

Specified by:
getAWSAccessKeyId in interface AWSCredentials
Returns:
The AWS access key ID for this credentials object.

getAWSSecretKey

public java.lang.String getAWSSecretKey()
Description copied from interface: AWSCredentials
Returns the AWS secret access key for this credentials object.

Specified by:
getAWSSecretKey in interface AWSCredentials
Returns:
The AWS secret access key for this credentials object.


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.