annotations.me.snowdrop.servicecatalog.api.model.ServiceInstanceBuilder Maven / Gradle / Ivy
The newest version!
package me.snowdrop.servicecatalog.api.model;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
import javax.validation.Validator;
public class ServiceInstanceBuilder extends ServiceInstanceFluentImpl implements VisitableBuilder{
ServiceInstanceFluent> fluent;
Boolean validationEnabled;
Validator validator;
public ServiceInstanceBuilder(){
this(true);
}
public ServiceInstanceBuilder(Boolean validationEnabled){
this(new ServiceInstance(), validationEnabled);
}
public ServiceInstanceBuilder(ServiceInstanceFluent> fluent){
this(fluent, true);
}
public ServiceInstanceBuilder(ServiceInstanceFluent> fluent,Boolean validationEnabled){
this(fluent, new ServiceInstance(), validationEnabled);
}
public ServiceInstanceBuilder(ServiceInstanceFluent> fluent,ServiceInstance instance){
this(fluent, instance, true);
}
public ServiceInstanceBuilder(ServiceInstanceFluent> fluent,ServiceInstance instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withApiVersion(instance.getApiVersion());
fluent.withKind(instance.getKind());
fluent.withMetadata(instance.getMetadata());
fluent.withSpec(instance.getSpec());
fluent.withStatus(instance.getStatus());
this.validationEnabled = validationEnabled;
}
public ServiceInstanceBuilder(ServiceInstance instance){
this(instance,true);
}
public ServiceInstanceBuilder(ServiceInstance instance,Boolean validationEnabled){
this.fluent = this;
this.withApiVersion(instance.getApiVersion());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
this.withSpec(instance.getSpec());
this.withStatus(instance.getStatus());
this.validationEnabled = validationEnabled;
}
public ServiceInstanceBuilder(Validator validator){
this(new ServiceInstance(), true);
}
public ServiceInstanceBuilder(ServiceInstanceFluent> fluent,ServiceInstance instance,Validator validator){
this.fluent = fluent;
fluent.withApiVersion(instance.getApiVersion());
fluent.withKind(instance.getKind());
fluent.withMetadata(instance.getMetadata());
fluent.withSpec(instance.getSpec());
fluent.withStatus(instance.getStatus());
this.validator = validator;
this.validationEnabled = validator != null;
}
public ServiceInstanceBuilder(ServiceInstance instance,Validator validator){
this.fluent = this;
this.withApiVersion(instance.getApiVersion());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
this.withSpec(instance.getSpec());
this.withStatus(instance.getStatus());
this.validator = validator;
this.validationEnabled = validator != null;
}
public ServiceInstance build(){
ServiceInstance buildable = new ServiceInstance(fluent.getApiVersion(),fluent.getKind(),fluent.getMetadata(),fluent.getSpec(),fluent.getStatus());
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;
ServiceInstanceBuilder that = (ServiceInstanceBuilder) 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