com.obs.services.model.BucketMetadataInfoResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esdk-obs-java-bundle Show documentation
Show all versions of esdk-obs-java-bundle Show documentation
The HuaweiCloud OBS Bundle SDK for Java used for accessing Object Storage Service, this SDK bundle
includes third-party libraries and relocated to different namespaces
The newest version!
/**
* Copyright 2019 Huawei Technologies Co.,Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use
* this file except in compliance with the License. You may obtain a copy of the
* License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
**/
package com.obs.services.model;
import java.util.List;
/**
* Response to a request for obtaining bucket metadata
*
*/
public class BucketMetadataInfoResult extends OptionsInfoResult {
protected StorageClassEnum storageClass;
protected String location;
protected String obsVersion;
protected AvailableZoneEnum availableZone;
protected String epid;
protected BucketTypeEnum bucketType = BucketTypeEnum.OBJECT;
public BucketMetadataInfoResult(String allowOrigin, List allowHeaders, int maxAge,
List allowMethods, List exposeHeaders, StorageClassEnum storageClass, String location,
String obsVersion) {
super(allowOrigin, allowHeaders, maxAge, allowMethods, exposeHeaders);
this.storageClass = storageClass;
this.location = location;
this.obsVersion = obsVersion;
}
@Deprecated
//CHECKSTYLE:OFF
public BucketMetadataInfoResult(String allowOrigin, List allowHeaders, int maxAge,
List allowMethods, List exposeHeaders, StorageClassEnum storageClass, String location,
String obsVersion, AvailableZoneEnum availableZone) {
this(allowOrigin, allowHeaders, maxAge, allowMethods, exposeHeaders, storageClass, location, obsVersion);
this.availableZone = availableZone;
}
@Deprecated
//CHECKSTYLE:OFF
public BucketMetadataInfoResult(String allowOrigin, List allowHeaders, int maxAge,
List allowMethods, List exposeHeaders, StorageClassEnum storageClass, String location,
String obsVersion, AvailableZoneEnum availableZone, String epid, BucketTypeEnum bucketType) {
this(allowOrigin, allowHeaders, maxAge, allowMethods, exposeHeaders, storageClass, location, obsVersion);
this.availableZone = availableZone;
this.epid = epid;
this.bucketType = bucketType;
}
protected BucketMetadataInfoResult() {
super();
}
private BucketMetadataInfoResult(Builder builder) {
super(builder.allowOrigin, builder.allowHeaders, builder.maxAge, builder.allowMethods, builder.exposeHeaders);
this.storageClass = builder.storageClass;
this.location = builder.location;
this.obsVersion = builder.obsVersion;
this.availableZone = builder.availableZone;
this.epid = builder.epid;
this.bucketType = builder.bucketType;
}
public static final class Builder {
private String allowOrigin;
private List allowHeaders;
private int maxAge;
private List allowMethods;
private List exposeHeaders;
private StorageClassEnum storageClass;
private String location;
private String obsVersion;
private AvailableZoneEnum availableZone;
private String epid;
private BucketTypeEnum bucketType = BucketTypeEnum.OBJECT;
public Builder allowOrigin(String allowOrigin) {
this.allowOrigin = allowOrigin;
return this;
}
public Builder allowHeaders(List allowHeaders) {
this.allowHeaders = allowHeaders;
return this;
}
public Builder maxAge(int maxAge) {
this.maxAge = maxAge;
return this;
}
public Builder allowMethods(List allowMethods) {
this.allowMethods = allowMethods;
return this;
}
public Builder exposeHeaders(List exposeHeaders) {
this.exposeHeaders = exposeHeaders;
return this;
}
public Builder storageClass(StorageClassEnum storageClass) {
this.storageClass = storageClass;
return this;
}
public Builder location(String location) {
this.location = location;
return this;
}
public Builder obsVersion(String obsVersion) {
this.obsVersion = obsVersion;
return this;
}
public Builder availableZone(AvailableZoneEnum availableZone) {
this.availableZone = availableZone;
return this;
}
public Builder epid(String epid) {
this.epid = epid;
return this;
}
public Builder bucketType(BucketTypeEnum bucketType) {
this.bucketType = bucketType;
return this;
}
public BucketMetadataInfoResult build() {
return new BucketMetadataInfoResult(this);
}
}
/**
* Obtain the bucket storage class.
*
* @return Bucket storage class
*/
@Deprecated
public String getDefaultStorageClass() {
return this.storageClass == null ? null : storageClass.getCode();
}
/**
* Obtain the bucket storage class.
*
* @return Bucket storage class
*/
public StorageClassEnum getBucketStorageClass() {
return this.storageClass;
}
/**
* Obtain the bucket location.
*
* @return Bucket location
*/
public String getLocation() {
return location;
}
/**
* Obtain the OBS version.
*
* @return OBS version
*/
public String getObsVersion() {
return obsVersion;
}
/**
* Obtain the enterprise ID of a bucket.
*
* @return Enterprise ID
*/
public String getEpid() {
return epid;
}
/**
* Obtain the bucket cluster type.
*
* @return Bucket cluster type
*/
public AvailableZoneEnum getAvailableZone() {
return this.availableZone;
}
@Override
public String toString() {
return "BucketMetadataInfoResult [storageClass=" + storageClass + ", location=" + location + ", obsVersion="
+ obsVersion + ", bucketType=" + bucketType.name() + "]";
}
/**
* Get type of the bucket
*
* @return Type of bucket
*/
public BucketTypeEnum getBucketType() {
return bucketType;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy