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

me.snowdrop.istio.api.mixer.v1.HeaderOperationBuilder Maven / Gradle / Ivy

The newest version!
package me.snowdrop.istio.api.mixer.v1;

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

public class HeaderOperationBuilder extends HeaderOperationFluentImpl implements VisitableBuilder{

    HeaderOperationFluent fluent;
    Boolean validationEnabled;

    public HeaderOperationBuilder(){
            this(true);
    }
    public HeaderOperationBuilder(Boolean validationEnabled){
            this(new HeaderOperation(), validationEnabled);
    }
    public HeaderOperationBuilder(HeaderOperationFluent fluent){
            this(fluent, true);
    }
    public HeaderOperationBuilder(HeaderOperationFluent fluent,Boolean validationEnabled){
            this(fluent, new HeaderOperation(), validationEnabled);
    }
    public HeaderOperationBuilder(HeaderOperationFluent fluent,HeaderOperation instance){
            this(fluent, instance, true);
    }
    public HeaderOperationBuilder(HeaderOperationFluent fluent,HeaderOperation instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withName(instance.getName()); 
            fluent.withOperation(instance.getOperation()); 
            fluent.withValue(instance.getValue()); 
            this.validationEnabled = validationEnabled; 
    }
    public HeaderOperationBuilder(HeaderOperation instance){
            this(instance,true);
    }
    public HeaderOperationBuilder(HeaderOperation instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withName(instance.getName()); 
            this.withOperation(instance.getOperation()); 
            this.withValue(instance.getValue()); 
            this.validationEnabled = validationEnabled; 
    }

    public HeaderOperation build(){
            HeaderOperation buildable = new HeaderOperation(fluent.getName(),fluent.getOperation(),fluent.getValue());
            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;
            HeaderOperationBuilder that = (HeaderOperationBuilder) 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