com.huaweicloud.sdk.obs.v1.model.ListBucketsResponse Maven / Gradle / Ivy
package com.huaweicloud.sdk.obs.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import com.huaweicloud.sdk.corexml.SdkXmlResponse;
import java.util.Objects;
import java.util.function.Consumer;
/**
* Response Object
*/
@JacksonXmlRootElement(localName = "ListBucketsResponse")
public class ListBucketsResponse extends SdkXmlResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "Owner")
@JacksonXmlProperty(localName = "Owner")
private Owner owner;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "Buckets")
@JacksonXmlProperty(localName = "Buckets")
private Buckets buckets;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "x-obs-id-2")
@JacksonXmlProperty(localName = "x-obs-id-2")
private String xObsId2;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "x-obs-request-id")
@JacksonXmlProperty(localName = "x-obs-request-id")
private String xObsRequestId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "ETag")
@JacksonXmlProperty(localName = "ETag")
private String etag;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "x-obs-bucket-type")
@JacksonXmlProperty(localName = "x-obs-bucket-type")
private String xObsBucketType;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "Connection")
@JacksonXmlProperty(localName = "Connection")
private String connection;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "Content-Length")
@JacksonXmlProperty(localName = "Content-Length")
private String contentLength;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "Date")
@JacksonXmlProperty(localName = "Date")
private String date;
public ListBucketsResponse withOwner(Owner owner) {
this.owner = owner;
return this;
}
public ListBucketsResponse withOwner(Consumer ownerSetter) {
if (this.owner == null) {
this.owner = new Owner();
ownerSetter.accept(this.owner);
}
return this;
}
/**
* Get owner
* @return owner
*/
public Owner getOwner() {
return owner;
}
public void setOwner(Owner owner) {
this.owner = owner;
}
public ListBucketsResponse withBuckets(Buckets buckets) {
this.buckets = buckets;
return this;
}
public ListBucketsResponse withBuckets(Consumer bucketsSetter) {
if (this.buckets == null) {
this.buckets = new Buckets();
bucketsSetter.accept(this.buckets);
}
return this;
}
/**
* Get buckets
* @return buckets
*/
public Buckets getBuckets() {
return buckets;
}
public void setBuckets(Buckets buckets) {
this.buckets = buckets;
}
public ListBucketsResponse withXObsId2(String xObsId2) {
this.xObsId2 = xObsId2;
return this;
}
/**
* Get xObsId2
* @return xObsId2
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "x-obs-id-2")
public String getXObsId2() {
return xObsId2;
}
public void setXObsId2(String xObsId2) {
this.xObsId2 = xObsId2;
}
public ListBucketsResponse withXObsRequestId(String xObsRequestId) {
this.xObsRequestId = xObsRequestId;
return this;
}
/**
* Get xObsRequestId
* @return xObsRequestId
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "x-obs-request-id")
public String getXObsRequestId() {
return xObsRequestId;
}
public void setXObsRequestId(String xObsRequestId) {
this.xObsRequestId = xObsRequestId;
}
public ListBucketsResponse withEtag(String etag) {
this.etag = etag;
return this;
}
/**
* Get etag
* @return etag
*/
public String getEtag() {
return etag;
}
public void setEtag(String etag) {
this.etag = etag;
}
public ListBucketsResponse withXObsBucketType(String xObsBucketType) {
this.xObsBucketType = xObsBucketType;
return this;
}
/**
* Get xObsBucketType
* @return xObsBucketType
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "x-obs-bucket-type")
public String getXObsBucketType() {
return xObsBucketType;
}
public void setXObsBucketType(String xObsBucketType) {
this.xObsBucketType = xObsBucketType;
}
public ListBucketsResponse withConnection(String connection) {
this.connection = connection;
return this;
}
/**
* Get connection
* @return connection
*/
public String getConnection() {
return connection;
}
public void setConnection(String connection) {
this.connection = connection;
}
public ListBucketsResponse withContentLength(String contentLength) {
this.contentLength = contentLength;
return this;
}
/**
* Get contentLength
* @return contentLength
*/
public String getContentLength() {
return contentLength;
}
public void setContentLength(String contentLength) {
this.contentLength = contentLength;
}
public ListBucketsResponse withDate(String date) {
this.date = date;
return this;
}
/**
* Get date
* @return date
*/
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ListBucketsResponse that = (ListBucketsResponse) obj;
return Objects.equals(this.owner, that.owner) && Objects.equals(this.buckets, that.buckets)
&& Objects.equals(this.xObsId2, that.xObsId2) && Objects.equals(this.xObsRequestId, that.xObsRequestId)
&& Objects.equals(this.etag, that.etag) && Objects.equals(this.xObsBucketType, that.xObsBucketType)
&& Objects.equals(this.connection, that.connection)
&& Objects.equals(this.contentLength, that.contentLength) && Objects.equals(this.date, that.date);
}
@Override
public int hashCode() {
return Objects
.hash(owner, buckets, xObsId2, xObsRequestId, etag, xObsBucketType, connection, contentLength, date);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListBucketsResponse {\n");
sb.append(" owner: ").append(toIndentedString(owner)).append("\n");
sb.append(" buckets: ").append(toIndentedString(buckets)).append("\n");
sb.append(" xObsId2: ").append(toIndentedString(xObsId2)).append("\n");
sb.append(" xObsRequestId: ").append(toIndentedString(xObsRequestId)).append("\n");
sb.append(" etag: ").append(toIndentedString(etag)).append("\n");
sb.append(" xObsBucketType: ").append(toIndentedString(xObsBucketType)).append("\n");
sb.append(" connection: ").append(toIndentedString(connection)).append("\n");
sb.append(" contentLength: ").append(toIndentedString(contentLength)).append("\n");
sb.append(" date: ").append(toIndentedString(date)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}