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

me.snowdrop.istio.mixer.adapter.opa.OpaFluentImpl Maven / Gradle / Ivy

package me.snowdrop.istio.mixer.adapter.opa;

import io.fabric8.kubernetes.api.model.ObjectMeta;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.fabric8.kubernetes.api.model.ObjectMetaFluentImpl;
import io.fabric8.kubernetes.api.builder.Nested;
import io.fabric8.kubernetes.api.model.validators.CheckObjectMeta;
import java.lang.String;
import io.fabric8.kubernetes.api.model.ObjectMetaBuilder;
import javax.validation.constraints.NotNull;
import java.lang.Deprecated;
import javax.validation.Valid;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;

public class OpaFluentImpl> extends BaseFluent implements OpaFluent{

    private String apiVersion;
    private String kind;
    private ObjectMetaBuilder metadata;
    private OpaSpecBuilder spec;

    public OpaFluentImpl(){
    }
    public OpaFluentImpl(Opa instance){
            this.withApiVersion(instance.getApiVersion()); 
            this.withKind(instance.getKind()); 
            this.withMetadata(instance.getMetadata()); 
            this.withSpec(instance.getSpec()); 
    }

    public String getApiVersion(){
            return this.apiVersion;
    }

    public A withApiVersion(String apiVersion){
            this.apiVersion=apiVersion; return (A) this;
    }

    public Boolean hasApiVersion(){
            return this.apiVersion != null;
    }

    public String getKind(){
            return this.kind;
    }

    public A withKind(String kind){
            this.kind=kind; return (A) this;
    }

    public Boolean hasKind(){
            return this.kind != null;
    }

    
/**
 * This method has been deprecated, please use method buildMetadata instead.
 * @return The buildable object.
 */
@Deprecated public ObjectMeta getMetadata(){
            return this.metadata!=null?this.metadata.build():null;
    }

    public ObjectMeta buildMetadata(){
            return this.metadata!=null?this.metadata.build():null;
    }

    public A withMetadata(ObjectMeta metadata){
            _visitables.remove(this.metadata);
            if (metadata!=null){ this.metadata= new ObjectMetaBuilder(metadata); _visitables.add(this.metadata);} return (A) this;
    }

    public Boolean hasMetadata(){
            return this.metadata != null;
    }

    public OpaFluent.MetadataNested withNewMetadata(){
            return new MetadataNestedImpl();
    }

    public OpaFluent.MetadataNested withNewMetadataLike(ObjectMeta item){
            return new MetadataNestedImpl(item);
    }

    public OpaFluent.MetadataNested editMetadata(){
            return withNewMetadataLike(getMetadata());
    }

    public OpaFluent.MetadataNested editOrNewMetadata(){
            return withNewMetadataLike(getMetadata() != null ? getMetadata(): new ObjectMetaBuilder().build());
    }

    public OpaFluent.MetadataNested editOrNewMetadataLike(ObjectMeta item){
            return withNewMetadataLike(getMetadata() != null ? getMetadata(): item);
    }

    
/**
 * This method has been deprecated, please use method buildSpec instead.
 * @return The buildable object.
 */
@Deprecated public OpaSpec getSpec(){
            return this.spec!=null?this.spec.build():null;
    }

    public OpaSpec buildSpec(){
            return this.spec!=null?this.spec.build():null;
    }

    public A withSpec(OpaSpec spec){
            _visitables.remove(this.spec);
            if (spec!=null){ this.spec= new OpaSpecBuilder(spec); _visitables.add(this.spec);} return (A) this;
    }

    public Boolean hasSpec(){
            return this.spec != null;
    }

    public OpaFluent.SpecNested withNewSpec(){
            return new SpecNestedImpl();
    }

    public OpaFluent.SpecNested withNewSpecLike(OpaSpec item){
            return new SpecNestedImpl(item);
    }

    public OpaFluent.SpecNested editSpec(){
            return withNewSpecLike(getSpec());
    }

    public OpaFluent.SpecNested editOrNewSpec(){
            return withNewSpecLike(getSpec() != null ? getSpec(): new OpaSpecBuilder().build());
    }

    public OpaFluent.SpecNested editOrNewSpecLike(OpaSpec item){
            return withNewSpecLike(getSpec() != null ? getSpec(): item);
    }

    public boolean equals(Object o){
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;
            if (!super.equals(o)) return false;
            OpaFluentImpl that = (OpaFluentImpl) o;
            if (apiVersion != null ? !apiVersion.equals(that.apiVersion) :that.apiVersion != null) return false;
            if (kind != null ? !kind.equals(that.kind) :that.kind != null) return false;
            if (metadata != null ? !metadata.equals(that.metadata) :that.metadata != null) return false;
            if (spec != null ? !spec.equals(that.spec) :that.spec != null) return false;
            return true;
    }


    public class MetadataNestedImpl extends ObjectMetaFluentImpl> implements OpaFluent.MetadataNested,Nested{

            private final ObjectMetaBuilder builder;
    
            MetadataNestedImpl(ObjectMeta item){
                    this.builder = new ObjectMetaBuilder(this, item);
            }
            MetadataNestedImpl(){
                    this.builder = new ObjectMetaBuilder(this);
            }
    
    public N and(){
            return (N) OpaFluentImpl.this.withMetadata(builder.build());
    }
    public N endMetadata(){
            return and();
    }

}
    public class SpecNestedImpl extends OpaSpecFluentImpl> implements OpaFluent.SpecNested,Nested{

            private final OpaSpecBuilder builder;
    
            SpecNestedImpl(OpaSpec item){
                    this.builder = new OpaSpecBuilder(this, item);
            }
            SpecNestedImpl(){
                    this.builder = new OpaSpecBuilder(this);
            }
    
    public N and(){
            return (N) OpaFluentImpl.this.withSpec(builder.build());
    }
    public N endSpec(){
            return and();
    }

}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy