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

annotations.io.alauda.devops.api.model.BitbucketWebHookCauseBuilder Maven / Gradle / Ivy

There is a newer version: 0.2.12
Show newest version
package io.alauda.devops.api.model;

import io.alauda.kubernetes.api.builder.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;

public class BitbucketWebHookCauseBuilder extends BitbucketWebHookCauseFluentImpl implements VisitableBuilder{

    BitbucketWebHookCauseFluent fluent;
    Boolean validationEnabled;

    public BitbucketWebHookCauseBuilder(){
            this(true);
    }
    public BitbucketWebHookCauseBuilder(Boolean validationEnabled){
            this(new BitbucketWebHookCause(), validationEnabled);
    }
    public BitbucketWebHookCauseBuilder(BitbucketWebHookCauseFluent fluent){
            this(fluent, true);
    }
    public BitbucketWebHookCauseBuilder(BitbucketWebHookCauseFluent fluent,Boolean validationEnabled){
            this(fluent, new BitbucketWebHookCause(), validationEnabled);
    }
    public BitbucketWebHookCauseBuilder(BitbucketWebHookCauseFluent fluent,BitbucketWebHookCause instance){
            this(fluent, instance, true);
    }
    public BitbucketWebHookCauseBuilder(BitbucketWebHookCauseFluent fluent,BitbucketWebHookCause instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withRevision(instance.getRevision()); 
            fluent.withSecret(instance.getSecret()); 
            this.validationEnabled = validationEnabled; 
    }
    public BitbucketWebHookCauseBuilder(BitbucketWebHookCause instance){
            this(instance,true);
    }
    public BitbucketWebHookCauseBuilder(BitbucketWebHookCause instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withRevision(instance.getRevision()); 
            this.withSecret(instance.getSecret()); 
            this.validationEnabled = validationEnabled; 
    }

    public BitbucketWebHookCause build(){
            BitbucketWebHookCause buildable = new BitbucketWebHookCause(fluent.getRevision(),fluent.getSecret());
            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;
            BitbucketWebHookCauseBuilder that = (BitbucketWebHookCauseBuilder) 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