Example usage for com.amazonaws.services.s3 AmazonS3 interface-usage

List of usage examples for com.amazonaws.services.s3 AmazonS3 interface-usage

Introduction

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

Usage

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 com.facebook.presto.hive.MockAmazonS3.java

public class MockAmazonS3 implements AmazonS3 {
    private int getObjectHttpCode = SC_OK;
    private int getObjectMetadataHttpCode = SC_OK;

    public void setGetObjectHttpErrorCode(int getObjectHttpErrorCode) {
        this.getObjectHttpCode = getObjectHttpErrorCode;

From source file org.apache.tajo.storage.s3.MockAmazonS3.java

public class MockAmazonS3 implements AmazonS3 {
    private int getObjectHttpCode = SC_OK;
    private int getObjectMetadataHttpCode = SC_OK;

    @Override
    public void setEndpoint(String endpoint) {

From source file org.duracloud.integration.durastore.storage.probe.ProbedRestS3Client.java

/**
 * This class wraps an AmazonS3Client implementation, collecting timing metrics
 * while passing calls down.
 *
 * @author Bill Branan
 */

From source file org.elasticsearch.cloud.aws.AmazonS3Wrapper.java

/**
 *
 */
public class AmazonS3Wrapper implements AmazonS3 {

    protected AmazonS3 delegate;

From source file org.elasticsearch.repositories.s3.AmazonS3Wrapper.java

@SuppressForbidden(reason = "implements AWS api that uses java.io.File!")
public class AmazonS3Wrapper implements AmazonS3 {

    protected AmazonS3 delegate;

    public AmazonS3Wrapper(AmazonS3 delegate) {