annotations.io.alauda.kubernetes.api.model.HostPortFluentImpl Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.alauda.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class HostPortFluentImpl> extends io.alauda.kubernetes.api.builder.BaseFluent implements HostPortFluent{
private String host;
public HostPortFluentImpl(){
}
public HostPortFluentImpl(HostPort instance){
this.withHost(instance.getHost());
}
public String getHost(){
return this.host;
}
public A withHost(String host){
this.host=host; return (A) this;
}
public Boolean hasHost(){
return this.host!=null;
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
HostPortFluentImpl that = (HostPortFluentImpl) o;
if (host != null ? !host.equals(that.host) :that.host != null) return false;
return true;
}
}