io.fabric8.kubernetes.api.model.ListMeta Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
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({
"resourceVersion",
"selfLink"
})
public class ListMeta {
/**
* string that identifies the internal version of this object that can be used by clients to determine when objects have changed; populated by the system
*
*/
@JsonProperty("resourceVersion")
private String resourceVersion;
/**
* URL for the object; populated by the system
*
*/
@JsonProperty("selfLink")
private String selfLink;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public ListMeta() {
}
/**
*
* @param resourceVersion
* @param selfLink
*/
public ListMeta(String resourceVersion, String selfLink) {
this.resourceVersion = resourceVersion;
this.selfLink = selfLink;
}
/**
* string that identifies the internal version of this object that can be used by clients to determine when objects have changed; populated by the system
*
* @return
* The resourceVersion
*/
@JsonProperty("resourceVersion")
public String getResourceVersion() {
return resourceVersion;
}
/**
* string that identifies the internal version of this object that can be used by clients to determine when objects have changed; populated by the system
*
* @param resourceVersion
* The resourceVersion
*/
@JsonProperty("resourceVersion")
public void setResourceVersion(String resourceVersion) {
this.resourceVersion = resourceVersion;
}
/**
* URL for the object; populated by the system
*
* @return
* The selfLink
*/
@JsonProperty("selfLink")
public String getSelfLink() {
return selfLink;
}
/**
* URL for the object; populated by the system
*
* @param selfLink
* The selfLink
*/
@JsonProperty("selfLink")
public void setSelfLink(String selfLink) {
this.selfLink = selfLink;
}
@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(resourceVersion).append(selfLink).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof ListMeta) == false) {
return false;
}
ListMeta rhs = ((ListMeta) other);
return new EqualsBuilder().append(resourceVersion, rhs.resourceVersion).append(selfLink, rhs.selfLink).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy