All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.alauda.kubernetes.api.model.StorageOSPersistentVolumeSourceBuilder Maven / Gradle / Ivy

There is a newer version: 0.2.12
Show newest version
package io.alauda.kubernetes.api.model;

import io.alauda.kubernetes.api.builder.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;

public class StorageOSPersistentVolumeSourceBuilder extends StorageOSPersistentVolumeSourceFluentImpl implements VisitableBuilder{

    StorageOSPersistentVolumeSourceFluent fluent;
    Boolean validationEnabled;

    public StorageOSPersistentVolumeSourceBuilder(){
            this(true);
    }
    public StorageOSPersistentVolumeSourceBuilder(Boolean validationEnabled){
            this(new StorageOSPersistentVolumeSource(), validationEnabled);
    }
    public StorageOSPersistentVolumeSourceBuilder(StorageOSPersistentVolumeSourceFluent fluent){
            this(fluent, true);
    }
    public StorageOSPersistentVolumeSourceBuilder(StorageOSPersistentVolumeSourceFluent fluent,Boolean validationEnabled){
            this(fluent, new StorageOSPersistentVolumeSource(), validationEnabled);
    }
    public StorageOSPersistentVolumeSourceBuilder(StorageOSPersistentVolumeSourceFluent fluent,StorageOSPersistentVolumeSource instance){
            this(fluent, instance, true);
    }
    public StorageOSPersistentVolumeSourceBuilder(StorageOSPersistentVolumeSourceFluent fluent,StorageOSPersistentVolumeSource instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withFsType(instance.getFsType()); 
            fluent.withReadOnly(instance.getReadOnly()); 
            fluent.withSecretRef(instance.getSecretRef()); 
            fluent.withVolumeName(instance.getVolumeName()); 
            fluent.withVolumeNamespace(instance.getVolumeNamespace()); 
            this.validationEnabled = validationEnabled; 
    }
    public StorageOSPersistentVolumeSourceBuilder(StorageOSPersistentVolumeSource instance){
            this(instance,true);
    }
    public StorageOSPersistentVolumeSourceBuilder(StorageOSPersistentVolumeSource instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withFsType(instance.getFsType()); 
            this.withReadOnly(instance.getReadOnly()); 
            this.withSecretRef(instance.getSecretRef()); 
            this.withVolumeName(instance.getVolumeName()); 
            this.withVolumeNamespace(instance.getVolumeNamespace()); 
            this.validationEnabled = validationEnabled; 
    }

    public StorageOSPersistentVolumeSource build(){
            StorageOSPersistentVolumeSource buildable = new StorageOSPersistentVolumeSource(fluent.getFsType(),fluent.isReadOnly(),fluent.getSecretRef(),fluent.getVolumeName(),fluent.getVolumeNamespace());
            io.alauda.kubernetes.api.builder.ValidationUtils.validate(buildable);
            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;
            StorageOSPersistentVolumeSourceBuilder that = (StorageOSPersistentVolumeSourceBuilder) 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