All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.codewise.canaveral.mock.s3.S3Mock Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package pl.codewise.canaveral.mock.s3;

import org.joda.time.DateTime;

public interface S3Mock {

    S3MockObject get(String bucketName, String key);

    void put(String bucket, String key, byte[] content);

    void put(String bucket, String key, byte[] content, DateTime lastModified);

    void delete(String bucket, String key);

    S3MockBucket getBucket(String bucketName);

    Iterable listBuckets();

    void start() throws Exception;

    void stop() throws Exception;

    int port();

    void clean();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy