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

annotations.io.alauda.kubernetes.api.model.authorization.LocalSubjectAccessReviewBuilder Maven / Gradle / Ivy

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

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

public class LocalSubjectAccessReviewBuilder extends io.alauda.kubernetes.api.model.authorization.LocalSubjectAccessReviewFluentImpl implements VisitableBuilder{

    io.alauda.kubernetes.api.model.authorization.LocalSubjectAccessReviewFluent fluent;
    Boolean validationEnabled;

    public LocalSubjectAccessReviewBuilder(){
            this(true);
    }
    public LocalSubjectAccessReviewBuilder(Boolean validationEnabled){
            this(new LocalSubjectAccessReview(), validationEnabled);
    }
    public LocalSubjectAccessReviewBuilder(io.alauda.kubernetes.api.model.authorization.LocalSubjectAccessReviewFluent fluent){
            this(fluent, true);
    }
    public LocalSubjectAccessReviewBuilder(io.alauda.kubernetes.api.model.authorization.LocalSubjectAccessReviewFluent fluent,Boolean validationEnabled){
            this(fluent, new LocalSubjectAccessReview(), validationEnabled);
    }
    public LocalSubjectAccessReviewBuilder(io.alauda.kubernetes.api.model.authorization.LocalSubjectAccessReviewFluent fluent,io.alauda.kubernetes.api.model.authorization.LocalSubjectAccessReview instance){
            this(fluent, instance, true);
    }
    public LocalSubjectAccessReviewBuilder(io.alauda.kubernetes.api.model.authorization.LocalSubjectAccessReviewFluent fluent,io.alauda.kubernetes.api.model.authorization.LocalSubjectAccessReview instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withApiVersion(instance.getApiVersion()); 
            fluent.withKind(instance.getKind()); 
            fluent.withMetadata(instance.getMetadata()); 
            fluent.withSpec(instance.getSpec()); 
            fluent.withStatus(instance.getStatus()); 
            this.validationEnabled = validationEnabled; 
    }
    public LocalSubjectAccessReviewBuilder(io.alauda.kubernetes.api.model.authorization.LocalSubjectAccessReview instance){
            this(instance,true);
    }
    public LocalSubjectAccessReviewBuilder(io.alauda.kubernetes.api.model.authorization.LocalSubjectAccessReview instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withApiVersion(instance.getApiVersion()); 
            this.withKind(instance.getKind()); 
            this.withMetadata(instance.getMetadata()); 
            this.withSpec(instance.getSpec()); 
            this.withStatus(instance.getStatus()); 
            this.validationEnabled = validationEnabled; 
    }

    public io.alauda.kubernetes.api.model.authorization.LocalSubjectAccessReview build(){
            LocalSubjectAccessReview buildable = new LocalSubjectAccessReview(fluent.getApiVersion(),fluent.getKind(),fluent.getMetadata(),fluent.getSpec(),fluent.getStatus());
            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;
            LocalSubjectAccessReviewBuilder that = (LocalSubjectAccessReviewBuilder) 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