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

annotations.io.alauda.kubernetes.api.model.JenkinsFluentImpl Maven / Gradle / Ivy

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

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

public class JenkinsFluentImpl> extends io.alauda.kubernetes.api.builder.BaseFluent implements JenkinsFluent{

    private String apiVersion;
    private String kind;
    private ObjectMetaBuilder metadata;
    private JenkinsSpecBuilder spec;
    private JenkinsStatusBuilder status;

    public JenkinsFluentImpl(){
    }
    public JenkinsFluentImpl(Jenkins 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 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.
 */
@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 JenkinsFluent.MetadataNested withNewMetadata(){
            return new MetadataNestedImpl();
    }

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

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

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

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

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

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

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

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

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

    public JenkinsFluent.SpecNested withNewSpecLike(JenkinsSpec item){
            return new SpecNestedImpl(item);
    }

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

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

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

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

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

    public A withStatus(JenkinsStatus status){
            _visitables.remove(this.status);
            if (status!=null){ this.status= new JenkinsStatusBuilder(status); _visitables.add(this.status);} return (A) this;
    }

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

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

    public JenkinsFluent.StatusNested withNewStatusLike(JenkinsStatus item){
            return new StatusNestedImpl(item);
    }

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

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

    public JenkinsFluent.StatusNested editOrNewStatusLike(JenkinsStatus 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;
            if (!super.equals(o)) return false;
            JenkinsFluentImpl that = (JenkinsFluentImpl) 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 class MetadataNestedImpl extends ObjectMetaFluentImpl> implements JenkinsFluent.MetadataNested,io.alauda.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) JenkinsFluentImpl.this.withMetadata(builder.build());
    }
    public N endMetadata(){
            return and();
    }

}
    public class SpecNestedImpl extends JenkinsSpecFluentImpl> implements JenkinsFluent.SpecNested,io.alauda.kubernetes.api.builder.Nested{

            private final JenkinsSpecBuilder builder;
    
            SpecNestedImpl(JenkinsSpec item){
                    this.builder = new JenkinsSpecBuilder(this, item);
            }
            SpecNestedImpl(){
                    this.builder = new JenkinsSpecBuilder(this);
            }
    
    public N and(){
            return (N) JenkinsFluentImpl.this.withSpec(builder.build());
    }
    public N endSpec(){
            return and();
    }

}
    public class StatusNestedImpl extends JenkinsStatusFluentImpl> implements JenkinsFluent.StatusNested,io.alauda.kubernetes.api.builder.Nested{

            private final JenkinsStatusBuilder builder;
    
            StatusNestedImpl(JenkinsStatus item){
                    this.builder = new JenkinsStatusBuilder(this, item);
            }
            StatusNestedImpl(){
                    this.builder = new JenkinsStatusBuilder(this);
            }
    
    public N and(){
            return (N) JenkinsFluentImpl.this.withStatus(builder.build());
    }
    public N endStatus(){
            return and();
    }

}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy