List of usage examples for com.amazonaws.auth AWSCredentialsProvider interface-usage
From source file org.nuxeo.aws.elastictranscoder.SimpleAWSCredentialProvider.java
/**
* We want to allow using nuxeo.conf to setup the keys, so we need our basic
* custom credential provider.
*
* @since 7.1
*/
From source file org.nuxeo.ecm.core.storage.sql.BasicAWSCredentialsProvider.java
public class BasicAWSCredentialsProvider implements AWSCredentialsProvider { protected BasicAWSCredentials basicAWSCredentials; public BasicAWSCredentialsProvider(String awsID, String awsSecret) { this.basicAWSCredentials = new BasicAWSCredentials(awsID, awsSecret);
From source file org.nuxeo.sheridan.SimpleAWSCredentialProvider.java
/**
* This class is a simple wrapper around <code>com.amazonaws.auth.BasicAWSCredentials</code>.
* <p>
* We want to allow using nuxeo.conf to setup the keys, so we need our basic
* custom credential provider.
*
From source file org.springframework.build.aws.maven.AuthenticationInfoAWSCredentialsProvider.java
final class AuthenticationInfoAWSCredentialsProvider implements AWSCredentialsProvider { private final AuthenticationInfo authenticationInfo; AuthenticationInfoAWSCredentialsProvider(AuthenticationInfo authenticationInfo) { this.authenticationInfo = authenticationInfo;
From source file org.xmlsh.aws.util.AWSEnvCredentialsProvider.java
/** * * DAL: Backwards compatibility with old variables AWS_ACCESS_KEY */ public class AWSEnvCredentialsProvider implements AWSCredentialsProvider {
From source file org.zalando.stups.fullstop.SimplePropertiesCredentials.java
/** * @author jbellmann */ public class SimplePropertiesCredentials implements AWSCredentialsProvider { private final AWSCredentials awsCredentials;