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

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

    NamedClusterFluent fluent;
    Boolean validationEnabled;

    public NamedClusterBuilder(){
            this(true);
    }
    public NamedClusterBuilder(Boolean validationEnabled){
            this(new NamedCluster(), validationEnabled);
    }
    public NamedClusterBuilder(NamedClusterFluent fluent){
            this(fluent, true);
    }
    public NamedClusterBuilder(NamedClusterFluent fluent,Boolean validationEnabled){
            this(fluent, new NamedCluster(), validationEnabled);
    }
    public NamedClusterBuilder(NamedClusterFluent fluent,NamedCluster instance){
            this(fluent, instance, true);
    }
    public NamedClusterBuilder(NamedClusterFluent fluent,NamedCluster instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withCluster(instance.getCluster()); 
            fluent.withName(instance.getName()); 
            this.validationEnabled = validationEnabled; 
    }
    public NamedClusterBuilder(NamedCluster instance){
            this(instance,true);
    }
    public NamedClusterBuilder(NamedCluster instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withCluster(instance.getCluster()); 
            this.withName(instance.getName()); 
            this.validationEnabled = validationEnabled; 
    }

    public NamedCluster build(){
            NamedCluster buildable = new NamedCluster(fluent.getCluster(),fluent.getName());
            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;
            NamedClusterBuilder that = (NamedClusterBuilder) 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