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

io.kubernetes.client.models.V1APIServiceSpecBuilder Maven / Gradle / Ivy

package io.kubernetes.client.models;

import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;

public class V1APIServiceSpecBuilder extends V1APIServiceSpecFluentImpl implements VisitableBuilder{

    V1APIServiceSpecFluent fluent;
    Boolean validationEnabled;

    public V1APIServiceSpecBuilder(){
            this(true);
    }
    public V1APIServiceSpecBuilder(Boolean validationEnabled){
            this(new V1APIServiceSpec(), validationEnabled);
    }
    public V1APIServiceSpecBuilder(V1APIServiceSpecFluent fluent){
            this(fluent, true);
    }
    public V1APIServiceSpecBuilder(V1APIServiceSpecFluent fluent,Boolean validationEnabled){
            this(fluent, new V1APIServiceSpec(), validationEnabled);
    }
    public V1APIServiceSpecBuilder(V1APIServiceSpecFluent fluent,V1APIServiceSpec instance){
            this(fluent, instance, true);
    }
    public V1APIServiceSpecBuilder(V1APIServiceSpecFluent fluent,V1APIServiceSpec instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withCaBundle(instance.getCaBundle());

            fluent.withGroup(instance.getGroup());

            fluent.withGroupPriorityMinimum(instance.getGroupPriorityMinimum());

            fluent.withInsecureSkipTLSVerify(instance.isInsecureSkipTLSVerify());

            fluent.withService(instance.getService());

            fluent.withVersion(instance.getVersion());

            fluent.withVersionPriority(instance.getVersionPriority());

            this.validationEnabled = validationEnabled; 
    }
    public V1APIServiceSpecBuilder(V1APIServiceSpec instance){
            this(instance,true);
    }
    public V1APIServiceSpecBuilder(V1APIServiceSpec instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withCaBundle(instance.getCaBundle());

            this.withGroup(instance.getGroup());

            this.withGroupPriorityMinimum(instance.getGroupPriorityMinimum());

            this.withInsecureSkipTLSVerify(instance.isInsecureSkipTLSVerify());

            this.withService(instance.getService());

            this.withVersion(instance.getVersion());

            this.withVersionPriority(instance.getVersionPriority());

            this.validationEnabled = validationEnabled; 
    }

    public V1APIServiceSpec build(){
            V1APIServiceSpec buildable = new V1APIServiceSpec();
            buildable.setCaBundle(fluent.getCaBundle());
            buildable.setGroup(fluent.getGroup());
            buildable.setGroupPriorityMinimum(fluent.getGroupPriorityMinimum());
            buildable.setInsecureSkipTLSVerify(fluent.isInsecureSkipTLSVerify());
            buildable.setService(fluent.getService());
            buildable.setVersion(fluent.getVersion());
            buildable.setVersionPriority(fluent.getVersionPriority());
            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;
            V1APIServiceSpecBuilder that = (V1APIServiceSpecBuilder) 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 - 2025 Weber Informatics LLC | Privacy Policy