
io.kubernetes.client.models.V1CSIPersistentVolumeSourceBuilder Maven / Gradle / Ivy
package io.kubernetes.client.models;
import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class V1CSIPersistentVolumeSourceBuilder extends V1CSIPersistentVolumeSourceFluentImpl implements VisitableBuilder{
V1CSIPersistentVolumeSourceFluent> fluent;
Boolean validationEnabled;
public V1CSIPersistentVolumeSourceBuilder(){
this(true);
}
public V1CSIPersistentVolumeSourceBuilder(Boolean validationEnabled){
this(new V1CSIPersistentVolumeSource(), validationEnabled);
}
public V1CSIPersistentVolumeSourceBuilder(V1CSIPersistentVolumeSourceFluent> fluent){
this(fluent, true);
}
public V1CSIPersistentVolumeSourceBuilder(V1CSIPersistentVolumeSourceFluent> fluent,Boolean validationEnabled){
this(fluent, new V1CSIPersistentVolumeSource(), validationEnabled);
}
public V1CSIPersistentVolumeSourceBuilder(V1CSIPersistentVolumeSourceFluent> fluent,V1CSIPersistentVolumeSource instance){
this(fluent, instance, true);
}
public V1CSIPersistentVolumeSourceBuilder(V1CSIPersistentVolumeSourceFluent> fluent,V1CSIPersistentVolumeSource instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withControllerPublishSecretRef(instance.getControllerPublishSecretRef());
fluent.withDriver(instance.getDriver());
fluent.withFsType(instance.getFsType());
fluent.withNodePublishSecretRef(instance.getNodePublishSecretRef());
fluent.withNodeStageSecretRef(instance.getNodeStageSecretRef());
fluent.withReadOnly(instance.isReadOnly());
fluent.withVolumeAttributes(instance.getVolumeAttributes());
fluent.withVolumeHandle(instance.getVolumeHandle());
this.validationEnabled = validationEnabled;
}
public V1CSIPersistentVolumeSourceBuilder(V1CSIPersistentVolumeSource instance){
this(instance,true);
}
public V1CSIPersistentVolumeSourceBuilder(V1CSIPersistentVolumeSource instance,Boolean validationEnabled){
this.fluent = this;
this.withControllerPublishSecretRef(instance.getControllerPublishSecretRef());
this.withDriver(instance.getDriver());
this.withFsType(instance.getFsType());
this.withNodePublishSecretRef(instance.getNodePublishSecretRef());
this.withNodeStageSecretRef(instance.getNodeStageSecretRef());
this.withReadOnly(instance.isReadOnly());
this.withVolumeAttributes(instance.getVolumeAttributes());
this.withVolumeHandle(instance.getVolumeHandle());
this.validationEnabled = validationEnabled;
}
public V1CSIPersistentVolumeSource build(){
V1CSIPersistentVolumeSource buildable = new V1CSIPersistentVolumeSource();
buildable.setControllerPublishSecretRef(fluent.getControllerPublishSecretRef());
buildable.setDriver(fluent.getDriver());
buildable.setFsType(fluent.getFsType());
buildable.setNodePublishSecretRef(fluent.getNodePublishSecretRef());
buildable.setNodeStageSecretRef(fluent.getNodeStageSecretRef());
buildable.setReadOnly(fluent.isReadOnly());
buildable.setVolumeAttributes(fluent.getVolumeAttributes());
buildable.setVolumeHandle(fluent.getVolumeHandle());
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;
V1CSIPersistentVolumeSourceBuilder that = (V1CSIPersistentVolumeSourceBuilder) 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