io.fabric8.openshift.api.model.RecreateDeploymentStrategyParams Maven / Gradle / Ivy
package io.fabric8.openshift.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({
"post",
"pre"
})
public class RecreateDeploymentStrategyParams {
/**
*
*
*/
@JsonProperty("post")
@Valid
private LifecycleHook post;
/**
*
*
*/
@JsonProperty("pre")
@Valid
private LifecycleHook pre;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public RecreateDeploymentStrategyParams() {
}
/**
*
* @param post
* @param pre
*/
public RecreateDeploymentStrategyParams(LifecycleHook post, LifecycleHook pre) {
this.post = post;
this.pre = pre;
}
/**
*
*
* @return
* The post
*/
@JsonProperty("post")
public LifecycleHook getPost() {
return post;
}
/**
*
*
* @param post
* The post
*/
@JsonProperty("post")
public void setPost(LifecycleHook post) {
this.post = post;
}
/**
*
*
* @return
* The pre
*/
@JsonProperty("pre")
public LifecycleHook getPre() {
return pre;
}
/**
*
*
* @param pre
* The pre
*/
@JsonProperty("pre")
public void setPre(LifecycleHook pre) {
this.pre = pre;
}
@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(post).append(pre).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof RecreateDeploymentStrategyParams) == false) {
return false;
}
RecreateDeploymentStrategyParams rhs = ((RecreateDeploymentStrategyParams) other);
return new EqualsBuilder().append(post, rhs.post).append(pre, rhs.pre).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy