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

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

    EnvVarFluent fluent;
    Boolean validationEnabled;

    public EnvVarBuilder(){
            this(true);
    }
    public EnvVarBuilder(Boolean validationEnabled){
            this(new EnvVar(), validationEnabled);
    }
    public EnvVarBuilder(EnvVarFluent fluent){
            this(fluent, true);
    }
    public EnvVarBuilder(EnvVarFluent fluent,Boolean validationEnabled){
            this(fluent, new EnvVar(), validationEnabled);
    }
    public EnvVarBuilder(EnvVarFluent fluent,EnvVar instance){
            this(fluent, instance, true);
    }
    public EnvVarBuilder(EnvVarFluent fluent,EnvVar instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withName(instance.getName()); 
            fluent.withValue(instance.getValue()); 
            fluent.withValueFrom(instance.getValueFrom()); 
            this.validationEnabled = validationEnabled; 
    }
    public EnvVarBuilder(EnvVar instance){
            this(instance,true);
    }
    public EnvVarBuilder(EnvVar instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withName(instance.getName()); 
            this.withValue(instance.getValue()); 
            this.withValueFrom(instance.getValueFrom()); 
            this.validationEnabled = validationEnabled; 
    }

    public EnvVar build(){
            EnvVar buildable = new EnvVar(fluent.getName(),fluent.getValue(),fluent.getValueFrom());
            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;
            EnvVarBuilder that = (EnvVarBuilder) 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