
io.kubernetes.client.models.PolicyV1beta1AllowedHostPathBuilder Maven / Gradle / Ivy
package io.kubernetes.client.models;
import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class PolicyV1beta1AllowedHostPathBuilder extends PolicyV1beta1AllowedHostPathFluentImpl implements VisitableBuilder{
PolicyV1beta1AllowedHostPathFluent> fluent;
Boolean validationEnabled;
public PolicyV1beta1AllowedHostPathBuilder(){
this(true);
}
public PolicyV1beta1AllowedHostPathBuilder(Boolean validationEnabled){
this(new PolicyV1beta1AllowedHostPath(), validationEnabled);
}
public PolicyV1beta1AllowedHostPathBuilder(PolicyV1beta1AllowedHostPathFluent> fluent){
this(fluent, true);
}
public PolicyV1beta1AllowedHostPathBuilder(PolicyV1beta1AllowedHostPathFluent> fluent,Boolean validationEnabled){
this(fluent, new PolicyV1beta1AllowedHostPath(), validationEnabled);
}
public PolicyV1beta1AllowedHostPathBuilder(PolicyV1beta1AllowedHostPathFluent> fluent,PolicyV1beta1AllowedHostPath instance){
this(fluent, instance, true);
}
public PolicyV1beta1AllowedHostPathBuilder(PolicyV1beta1AllowedHostPathFluent> fluent,PolicyV1beta1AllowedHostPath instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withPathPrefix(instance.getPathPrefix());
fluent.withReadOnly(instance.isReadOnly());
this.validationEnabled = validationEnabled;
}
public PolicyV1beta1AllowedHostPathBuilder(PolicyV1beta1AllowedHostPath instance){
this(instance,true);
}
public PolicyV1beta1AllowedHostPathBuilder(PolicyV1beta1AllowedHostPath instance,Boolean validationEnabled){
this.fluent = this;
this.withPathPrefix(instance.getPathPrefix());
this.withReadOnly(instance.isReadOnly());
this.validationEnabled = validationEnabled;
}
public PolicyV1beta1AllowedHostPath build(){
PolicyV1beta1AllowedHostPath buildable = new PolicyV1beta1AllowedHostPath();
buildable.setPathPrefix(fluent.getPathPrefix());
buildable.setReadOnly(fluent.isReadOnly());
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;
PolicyV1beta1AllowedHostPathBuilder that = (PolicyV1beta1AllowedHostPathBuilder) 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