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

io.kubernetes.client.openapi.models.ExtensionsV1beta1IngressBackendBuilder Maven / Gradle / Ivy

There is a newer version: 22.0.0
Show newest version
package io.kubernetes.client.openapi.models;

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

public class ExtensionsV1beta1IngressBackendBuilder extends ExtensionsV1beta1IngressBackendFluentImpl implements VisitableBuilder {

    ExtensionsV1beta1IngressBackendFluent fluent;
    Boolean validationEnabled;

    public ExtensionsV1beta1IngressBackendBuilder() { 
        this(true);
    }


    public ExtensionsV1beta1IngressBackendBuilder(Boolean validationEnabled) { 
        this(new ExtensionsV1beta1IngressBackend(), validationEnabled);
    }


    public ExtensionsV1beta1IngressBackendBuilder(ExtensionsV1beta1IngressBackendFluent fluent) { 
        this(fluent, true);
    }


    public ExtensionsV1beta1IngressBackendBuilder(ExtensionsV1beta1IngressBackendFluent fluent,Boolean validationEnabled) { 
        this(fluent, new ExtensionsV1beta1IngressBackend(), validationEnabled);
    }


    public ExtensionsV1beta1IngressBackendBuilder(ExtensionsV1beta1IngressBackendFluent fluent,ExtensionsV1beta1IngressBackend instance) { 
        this(fluent, instance, true);
    }


    public ExtensionsV1beta1IngressBackendBuilder(ExtensionsV1beta1IngressBackendFluent fluent,ExtensionsV1beta1IngressBackend instance,Boolean validationEnabled) { 
        this.fluent = fluent; 
        fluent.withResource(instance.getResource());

        fluent.withServiceName(instance.getServiceName());

        fluent.withServicePort(instance.getServicePort());

        this.validationEnabled = validationEnabled; 
    }


    public ExtensionsV1beta1IngressBackendBuilder(ExtensionsV1beta1IngressBackend instance) { 
        this(instance,true);
    }


    public ExtensionsV1beta1IngressBackendBuilder(ExtensionsV1beta1IngressBackend instance,Boolean validationEnabled) { 
        this.fluent = this; 
        this.withResource(instance.getResource());

        this.withServiceName(instance.getServiceName());

        this.withServicePort(instance.getServicePort());

        this.validationEnabled = validationEnabled; 
    }


    public ExtensionsV1beta1IngressBackend build() {
        ExtensionsV1beta1IngressBackend buildable = new ExtensionsV1beta1IngressBackend();
        buildable.setResource(fluent.getResource());
        buildable.setServiceName(fluent.getServiceName());
        buildable.setServicePort(fluent.getServicePort());
        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;
        ExtensionsV1beta1IngressBackendBuilder that = (ExtensionsV1beta1IngressBackendBuilder) 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;
    }

    public int hashCode() {
        return java.util.Objects.hash(fluent,  validationEnabled,  super.hashCode());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy