annotations.io.fabric8.kubernetes.api.model.extensions.JobSpecFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.extensions;
import io.fabric8.kubernetes.api.model.PodTemplateSpec;
import java.util.Map;
import java.util.Map;
import java.util.HashMap;
import java.io.Serializable;
import java.util.AbstractMap;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.model.PodTemplateSpecFluentImpl;
import io.fabric8.kubernetes.api.builder.Fluent;
import io.fabric8.kubernetes.api.builder.Nested;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.Builder;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import io.fabric8.kubernetes.api.model.PodTemplateSpecFluent;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import io.fabric8.kubernetes.api.model.PodTemplateSpecBuilder;
public class JobSpecFluentImpl> extends BaseFluent implements JobSpecFluent{
Long activeDeadlineSeconds; Boolean autoSelector; Integer completions; Integer parallelism; VisitableBuilder selector; VisitableBuilder template; Map additionalProperties = new HashMap();
public JobSpecFluentImpl(){
}
public JobSpecFluentImpl( JobSpec instance ){
this.withActiveDeadlineSeconds(instance.getActiveDeadlineSeconds()); this.withAutoSelector(instance.getAutoSelector()); this.withCompletions(instance.getCompletions()); this.withParallelism(instance.getParallelism()); this.withSelector(instance.getSelector()); this.withTemplate(instance.getTemplate());
}
public Long getActiveDeadlineSeconds(){
return this.activeDeadlineSeconds;
}
public T withActiveDeadlineSeconds( Long activeDeadlineSeconds){
this.activeDeadlineSeconds=activeDeadlineSeconds; return (T) this;
}
public Boolean isAutoSelector(){
return this.autoSelector;
}
public T withAutoSelector( Boolean autoSelector){
this.autoSelector=autoSelector; return (T) this;
}
public Integer getCompletions(){
return this.completions;
}
public T withCompletions( Integer completions){
this.completions=completions; return (T) this;
}
public Integer getParallelism(){
return this.parallelism;
}
public T withParallelism( Integer parallelism){
this.parallelism=parallelism; return (T) this;
}
public LabelSelector getSelector(){
return this.selector!=null?this.selector.build():null;
}
public T withSelector( LabelSelector selector){
if (selector!=null){ this.selector= new LabelSelectorBuilder(selector); _visitables.add(this.selector);} return (T) this;
}
public SelectorNested withNewSelector(){
return new SelectorNestedImpl();
}
public SelectorNested withNewSelectorLike( LabelSelector item){
return new SelectorNestedImpl(item);
}
public SelectorNested editSelector(){
return withNewSelectorLike(getSelector());
}
public PodTemplateSpec getTemplate(){
return this.template!=null?this.template.build():null;
}
public T withTemplate( PodTemplateSpec template){
if (template!=null){ this.template= new PodTemplateSpecBuilder(template); _visitables.add(this.template);} return (T) this;
}
public TemplateNested withNewTemplate(){
return new TemplateNestedImpl();
}
public TemplateNested withNewTemplateLike( PodTemplateSpec item){
return new TemplateNestedImpl(item);
}
public TemplateNested editTemplate(){
return withNewTemplateLike(getTemplate());
}
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;
JobSpecFluentImpl that = (JobSpecFluentImpl) o;
if (activeDeadlineSeconds != null ? !activeDeadlineSeconds.equals(that.activeDeadlineSeconds) :that.activeDeadlineSeconds != null) return false;
if (autoSelector != null ? !autoSelector.equals(that.autoSelector) :that.autoSelector != null) return false;
if (completions != null ? !completions.equals(that.completions) :that.completions != null) return false;
if (parallelism != null ? !parallelism.equals(that.parallelism) :that.parallelism != null) return false;
if (selector != null ? !selector.equals(that.selector) :that.selector != null) return false;
if (template != null ? !template.equals(that.template) :that.template != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;
}
public class SelectorNestedImpl extends LabelSelectorFluentImpl> implements SelectorNested{
private final LabelSelectorBuilder builder;
SelectorNestedImpl (){
this.builder = new LabelSelectorBuilder(this);
}
SelectorNestedImpl ( LabelSelector item){
this.builder = new LabelSelectorBuilder(this, item);
}
public N endSelector(){
return and();
}
public N and(){
return (N) JobSpecFluentImpl.this.withSelector(builder.build());
}
}
public class TemplateNestedImpl extends PodTemplateSpecFluentImpl> implements TemplateNested{
private final PodTemplateSpecBuilder builder;
TemplateNestedImpl (){
this.builder = new PodTemplateSpecBuilder(this);
}
TemplateNestedImpl ( PodTemplateSpec item){
this.builder = new PodTemplateSpecBuilder(this, item);
}
public N endTemplate(){
return and();
}
public N and(){
return (N) JobSpecFluentImpl.this.withTemplate(builder.build());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy