![JAR search and dependency download from the Maven repository](/logo.png)
annotations.io.fabric8.kubernetes.api.model.PodTemplateSpecFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.validation.Valid;
import io.fabric8.kubernetes.api.model.validators.CheckObjectMeta;
import java.lang.Object;
import io.fabric8.kubernetes.api.builder.Nested;
public class PodTemplateSpecFluentImpl> extends BaseFluent implements PodTemplateSpecFluent{
private VisitableBuilder extends ObjectMeta,?> metadata;
private VisitableBuilder extends PodSpec,?> spec;
public PodTemplateSpecFluentImpl(){
}
public PodTemplateSpecFluentImpl(PodTemplateSpec instance){
this.withMetadata(instance.getMetadata());
this.withSpec(instance.getSpec());
}
public ObjectMeta getMetadata(){
return this.metadata!=null?this.metadata.build():null;
}
public A withMetadata(ObjectMeta metadata){
if (metadata!=null){ this.metadata= new ObjectMetaBuilder(metadata); _visitables.add(this.metadata);} return (A) this;
}
public PodTemplateSpecFluent.MetadataNested withNewMetadata(){
return new MetadataNestedImpl();
}
public PodTemplateSpecFluent.MetadataNested withNewMetadataLike(ObjectMeta item){
return new MetadataNestedImpl(item);
}
public PodTemplateSpecFluent.MetadataNested editMetadata(){
return withNewMetadataLike(getMetadata());
}
public PodSpec getSpec(){
return this.spec!=null?this.spec.build():null;
}
public A withSpec(PodSpec spec){
if (spec!=null){ this.spec= new PodSpecBuilder(spec); _visitables.add(this.spec);} return (A) this;
}
public PodTemplateSpecFluent.SpecNested withNewSpec(){
return new SpecNestedImpl();
}
public PodTemplateSpecFluent.SpecNested withNewSpecLike(PodSpec item){
return new SpecNestedImpl(item);
}
public PodTemplateSpecFluent.SpecNested editSpec(){
return withNewSpecLike(getSpec());
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
PodTemplateSpecFluentImpl that = (PodTemplateSpecFluentImpl) o;
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 PodTemplateSpecFluent.MetadataNested,Nested{
private final ObjectMetaBuilder builder;
MetadataNestedImpl(){
this.builder = new ObjectMetaBuilder(this);
}
MetadataNestedImpl(ObjectMeta item){
this.builder = new ObjectMetaBuilder(this, item);
}
public N endMetadata(){
return and();
}
public N and(){
return (N) PodTemplateSpecFluentImpl.this.withMetadata(builder.build());
}
}
public class SpecNestedImpl extends PodSpecFluentImpl> implements PodTemplateSpecFluent.SpecNested,Nested{
private final PodSpecBuilder builder;
SpecNestedImpl(){
this.builder = new PodSpecBuilder(this);
}
SpecNestedImpl(PodSpec item){
this.builder = new PodSpecBuilder(this, item);
}
public N endSpec(){
return and();
}
public N and(){
return (N) PodTemplateSpecFluentImpl.this.withSpec(builder.build());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy