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

me.snowdrop.istio.api.security.v1beta1.PeerAuthenticationBuilder Maven / Gradle / Ivy

There is a newer version: 1.7.7.1
Show newest version
package me.snowdrop.istio.api.security.v1beta1;

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

public class PeerAuthenticationBuilder extends PeerAuthenticationFluentImpl implements VisitableBuilder{

    PeerAuthenticationFluent fluent;
    Boolean validationEnabled;

    public PeerAuthenticationBuilder(){
            this(true);
    }
    public PeerAuthenticationBuilder(Boolean validationEnabled){
            this(new PeerAuthentication(), validationEnabled);
    }
    public PeerAuthenticationBuilder(PeerAuthenticationFluent fluent){
            this(fluent, true);
    }
    public PeerAuthenticationBuilder(PeerAuthenticationFluent fluent,Boolean validationEnabled){
            this(fluent, new PeerAuthentication(), validationEnabled);
    }
    public PeerAuthenticationBuilder(PeerAuthenticationFluent fluent,PeerAuthentication instance){
            this(fluent, instance, true);
    }
    public PeerAuthenticationBuilder(PeerAuthenticationFluent fluent,PeerAuthentication instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withApiVersion(instance.getApiVersion()); 
            fluent.withKind(instance.getKind()); 
            fluent.withMetadata(instance.getMetadata()); 
            fluent.withSpec(instance.getSpec()); 
            this.validationEnabled = validationEnabled; 
    }
    public PeerAuthenticationBuilder(PeerAuthentication instance){
            this(instance,true);
    }
    public PeerAuthenticationBuilder(PeerAuthentication instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withApiVersion(instance.getApiVersion()); 
            this.withKind(instance.getKind()); 
            this.withMetadata(instance.getMetadata()); 
            this.withSpec(instance.getSpec()); 
            this.validationEnabled = validationEnabled; 
    }

    public PeerAuthentication build(){
            PeerAuthentication buildable = new PeerAuthentication(fluent.getApiVersion(),fluent.getKind(),fluent.getMetadata(),fluent.getSpec());
            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;
            PeerAuthenticationBuilder that = (PeerAuthenticationBuilder) 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