io.fabric8.kubernetes.api.model.config.Context Maven / Gradle / Ivy
The newest version!
package io.fabric8.kubernetes.api.model.config;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
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 com.fasterxml.jackson.databind.annotation.JsonDeserialize;
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({
"cluster",
"extensions",
"namespace",
"user"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
public class Context {
/**
*
*
*/
@JsonProperty("cluster")
private String cluster;
/**
*
*
*/
@JsonProperty("extensions")
@Valid
private List extensions = new ArrayList();
/**
*
*
*/
@JsonProperty("namespace")
private String namespace;
/**
*
*
*/
@JsonProperty("user")
private String user;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public Context() {
}
/**
*
* @param cluster
* @param user
* @param extensions
* @param namespace
*/
public Context(String cluster, List extensions, String namespace, String user) {
this.cluster = cluster;
this.extensions = extensions;
this.namespace = namespace;
this.user = user;
}
/**
*
*
* @return
* The cluster
*/
@JsonProperty("cluster")
public String getCluster() {
return cluster;
}
/**
*
*
* @param cluster
* The cluster
*/
@JsonProperty("cluster")
public void setCluster(String cluster) {
this.cluster = cluster;
}
/**
*
*
* @return
* The extensions
*/
@JsonProperty("extensions")
public List getExtensions() {
return extensions;
}
/**
*
*
* @param extensions
* The extensions
*/
@JsonProperty("extensions")
public void setExtensions(List extensions) {
this.extensions = extensions;
}
/**
*
*
* @return
* The namespace
*/
@JsonProperty("namespace")
public String getNamespace() {
return namespace;
}
/**
*
*
* @param namespace
* The namespace
*/
@JsonProperty("namespace")
public void setNamespace(String namespace) {
this.namespace = namespace;
}
/**
*
*
* @return
* The user
*/
@JsonProperty("user")
public String getUser() {
return user;
}
/**
*
*
* @param user
* The user
*/
@JsonProperty("user")
public void setUser(String user) {
this.user = user;
}
@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(cluster).append(extensions).append(namespace).append(user).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof Context) == false) {
return false;
}
Context rhs = ((Context) other);
return new EqualsBuilder().append(cluster, rhs.cluster).append(extensions, rhs.extensions).append(namespace, rhs.namespace).append(user, rhs.user).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy