src.main.java.com.smartbear.readyapi.client.model.ContentDisposition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ready-api-testserver-client Show documentation
Show all versions of ready-api-testserver-client Show documentation
Java client library for creating and executing test recipes against Ready!API TestServer
The newest version!
package com.smartbear.readyapi.client.model;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaClientCodegen", date = "2016-07-29T13:25:49.703+02:00")
public class ContentDisposition {
private String type = null;
private Map parameters = new HashMap();
private String fileName = null;
private Date creationDate = null;
private Date modificationDate = null;
private Date readDate = null;
private Long size = null;
/**
**/
public ContentDisposition type(String type) {
this.type = type;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("type")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
/**
**/
public ContentDisposition parameters(Map parameters) {
this.parameters = parameters;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("parameters")
public Map getParameters() {
return parameters;
}
public void setParameters(Map parameters) {
this.parameters = parameters;
}
/**
**/
public ContentDisposition fileName(String fileName) {
this.fileName = fileName;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("fileName")
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
/**
**/
public ContentDisposition creationDate(Date creationDate) {
this.creationDate = creationDate;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("creationDate")
public Date getCreationDate() {
return creationDate;
}
public void setCreationDate(Date creationDate) {
this.creationDate = creationDate;
}
/**
**/
public ContentDisposition modificationDate(Date modificationDate) {
this.modificationDate = modificationDate;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("modificationDate")
public Date getModificationDate() {
return modificationDate;
}
public void setModificationDate(Date modificationDate) {
this.modificationDate = modificationDate;
}
/**
**/
public ContentDisposition readDate(Date readDate) {
this.readDate = readDate;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("readDate")
public Date getReadDate() {
return readDate;
}
public void setReadDate(Date readDate) {
this.readDate = readDate;
}
/**
**/
public ContentDisposition size(Long size) {
this.size = size;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("size")
public Long getSize() {
return size;
}
public void setSize(Long size) {
this.size = size;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ContentDisposition contentDisposition = (ContentDisposition) o;
return Objects.equals(this.type, contentDisposition.type) &&
Objects.equals(this.parameters, contentDisposition.parameters) &&
Objects.equals(this.fileName, contentDisposition.fileName) &&
Objects.equals(this.creationDate, contentDisposition.creationDate) &&
Objects.equals(this.modificationDate, contentDisposition.modificationDate) &&
Objects.equals(this.readDate, contentDisposition.readDate) &&
Objects.equals(this.size, contentDisposition.size);
}
@Override
public int hashCode() {
return Objects.hash(type, parameters, fileName, creationDate, modificationDate, readDate, size);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ContentDisposition {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" parameters: ").append(toIndentedString(parameters)).append("\n");
sb.append(" fileName: ").append(toIndentedString(fileName)).append("\n");
sb.append(" creationDate: ").append(toIndentedString(creationDate)).append("\n");
sb.append(" modificationDate: ").append(toIndentedString(modificationDate)).append("\n");
sb.append(" readDate: ").append(toIndentedString(readDate)).append("\n");
sb.append(" size: ").append(toIndentedString(size)).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 ");
}
}