io.fabric8.kubernetes.api.model.LoadBalancerIngressFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import java.lang.StringBuffer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.lang.StringBuilder;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class LoadBalancerIngressFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements LoadBalancerIngressFluent{
private String hostname;
private String ip;
public LoadBalancerIngressFluentImpl(){
}
public LoadBalancerIngressFluentImpl(LoadBalancerIngress instance){
this.withHostname(instance.getHostname());
this.withIp(instance.getIp());
}
public String getHostname(){
return this.hostname;
}
public A withHostname(String hostname){
this.hostname=hostname; return (A) this;
}
public Boolean hasHostname(){
return this.hostname != null;
}
public A withNewHostname(String arg1){
return (A)withHostname(new String(arg1));
}
public A withNewHostname(StringBuilder arg1){
return (A)withHostname(new String(arg1));
}
public A withNewHostname(StringBuffer arg1){
return (A)withHostname(new String(arg1));
}
public String getIp(){
return this.ip;
}
public A withIp(String ip){
this.ip=ip; return (A) this;
}
public Boolean hasIp(){
return this.ip != null;
}
public A withNewIp(String arg1){
return (A)withIp(new String(arg1));
}
public A withNewIp(StringBuilder arg1){
return (A)withIp(new String(arg1));
}
public A withNewIp(StringBuffer arg1){
return (A)withIp(new String(arg1));
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
LoadBalancerIngressFluentImpl that = (LoadBalancerIngressFluentImpl) o;
if (hostname != null ? !hostname.equals(that.hostname) :that.hostname != null) return false;
if (ip != null ? !ip.equals(that.ip) :that.ip != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy