org.osgl.storage.spring.S3ServiceConfigurer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of osgl-storage Show documentation
Show all versions of osgl-storage Show documentation
A simple storage service supports plugin varieties of implementations including Amazon S3
package org.osgl.storage.spring;
import org.osgl.storage.IStorageService;
import org.osgl.storage.impl.S3Service;
import org.osgl.util.C;
import org.osgl.util.E;
import org.springframework.stereotype.Component;
import java.util.Map;
import static org.osgl.storage.impl.S3Service.*;
@Component
public class S3ServiceConfigurer extends StorageServiceConfigurerBase implements StorageServiceConfigurer {
private String awsKeyId;
private String awsKeySecret;
private S3Service.StorageClass defStorageClass;
private String bucket;
private String staticWebEndPoint = null;
private boolean getMetaOnly = false;
private boolean noGet = false;
public void setAwsKeyId(String awsKeyId) {
E.NPE(awsKeyId);
this.awsKeyId = awsKeyId;
}
public void setAwsKeySecret(String awsKeySecret) {
E.NPE(awsKeySecret);
this.awsKeySecret = awsKeySecret;
}
public void setDefStorageClass(S3Service.StorageClass defStorageClass) {
E.NPE(defStorageClass);
this.defStorageClass = defStorageClass;
}
public void setBucket(String bucket) {
E.NPE(bucket);
this.bucket = bucket;
}
public void setStaticWebEndPoint(String staticWebEndPoint) {
E.NPE(staticWebEndPoint);
this.staticWebEndPoint = staticWebEndPoint;
}
public void setGetMetaOnly(boolean getMetaOnly) {
this.getMetaOnly = getMetaOnly;
}
public void setNoGet(boolean noGet) {
this.noGet = noGet;
}
@Override
public IStorageService getStorageService() {
Map conf = C.map(CONF_KEY_ID, awsKeyId,
CONF_KEY_SECRET, awsKeySecret,
CONF_DEF_STORAGE_CLASS, defStorageClass,
CONF_BUCKET, bucket,
CONF_GET_META_ONLY, getMetaOnly,
CONF_GET_NO_GET, noGet,
CONF_KEY_GEN, getKeyGenerator().name());
return new S3Service(conf);
}
}