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

io.alauda.kubernetes.api.model.authorization.ResourceAttributesBuilder 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 ResourceAttributesBuilder extends ResourceAttributesFluentImpl implements VisitableBuilder{

    ResourceAttributesFluent fluent;
    Boolean validationEnabled;

    public ResourceAttributesBuilder(){
            this(true);
    }
    public ResourceAttributesBuilder(Boolean validationEnabled){
            this(new ResourceAttributes(), validationEnabled);
    }
    public ResourceAttributesBuilder(ResourceAttributesFluent fluent){
            this(fluent, true);
    }
    public ResourceAttributesBuilder(ResourceAttributesFluent fluent,Boolean validationEnabled){
            this(fluent, new ResourceAttributes(), validationEnabled);
    }
    public ResourceAttributesBuilder(ResourceAttributesFluent fluent,ResourceAttributes instance){
            this(fluent, instance, true);
    }
    public ResourceAttributesBuilder(ResourceAttributesFluent fluent,ResourceAttributes instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withGroup(instance.getGroup()); 
            fluent.withName(instance.getName()); 
            fluent.withNamespace(instance.getNamespace()); 
            fluent.withResource(instance.getResource()); 
            fluent.withSubresource(instance.getSubresource()); 
            fluent.withVerb(instance.getVerb()); 
            fluent.withVersion(instance.getVersion()); 
            this.validationEnabled = validationEnabled; 
    }
    public ResourceAttributesBuilder(ResourceAttributes instance){
            this(instance,true);
    }
    public ResourceAttributesBuilder(ResourceAttributes instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withGroup(instance.getGroup()); 
            this.withName(instance.getName()); 
            this.withNamespace(instance.getNamespace()); 
            this.withResource(instance.getResource()); 
            this.withSubresource(instance.getSubresource()); 
            this.withVerb(instance.getVerb()); 
            this.withVersion(instance.getVersion()); 
            this.validationEnabled = validationEnabled; 
    }

    public ResourceAttributes build(){
            ResourceAttributes buildable = new ResourceAttributes(fluent.getGroup(),fluent.getName(),fluent.getNamespace(),fluent.getResource(),fluent.getSubresource(),fluent.getVerb(),fluent.getVersion());
            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;
            ResourceAttributesBuilder that = (ResourceAttributesBuilder) 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