io.fabric8.kubernetes.api.model.Handler Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
import javax.validation.Valid;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
/**
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"exec",
"httpGet",
"tcpSocket"
})
public class Handler {
/**
*
*
*/
@JsonProperty("exec")
@Valid
private ExecAction exec;
/**
*
*
*/
@JsonProperty("httpGet")
@Valid
private HTTPGetAction httpGet;
/**
*
*
*/
@JsonProperty("tcpSocket")
@Valid
private TCPSocketAction tcpSocket;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public Handler() {
}
/**
*
* @param httpGet
* @param exec
* @param tcpSocket
*/
public Handler(ExecAction exec, HTTPGetAction httpGet, TCPSocketAction tcpSocket) {
this.exec = exec;
this.httpGet = httpGet;
this.tcpSocket = tcpSocket;
}
/**
*
*
* @return
* The exec
*/
@JsonProperty("exec")
public ExecAction getExec() {
return exec;
}
/**
*
*
* @param exec
* The exec
*/
@JsonProperty("exec")
public void setExec(ExecAction exec) {
this.exec = exec;
}
/**
*
*
* @return
* The httpGet
*/
@JsonProperty("httpGet")
public HTTPGetAction getHttpGet() {
return httpGet;
}
/**
*
*
* @param httpGet
* The httpGet
*/
@JsonProperty("httpGet")
public void setHttpGet(HTTPGetAction httpGet) {
this.httpGet = httpGet;
}
/**
*
*
* @return
* The tcpSocket
*/
@JsonProperty("tcpSocket")
public TCPSocketAction getTcpSocket() {
return tcpSocket;
}
/**
*
*
* @param tcpSocket
* The tcpSocket
*/
@JsonProperty("tcpSocket")
public void setTcpSocket(TCPSocketAction tcpSocket) {
this.tcpSocket = tcpSocket;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(exec).append(httpGet).append(tcpSocket).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof Handler) == false) {
return false;
}
Handler rhs = ((Handler) other);
return new EqualsBuilder().append(exec, rhs.exec).append(httpGet, rhs.httpGet).append(tcpSocket, rhs.tcpSocket).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy