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

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

    NodeDaemonEndpointsFluent fluent;
    Boolean validationEnabled;

    public NodeDaemonEndpointsBuilder(){
            this(true);
    }
    public NodeDaemonEndpointsBuilder(Boolean validationEnabled){
            this(new NodeDaemonEndpoints(), validationEnabled);
    }
    public NodeDaemonEndpointsBuilder(NodeDaemonEndpointsFluent fluent){
            this(fluent, true);
    }
    public NodeDaemonEndpointsBuilder(NodeDaemonEndpointsFluent fluent,Boolean validationEnabled){
            this(fluent, new NodeDaemonEndpoints(), validationEnabled);
    }
    public NodeDaemonEndpointsBuilder(NodeDaemonEndpointsFluent fluent,NodeDaemonEndpoints instance){
            this(fluent, instance, true);
    }
    public NodeDaemonEndpointsBuilder(NodeDaemonEndpointsFluent fluent,NodeDaemonEndpoints instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withKubeletEndpoint(instance.getKubeletEndpoint()); 
            this.validationEnabled = validationEnabled; 
    }
    public NodeDaemonEndpointsBuilder(NodeDaemonEndpoints instance){
            this(instance,true);
    }
    public NodeDaemonEndpointsBuilder(NodeDaemonEndpoints instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withKubeletEndpoint(instance.getKubeletEndpoint()); 
            this.validationEnabled = validationEnabled; 
    }

    public NodeDaemonEndpoints build(){
            NodeDaemonEndpoints buildable = new NodeDaemonEndpoints(fluent.getKubeletEndpoint());
            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;
            NodeDaemonEndpointsBuilder that = (NodeDaemonEndpointsBuilder) 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