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

annotations.io.fabric8.knative.serving.v1.RevisionFluentImpl Maven / Gradle / Ivy

package io.fabric8.knative.serving.v1;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.lang.StringBuilder;
import io.fabric8.kubernetes.api.builder.Nested;
import java.lang.String;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Boolean;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.fabric8.kubernetes.api.model.ObjectMetaFluentImpl;
import io.fabric8.kubernetes.api.model.ObjectMetaBuilder;
import java.lang.StringBuffer;
import java.lang.Object;

public class RevisionFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements RevisionFluent {

    private String apiVersion;
    private String kind;
    private ObjectMetaBuilder metadata;
    private RevisionSpecBuilder spec;
    private RevisionStatusBuilder status;

    public RevisionFluentImpl() {
    }

    public RevisionFluentImpl(Revision instance) {
        this.withApiVersion(instance.getApiVersion()); 
        this.withKind(instance.getKind()); 
        this.withMetadata(instance.getMetadata()); 
        this.withSpec(instance.getSpec()); 
        this.withStatus(instance.getStatus()); 
    }

    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 A withNewApiVersion(String arg1) {
        return (A)withApiVersion(new String(arg1));
    }

    public A withNewApiVersion(StringBuilder arg1) {
        return (A)withApiVersion(new String(arg1));
    }

    public A withNewApiVersion(StringBuffer arg1) {
        return (A)withApiVersion(new String(arg1));
    }

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

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

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

    public A withNewKind(String arg1) {
        return (A)withKind(new String(arg1));
    }

    public A withNewKind(StringBuilder arg1) {
        return (A)withKind(new String(arg1));
    }

    public A withNewKind(StringBuffer arg1) {
        return (A)withKind(new String(arg1));
    }

    
/**
 * 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.get("metadata").remove(this.metadata);
        if (metadata!=null){ this.metadata= new ObjectMetaBuilder(metadata); _visitables.get("metadata").add(this.metadata);} return (A) this;
    }

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

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

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

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

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

    public RevisionFluent.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 RevisionSpec getSpec() {
        return this.spec!=null?this.spec.build():null;
    }

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

    public A withSpec(RevisionSpec spec) {
        _visitables.get("spec").remove(this.spec);
        if (spec!=null){ this.spec= new RevisionSpecBuilder(spec); _visitables.get("spec").add(this.spec);} return (A) this;
    }

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

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

    public RevisionFluent.SpecNested withNewSpecLike(RevisionSpec item) {
        return new SpecNestedImpl(item);
    }

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

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

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

    
/**
 * This method has been deprecated, please use method buildStatus instead.
 * @return The buildable object.
 */
@Deprecated public RevisionStatus getStatus() {
        return this.status!=null?this.status.build():null;
    }

    public RevisionStatus buildStatus() {
        return this.status!=null?this.status.build():null;
    }

    public A withStatus(RevisionStatus status) {
        _visitables.get("status").remove(this.status);
        if (status!=null){ this.status= new RevisionStatusBuilder(status); _visitables.get("status").add(this.status);} return (A) this;
    }

    public Boolean hasStatus() {
        return this.status != null;
    }

    public RevisionFluent.StatusNested withNewStatus() {
        return new StatusNestedImpl();
    }

    public RevisionFluent.StatusNested withNewStatusLike(RevisionStatus item) {
        return new StatusNestedImpl(item);
    }

    public RevisionFluent.StatusNested editStatus() {
        return withNewStatusLike(getStatus());
    }

    public RevisionFluent.StatusNested editOrNewStatus() {
        return withNewStatusLike(getStatus() != null ? getStatus(): new RevisionStatusBuilder().build());
    }

    public RevisionFluent.StatusNested editOrNewStatusLike(RevisionStatus item) {
        return withNewStatusLike(getStatus() != null ? getStatus(): item);
    }

    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        RevisionFluentImpl that = (RevisionFluentImpl) 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;
        if (status != null ? !status.equals(that.status) :that.status != null) return false;
        return true;
    }

    public int hashCode() {
        return java.util.Objects.hash(apiVersion,  kind,  metadata,  spec,  status,  super.hashCode());
    }

    public class MetadataNestedImpl extends ObjectMetaFluentImpl> implements RevisionFluent.MetadataNested,io.fabric8.kubernetes.api.builder.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) RevisionFluentImpl.this.withMetadata(builder.build());
            }

            public N endMetadata() {
                return and();
            }
    }


    public class SpecNestedImpl extends RevisionSpecFluentImpl> implements RevisionFluent.SpecNested,io.fabric8.kubernetes.api.builder.Nested {
        private final RevisionSpecBuilder builder;

            SpecNestedImpl(RevisionSpec item) {
                this.builder = new RevisionSpecBuilder(this, item);
                        
            }

            SpecNestedImpl() {
                this.builder = new RevisionSpecBuilder(this);
                        
            }

            public N and() {
                return (N) RevisionFluentImpl.this.withSpec(builder.build());
            }

            public N endSpec() {
                return and();
            }
    }


    public class StatusNestedImpl extends RevisionStatusFluentImpl> implements RevisionFluent.StatusNested,io.fabric8.kubernetes.api.builder.Nested {
        private final RevisionStatusBuilder builder;

            StatusNestedImpl(RevisionStatus item) {
                this.builder = new RevisionStatusBuilder(this, item);
                        
            }

            StatusNestedImpl() {
                this.builder = new RevisionStatusBuilder(this);
                        
            }

            public N and() {
                return (N) RevisionFluentImpl.this.withStatus(builder.build());
            }

            public N endStatus() {
                return and();
            }
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy