annotations.me.snowdrop.applicationcrd.api.model.IngressSelectorBuilder Maven / Gradle / Ivy
package me.snowdrop.applicationcrd.api.model;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
import javax.validation.Validator;
public class IngressSelectorBuilder extends IngressSelectorFluentImpl implements VisitableBuilder{
IngressSelectorFluent> fluent;
Boolean validationEnabled;
Validator validator;
public IngressSelectorBuilder(){
this(true);
}
public IngressSelectorBuilder(Boolean validationEnabled){
this(new IngressSelector(), validationEnabled);
}
public IngressSelectorBuilder(IngressSelectorFluent> fluent){
this(fluent, true);
}
public IngressSelectorBuilder(IngressSelectorFluent> fluent,Boolean validationEnabled){
this(fluent, new IngressSelector(), validationEnabled);
}
public IngressSelectorBuilder(IngressSelectorFluent> fluent,IngressSelector instance){
this(fluent, instance, true);
}
public IngressSelectorBuilder(IngressSelectorFluent> fluent,IngressSelector instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withApiVersion(instance.getApiVersion());
fluent.withFieldPath(instance.getFieldPath());
fluent.withHost(instance.getHost());
fluent.withKind(instance.getKind());
fluent.withName(instance.getName());
fluent.withNamespace(instance.getNamespace());
fluent.withPath(instance.getPath());
fluent.withResourceVersion(instance.getResourceVersion());
fluent.withUid(instance.getUid());
this.validationEnabled = validationEnabled;
}
public IngressSelectorBuilder(IngressSelector instance){
this(instance,true);
}
public IngressSelectorBuilder(IngressSelector instance,Boolean validationEnabled){
this.fluent = this;
this.withApiVersion(instance.getApiVersion());
this.withFieldPath(instance.getFieldPath());
this.withHost(instance.getHost());
this.withKind(instance.getKind());
this.withName(instance.getName());
this.withNamespace(instance.getNamespace());
this.withPath(instance.getPath());
this.withResourceVersion(instance.getResourceVersion());
this.withUid(instance.getUid());
this.validationEnabled = validationEnabled;
}
public IngressSelectorBuilder(Validator validator){
this(new IngressSelector(), true);
}
public IngressSelectorBuilder(IngressSelectorFluent> fluent,IngressSelector instance,Validator validator){
this.fluent = fluent;
fluent.withApiVersion(instance.getApiVersion());
fluent.withFieldPath(instance.getFieldPath());
fluent.withHost(instance.getHost());
fluent.withKind(instance.getKind());
fluent.withName(instance.getName());
fluent.withNamespace(instance.getNamespace());
fluent.withPath(instance.getPath());
fluent.withResourceVersion(instance.getResourceVersion());
fluent.withUid(instance.getUid());
this.validator = validator;
this.validationEnabled = validator != null;
}
public IngressSelectorBuilder(IngressSelector instance,Validator validator){
this.fluent = this;
this.withApiVersion(instance.getApiVersion());
this.withFieldPath(instance.getFieldPath());
this.withHost(instance.getHost());
this.withKind(instance.getKind());
this.withName(instance.getName());
this.withNamespace(instance.getNamespace());
this.withPath(instance.getPath());
this.withResourceVersion(instance.getResourceVersion());
this.withUid(instance.getUid());
this.validator = validator;
this.validationEnabled = validator != null;
}
public IngressSelector build(){
IngressSelector buildable = new IngressSelector(fluent.getApiVersion(),fluent.getFieldPath(),fluent.getHost(),fluent.getKind(),fluent.getName(),fluent.getNamespace(),fluent.getPath(),fluent.getResourceVersion(),fluent.getUid());
if (validationEnabled) {io.fabric8.kubernetes.api.builder.ValidationUtils.validate(buildable, validator);}
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;
IngressSelectorBuilder that = (IngressSelectorBuilder) 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;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy