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

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

    PipelineCauseFluent fluent;
    Boolean validationEnabled;

    public PipelineCauseBuilder(){
            this(true);
    }
    public PipelineCauseBuilder(Boolean validationEnabled){
            this(new PipelineCause(), validationEnabled);
    }
    public PipelineCauseBuilder(PipelineCauseFluent fluent){
            this(fluent, true);
    }
    public PipelineCauseBuilder(PipelineCauseFluent fluent,Boolean validationEnabled){
            this(fluent, new PipelineCause(), validationEnabled);
    }
    public PipelineCauseBuilder(PipelineCauseFluent fluent,PipelineCause instance){
            this(fluent, instance, true);
    }
    public PipelineCauseBuilder(PipelineCauseFluent fluent,PipelineCause instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withMessage(instance.getMessage()); 
            fluent.withType(instance.getType()); 
            this.validationEnabled = validationEnabled; 
    }
    public PipelineCauseBuilder(PipelineCause instance){
            this(instance,true);
    }
    public PipelineCauseBuilder(PipelineCause instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withMessage(instance.getMessage()); 
            this.withType(instance.getType()); 
            this.validationEnabled = validationEnabled; 
    }

    public PipelineCause build(){
            PipelineCause buildable = new PipelineCause(fluent.getMessage(),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;
            PipelineCauseBuilder that = (PipelineCauseBuilder) 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