me.snowdrop.istio.api.networking.v1beta1.GatewayBuilder Maven / Gradle / Ivy
package me.snowdrop.istio.api.networking.v1beta1;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class GatewayBuilder extends me.snowdrop.istio.api.networking.v1beta1.GatewayFluentImpl implements VisitableBuilder{
me.snowdrop.istio.api.networking.v1beta1.GatewayFluent> fluent;
Boolean validationEnabled;
public GatewayBuilder(){
this(true);
}
public GatewayBuilder(Boolean validationEnabled){
this(new Gateway(), validationEnabled);
}
public GatewayBuilder(me.snowdrop.istio.api.networking.v1beta1.GatewayFluent> fluent){
this(fluent, true);
}
public GatewayBuilder(me.snowdrop.istio.api.networking.v1beta1.GatewayFluent> fluent,Boolean validationEnabled){
this(fluent, new Gateway(), validationEnabled);
}
public GatewayBuilder(me.snowdrop.istio.api.networking.v1beta1.GatewayFluent> fluent,me.snowdrop.istio.api.networking.v1beta1.Gateway instance){
this(fluent, instance, true);
}
public GatewayBuilder(me.snowdrop.istio.api.networking.v1beta1.GatewayFluent> fluent,me.snowdrop.istio.api.networking.v1beta1.Gateway instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withApiVersion(instance.getApiVersion());
fluent.withKind(instance.getKind());
fluent.withMetadata(instance.getMetadata());
fluent.withSpec(instance.getSpec());
this.validationEnabled = validationEnabled;
}
public GatewayBuilder(me.snowdrop.istio.api.networking.v1beta1.Gateway instance){
this(instance,true);
}
public GatewayBuilder(me.snowdrop.istio.api.networking.v1beta1.Gateway instance,Boolean validationEnabled){
this.fluent = this;
this.withApiVersion(instance.getApiVersion());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
this.withSpec(instance.getSpec());
this.validationEnabled = validationEnabled;
}
public me.snowdrop.istio.api.networking.v1beta1.Gateway build(){
Gateway buildable = new Gateway(fluent.getApiVersion(),fluent.getKind(),fluent.getMetadata(),fluent.getSpec());
return buildable;
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
GatewayBuilder that = (GatewayBuilder) o;
if (fluent != null &&fluent != this ? !fluent.equals(that.fluent) :that.fluent != null &&fluent != this ) return false;
if (validationEnabled != null ? !validationEnabled.equals(that.validationEnabled) :that.validationEnabled != null) return false;
return true;
}
}