src.main.java.com.smartbear.readyapi.client.model.HarCookie 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;
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaClientCodegen", date = "2016-07-29T13:25:49.703+02:00")
public class HarCookie {
private String name = null;
private String value = null;
private String path = null;
private String domain = null;
private String expires = null;
private Boolean httpOnly = false;
private Boolean secure = false;
private String comment = null;
/**
**/
public HarCookie name(String name) {
this.name = name;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("name")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
/**
**/
public HarCookie value(String value) {
this.value = value;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("value")
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
/**
**/
public HarCookie path(String path) {
this.path = path;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("path")
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
/**
**/
public HarCookie domain(String domain) {
this.domain = domain;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("domain")
public String getDomain() {
return domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
/**
**/
public HarCookie expires(String expires) {
this.expires = expires;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("expires")
public String getExpires() {
return expires;
}
public void setExpires(String expires) {
this.expires = expires;
}
/**
**/
public HarCookie httpOnly(Boolean httpOnly) {
this.httpOnly = httpOnly;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("httpOnly")
public Boolean getHttpOnly() {
return httpOnly;
}
public void setHttpOnly(Boolean httpOnly) {
this.httpOnly = httpOnly;
}
/**
**/
public HarCookie secure(Boolean secure) {
this.secure = secure;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("secure")
public Boolean getSecure() {
return secure;
}
public void setSecure(Boolean secure) {
this.secure = secure;
}
/**
**/
public HarCookie comment(String comment) {
this.comment = comment;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("comment")
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
HarCookie harCookie = (HarCookie) o;
return Objects.equals(this.name, harCookie.name) &&
Objects.equals(this.value, harCookie.value) &&
Objects.equals(this.path, harCookie.path) &&
Objects.equals(this.domain, harCookie.domain) &&
Objects.equals(this.expires, harCookie.expires) &&
Objects.equals(this.httpOnly, harCookie.httpOnly) &&
Objects.equals(this.secure, harCookie.secure) &&
Objects.equals(this.comment, harCookie.comment);
}
@Override
public int hashCode() {
return Objects.hash(name, value, path, domain, expires, httpOnly, secure, comment);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class HarCookie {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" value: ").append(toIndentedString(value)).append("\n");
sb.append(" path: ").append(toIndentedString(path)).append("\n");
sb.append(" domain: ").append(toIndentedString(domain)).append("\n");
sb.append(" expires: ").append(toIndentedString(expires)).append("\n");
sb.append(" httpOnly: ").append(toIndentedString(httpOnly)).append("\n");
sb.append(" secure: ").append(toIndentedString(secure)).append("\n");
sb.append(" comment: ").append(toIndentedString(comment)).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 ");
}
}