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

io.alauda.kubernetes.api.model.PersistentVolumeClaimSpecBuilder 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 PersistentVolumeClaimSpecBuilder extends PersistentVolumeClaimSpecFluentImpl implements VisitableBuilder{

    PersistentVolumeClaimSpecFluent fluent;
    Boolean validationEnabled;

    public PersistentVolumeClaimSpecBuilder(){
            this(true);
    }
    public PersistentVolumeClaimSpecBuilder(Boolean validationEnabled){
            this(new PersistentVolumeClaimSpec(), validationEnabled);
    }
    public PersistentVolumeClaimSpecBuilder(PersistentVolumeClaimSpecFluent fluent){
            this(fluent, true);
    }
    public PersistentVolumeClaimSpecBuilder(PersistentVolumeClaimSpecFluent fluent,Boolean validationEnabled){
            this(fluent, new PersistentVolumeClaimSpec(), validationEnabled);
    }
    public PersistentVolumeClaimSpecBuilder(PersistentVolumeClaimSpecFluent fluent,PersistentVolumeClaimSpec instance){
            this(fluent, instance, true);
    }
    public PersistentVolumeClaimSpecBuilder(PersistentVolumeClaimSpecFluent fluent,PersistentVolumeClaimSpec instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withAccessModes(instance.getAccessModes()); 
            fluent.withResources(instance.getResources()); 
            fluent.withSelector(instance.getSelector()); 
            fluent.withStorageClassName(instance.getStorageClassName()); 
            fluent.withVolumeName(instance.getVolumeName()); 
            this.validationEnabled = validationEnabled; 
    }
    public PersistentVolumeClaimSpecBuilder(PersistentVolumeClaimSpec instance){
            this(instance,true);
    }
    public PersistentVolumeClaimSpecBuilder(PersistentVolumeClaimSpec instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withAccessModes(instance.getAccessModes()); 
            this.withResources(instance.getResources()); 
            this.withSelector(instance.getSelector()); 
            this.withStorageClassName(instance.getStorageClassName()); 
            this.withVolumeName(instance.getVolumeName()); 
            this.validationEnabled = validationEnabled; 
    }

    public PersistentVolumeClaimSpec build(){
            PersistentVolumeClaimSpec buildable = new PersistentVolumeClaimSpec(fluent.getAccessModes(),fluent.getResources(),fluent.getSelector(),fluent.getStorageClassName(),fluent.getVolumeName());
            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;
            PersistentVolumeClaimSpecBuilder that = (PersistentVolumeClaimSpecBuilder) 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