me.snowdrop.istio.api.networking.v1alpha3.SimpleLbPolicyFluentImpl Maven / Gradle / Ivy
package me.snowdrop.istio.api.networking.v1alpha3;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
public class SimpleLbPolicyFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements SimpleLbPolicyFluent{
private SimpleLB simple;
public SimpleLbPolicyFluentImpl(){
}
public SimpleLbPolicyFluentImpl(SimpleLbPolicy instance){
this.withSimple(instance.getSimple());
}
public SimpleLB getSimple(){
return this.simple;
}
public A withSimple(SimpleLB simple){
this.simple=simple; return (A) this;
}
public Boolean hasSimple(){
return this.simple != 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;
SimpleLbPolicyFluentImpl that = (SimpleLbPolicyFluentImpl) o;
if (simple != null ? !simple.equals(that.simple) :that.simple != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy