io.kubernetes.client.openapi.models.V1beta1ServiceAccountSubjectBuilder Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class V1beta1ServiceAccountSubjectBuilder extends V1beta1ServiceAccountSubjectFluentImpl implements VisitableBuilder {
V1beta1ServiceAccountSubjectFluent> fluent;
Boolean validationEnabled;
public V1beta1ServiceAccountSubjectBuilder() {
this(true);
}
public V1beta1ServiceAccountSubjectBuilder(Boolean validationEnabled) {
this(new V1beta1ServiceAccountSubject(), validationEnabled);
}
public V1beta1ServiceAccountSubjectBuilder(V1beta1ServiceAccountSubjectFluent> fluent) {
this(fluent, true);
}
public V1beta1ServiceAccountSubjectBuilder(V1beta1ServiceAccountSubjectFluent> fluent,Boolean validationEnabled) {
this(fluent, new V1beta1ServiceAccountSubject(), validationEnabled);
}
public V1beta1ServiceAccountSubjectBuilder(V1beta1ServiceAccountSubjectFluent> fluent,V1beta1ServiceAccountSubject instance) {
this(fluent, instance, true);
}
public V1beta1ServiceAccountSubjectBuilder(V1beta1ServiceAccountSubjectFluent> fluent,V1beta1ServiceAccountSubject instance,Boolean validationEnabled) {
this.fluent = fluent;
fluent.withName(instance.getName());
fluent.withNamespace(instance.getNamespace());
this.validationEnabled = validationEnabled;
}
public V1beta1ServiceAccountSubjectBuilder(V1beta1ServiceAccountSubject instance) {
this(instance,true);
}
public V1beta1ServiceAccountSubjectBuilder(V1beta1ServiceAccountSubject instance,Boolean validationEnabled) {
this.fluent = this;
this.withName(instance.getName());
this.withNamespace(instance.getNamespace());
this.validationEnabled = validationEnabled;
}
public V1beta1ServiceAccountSubject build() {
V1beta1ServiceAccountSubject buildable = new V1beta1ServiceAccountSubject();
buildable.setName(fluent.getName());
buildable.setNamespace(fluent.getNamespace());
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;
V1beta1ServiceAccountSubjectBuilder that = (V1beta1ServiceAccountSubjectBuilder) 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;
}
public int hashCode() {
return java.util.Objects.hash(fluent, validationEnabled, super.hashCode());
}
}