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

annotations.io.alauda.kubernetes.api.model.ProjectedVolumeSourceBuilder 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 ProjectedVolumeSourceBuilder extends ProjectedVolumeSourceFluentImpl implements VisitableBuilder{

    ProjectedVolumeSourceFluent fluent;
    Boolean validationEnabled;

    public ProjectedVolumeSourceBuilder(){
            this(true);
    }
    public ProjectedVolumeSourceBuilder(Boolean validationEnabled){
            this(new ProjectedVolumeSource(), validationEnabled);
    }
    public ProjectedVolumeSourceBuilder(ProjectedVolumeSourceFluent fluent){
            this(fluent, true);
    }
    public ProjectedVolumeSourceBuilder(ProjectedVolumeSourceFluent fluent,Boolean validationEnabled){
            this(fluent, new ProjectedVolumeSource(), validationEnabled);
    }
    public ProjectedVolumeSourceBuilder(ProjectedVolumeSourceFluent fluent,ProjectedVolumeSource instance){
            this(fluent, instance, true);
    }
    public ProjectedVolumeSourceBuilder(ProjectedVolumeSourceFluent fluent,ProjectedVolumeSource instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withDefaultMode(instance.getDefaultMode()); 
            fluent.withSources(instance.getSources()); 
            this.validationEnabled = validationEnabled; 
    }
    public ProjectedVolumeSourceBuilder(ProjectedVolumeSource instance){
            this(instance,true);
    }
    public ProjectedVolumeSourceBuilder(ProjectedVolumeSource instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withDefaultMode(instance.getDefaultMode()); 
            this.withSources(instance.getSources()); 
            this.validationEnabled = validationEnabled; 
    }

    public ProjectedVolumeSource build(){
            ProjectedVolumeSource buildable = new ProjectedVolumeSource(fluent.getDefaultMode(),fluent.getSources());
            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;
            ProjectedVolumeSourceBuilder that = (ProjectedVolumeSourceBuilder) 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