annotations.me.snowdrop.applicationcrd.api.model.SecretKeySelectorBuilder 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 SecretKeySelectorBuilder extends SecretKeySelectorFluentImpl implements VisitableBuilder{
SecretKeySelectorFluent> fluent;
Boolean validationEnabled;
Validator validator;
public SecretKeySelectorBuilder(){
this(true);
}
public SecretKeySelectorBuilder(Boolean validationEnabled){
this(new SecretKeySelector(), validationEnabled);
}
public SecretKeySelectorBuilder(SecretKeySelectorFluent> fluent){
this(fluent, true);
}
public SecretKeySelectorBuilder(SecretKeySelectorFluent> fluent,Boolean validationEnabled){
this(fluent, new SecretKeySelector(), validationEnabled);
}
public SecretKeySelectorBuilder(SecretKeySelectorFluent> fluent,SecretKeySelector instance){
this(fluent, instance, true);
}
public SecretKeySelectorBuilder(SecretKeySelectorFluent> fluent,SecretKeySelector instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withApiVersion(instance.getApiVersion());
fluent.withFieldPath(instance.getFieldPath());
fluent.withKey(instance.getKey());
fluent.withKind(instance.getKind());
fluent.withName(instance.getName());
fluent.withNamespace(instance.getNamespace());
fluent.withResourceVersion(instance.getResourceVersion());
fluent.withUid(instance.getUid());
this.validationEnabled = validationEnabled;
}
public SecretKeySelectorBuilder(SecretKeySelector instance){
this(instance,true);
}
public SecretKeySelectorBuilder(SecretKeySelector instance,Boolean validationEnabled){
this.fluent = this;
this.withApiVersion(instance.getApiVersion());
this.withFieldPath(instance.getFieldPath());
this.withKey(instance.getKey());
this.withKind(instance.getKind());
this.withName(instance.getName());
this.withNamespace(instance.getNamespace());
this.withResourceVersion(instance.getResourceVersion());
this.withUid(instance.getUid());
this.validationEnabled = validationEnabled;
}
public SecretKeySelectorBuilder(Validator validator){
this(new SecretKeySelector(), true);
}
public SecretKeySelectorBuilder(SecretKeySelectorFluent> fluent,SecretKeySelector instance,Validator validator){
this.fluent = fluent;
fluent.withApiVersion(instance.getApiVersion());
fluent.withFieldPath(instance.getFieldPath());
fluent.withKey(instance.getKey());
fluent.withKind(instance.getKind());
fluent.withName(instance.getName());
fluent.withNamespace(instance.getNamespace());
fluent.withResourceVersion(instance.getResourceVersion());
fluent.withUid(instance.getUid());
this.validator = validator;
this.validationEnabled = validator != null;
}
public SecretKeySelectorBuilder(SecretKeySelector instance,Validator validator){
this.fluent = this;
this.withApiVersion(instance.getApiVersion());
this.withFieldPath(instance.getFieldPath());
this.withKey(instance.getKey());
this.withKind(instance.getKind());
this.withName(instance.getName());
this.withNamespace(instance.getNamespace());
this.withResourceVersion(instance.getResourceVersion());
this.withUid(instance.getUid());
this.validator = validator;
this.validationEnabled = validator != null;
}
public SecretKeySelector build(){
SecretKeySelector buildable = new SecretKeySelector(fluent.getApiVersion(),fluent.getFieldPath(),fluent.getKey(),fluent.getKind(),fluent.getName(),fluent.getNamespace(),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;
SecretKeySelectorBuilder that = (SecretKeySelectorBuilder) 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