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

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

    ProjectNamespaceFluent fluent;
    Boolean validationEnabled;

    public ProjectNamespaceBuilder(){
            this(true);
    }
    public ProjectNamespaceBuilder(Boolean validationEnabled){
            this(new ProjectNamespace(), validationEnabled);
    }
    public ProjectNamespaceBuilder(ProjectNamespaceFluent fluent){
            this(fluent, true);
    }
    public ProjectNamespaceBuilder(ProjectNamespaceFluent fluent,Boolean validationEnabled){
            this(fluent, new ProjectNamespace(), validationEnabled);
    }
    public ProjectNamespaceBuilder(ProjectNamespaceFluent fluent,ProjectNamespace instance){
            this(fluent, instance, true);
    }
    public ProjectNamespaceBuilder(ProjectNamespaceFluent fluent,ProjectNamespace instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withName(instance.getName()); 
            fluent.withType(instance.getType()); 
            this.validationEnabled = validationEnabled; 
    }
    public ProjectNamespaceBuilder(ProjectNamespace instance){
            this(instance,true);
    }
    public ProjectNamespaceBuilder(ProjectNamespace instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withName(instance.getName()); 
            this.withType(instance.getType()); 
            this.validationEnabled = validationEnabled; 
    }

    public ProjectNamespace build(){
            ProjectNamespace buildable = new ProjectNamespace(fluent.getName(),fluent.getType());
            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;
            ProjectNamespaceBuilder that = (ProjectNamespaceBuilder) 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