annotations.io.fabric8.kubernetes.api.model.PodTemplateSpecFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import java.util.HashMap;
import java.io.Serializable;
import java.util.Map;
import java.util.Map;
import java.util.AbstractMap;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.Builder;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.builder.Fluent;
import io.fabric8.kubernetes.api.builder.Nested;
public class PodTemplateSpecFluentImpl> extends BaseFluent implements PodTemplateSpecFluent{
VisitableBuilder metadata; VisitableBuilder spec; Map additionalProperties = new HashMap();
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 T withMetadata( ObjectMeta metadata){
if (metadata!=null){ this.metadata= new ObjectMetaBuilder(metadata); _visitables.add(this.metadata);} return (T) this;
}
public MetadataNested withNewMetadata(){
return new MetadataNestedImpl();
}
public MetadataNested withNewMetadataLike( ObjectMeta item){
return new MetadataNestedImpl(item);
}
public MetadataNested editMetadata(){
return withNewMetadataLike(getMetadata());
}
public PodSpec getSpec(){
return this.spec!=null?this.spec.build():null;
}
public T withSpec( PodSpec spec){
if (spec!=null){ this.spec= new PodSpecBuilder(spec); _visitables.add(this.spec);} return (T) this;
}
public SpecNested withNewSpec(){
return new SpecNestedImpl();
}
public SpecNested withNewSpecLike( PodSpec item){
return new SpecNestedImpl(item);
}
public SpecNested editSpec(){
return withNewSpecLike(getSpec());
}
public T addToAdditionalProperties( String key, Object value){
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (T)this;
}
public T addToAdditionalProperties( Map map){
if(map != null) { this.additionalProperties.putAll(map);} return (T)this;
}
public T removeFromAdditionalProperties( String key){
if(key != null) {this.additionalProperties.remove(key);} return (T)this;
}
public T removeFromAdditionalProperties( Map map){
if(map != null) { for(Object key : map.keySet()) {this.additionalProperties.remove(key);}} return (T)this;
}
public Map getAdditionalProperties(){
return this.additionalProperties;
}
public T withAdditionalProperties( Map additionalProperties){
this.additionalProperties.clear();if (additionalProperties != null) {this.additionalProperties.putAll(additionalProperties);} return (T) this;
}
public boolean equals( Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) 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;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;
}
public class MetadataNestedImpl extends ObjectMetaFluentImpl> implements MetadataNested{
private final ObjectMetaBuilder builder;
MetadataNestedImpl ( ObjectMeta item){
this.builder = new ObjectMetaBuilder(this, item);
}
MetadataNestedImpl (){
this.builder = new ObjectMetaBuilder(this);
}
public N and(){
return (N) PodTemplateSpecFluentImpl.this.withMetadata(builder.build());
}
public N endMetadata(){
return and();
}
}
public class SpecNestedImpl extends PodSpecFluentImpl> implements SpecNested{
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