Example usage for com.amazonaws.services.s3 AmazonS3Client subclass-usage

List of usage examples for com.amazonaws.services.s3 AmazonS3Client subclass-usage

Introduction

In this page you can find the example usage for com.amazonaws.services.s3 AmazonS3Client subclass-usage.

Usage

From source file br.com.ingenieux.mojo.aws.util.BeanstalkerS3Client.java

public class BeanstalkerS3Client extends AmazonS3Client {

    private static final String BLANK_LINE = StringUtils.repeat(" ", 24);
    private boolean multipartUpload = true;
    private boolean silentUpload = false;
    private TransferManager transferManager;

From source file com.emc.vipr.services.s3.ViPRS3Client.java

public class ViPRS3Client extends AmazonS3Client implements ViPRS3, AmazonS3 {
    private static Log log = LogFactory.getLog(ViPRS3Client.class);

    protected static final String IP_ADDRESS_PATTERN = "^([0-9]{1,3}\\.){3}[0-9]{1,3}$";

    protected String namespace;

From source file edu.si.services.beans.cameratrap.AmazonS3ClientMock.java

/**
 * AmazonS3ClientMock for testing aws-s3 endpoints.
 * Modified from https://github.com/apache/camel/blob/master/components/camel-aws/src/test/java/org/apache/camel/component/aws/s3/AmazonS3ClientMock.java
 *
 * @author jbirkhimer
 */

From source file edu.si.services.fits.itest.AmazonS3ClientMock.java

/**
 * AmazonS3ClientMock for testing aws-s3 endpoints.
 * Modified from https://github.com/apache/camel/blob/master/components/camel-aws/src/test/java/org/apache/camel/component/aws/s3/AmazonS3ClientMock.java
 *
 * @author jbirkhimer
 */

From source file org.apache.camel.component.aws.s3.AmazonS3ClientMock.java

public class AmazonS3ClientMock extends AmazonS3Client {

    List<S3Object> objects = new CopyOnWriteArrayList<S3Object>();
    List<PutObjectRequest> putObjectRequests = new CopyOnWriteArrayList<PutObjectRequest>();

    private boolean nonExistingBucketCreated;

From source file org.apache.camel.itest.osgi.aws.AmazonS3ClientMock.java

public class AmazonS3ClientMock extends AmazonS3Client {

    List<S3Object> objects = new ArrayList<S3Object>();

    public AmazonS3ClientMock() {
        super(new BasicAWSCredentials("myAccessKey", "mySecretKey"));