io.fabric8.kubernetes.api.model.EndpointAddress 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({
"IP",
"targetRef"
})
public class EndpointAddress {
/**
* IP address of the endpoint
*
*/
@JsonProperty("IP")
private String IP;
/**
*
*
*/
@JsonProperty("targetRef")
@Valid
private ObjectReference targetRef;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public EndpointAddress() {
}
/**
*
* @param IP
* @param targetRef
*/
public EndpointAddress(String IP, ObjectReference targetRef) {
this.IP = IP;
this.targetRef = targetRef;
}
/**
* IP address of the endpoint
*
* @return
* The IP
*/
@JsonProperty("IP")
public String getIP() {
return IP;
}
/**
* IP address of the endpoint
*
* @param IP
* The IP
*/
@JsonProperty("IP")
public void setIP(String IP) {
this.IP = IP;
}
/**
*
*
* @return
* The targetRef
*/
@JsonProperty("targetRef")
public ObjectReference getTargetRef() {
return targetRef;
}
/**
*
*
* @param targetRef
* The targetRef
*/
@JsonProperty("targetRef")
public void setTargetRef(ObjectReference targetRef) {
this.targetRef = targetRef;
}
@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(IP).append(targetRef).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof EndpointAddress) == false) {
return false;
}
EndpointAddress rhs = ((EndpointAddress) other);
return new EqualsBuilder().append(IP, rhs.IP).append(targetRef, rhs.targetRef).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy