
annotations.me.snowdrop.applicationcrd.api.model.ServiceSelectorBuilder Maven / Gradle / Ivy
The newest version!
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 ServiceSelectorBuilder extends ServiceSelectorFluentImpl implements VisitableBuilder{
ServiceSelectorFluent> fluent;
Boolean validationEnabled;
Validator validator;
public ServiceSelectorBuilder(){
this(true);
}
public ServiceSelectorBuilder(Boolean validationEnabled){
this(new ServiceSelector(), validationEnabled);
}
public ServiceSelectorBuilder(ServiceSelectorFluent> fluent){
this(fluent, true);
}
public ServiceSelectorBuilder(ServiceSelectorFluent> fluent,Boolean validationEnabled){
this(fluent, new ServiceSelector(), validationEnabled);
}
public ServiceSelectorBuilder(ServiceSelectorFluent> fluent,ServiceSelector instance){
this(fluent, instance, true);
}
public ServiceSelectorBuilder(ServiceSelectorFluent> fluent,ServiceSelector instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withApiVersion(instance.getApiVersion());
fluent.withFieldPath(instance.getFieldPath());
fluent.withKind(instance.getKind());
fluent.withName(instance.getName());
fluent.withNamespace(instance.getNamespace());
fluent.withPath(instance.getPath());
fluent.withPort(instance.getPort());
fluent.withResourceVersion(instance.getResourceVersion());
fluent.withUid(instance.getUid());
this.validationEnabled = validationEnabled;
}
public ServiceSelectorBuilder(ServiceSelector instance){
this(instance,true);
}
public ServiceSelectorBuilder(ServiceSelector instance,Boolean validationEnabled){
this.fluent = this;
this.withApiVersion(instance.getApiVersion());
this.withFieldPath(instance.getFieldPath());
this.withKind(instance.getKind());
this.withName(instance.getName());
this.withNamespace(instance.getNamespace());
this.withPath(instance.getPath());
this.withPort(instance.getPort());
this.withResourceVersion(instance.getResourceVersion());
this.withUid(instance.getUid());
this.validationEnabled = validationEnabled;
}
public ServiceSelectorBuilder(Validator validator){
this(new ServiceSelector(), true);
}
public ServiceSelectorBuilder(ServiceSelectorFluent> fluent,ServiceSelector instance,Validator validator){
this.fluent = fluent;
fluent.withApiVersion(instance.getApiVersion());
fluent.withFieldPath(instance.getFieldPath());
fluent.withKind(instance.getKind());
fluent.withName(instance.getName());
fluent.withNamespace(instance.getNamespace());
fluent.withPath(instance.getPath());
fluent.withPort(instance.getPort());
fluent.withResourceVersion(instance.getResourceVersion());
fluent.withUid(instance.getUid());
this.validator = validator;
this.validationEnabled = validator != null;
}
public ServiceSelectorBuilder(ServiceSelector instance,Validator validator){
this.fluent = this;
this.withApiVersion(instance.getApiVersion());
this.withFieldPath(instance.getFieldPath());
this.withKind(instance.getKind());
this.withName(instance.getName());
this.withNamespace(instance.getNamespace());
this.withPath(instance.getPath());
this.withPort(instance.getPort());
this.withResourceVersion(instance.getResourceVersion());
this.withUid(instance.getUid());
this.validator = validator;
this.validationEnabled = validator != null;
}
public ServiceSelector build(){
ServiceSelector buildable = new ServiceSelector(fluent.getApiVersion(),fluent.getFieldPath(),fluent.getKind(),fluent.getName(),fluent.getNamespace(),fluent.getPath(),fluent.getPort(),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;
ServiceSelectorBuilder that = (ServiceSelectorBuilder) 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 - 2025 Weber Informatics LLC | Privacy Policy