io.fabric8.kubernetes.api.model.SecretVolumeSourceFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.validation.Valid;
import java.util.ArrayList;
import java.lang.String;
import java.lang.Object;
import io.fabric8.kubernetes.api.builder.Nested;
public class SecretVolumeSourceFluentImpl> extends BaseFluent implements SecretVolumeSourceFluent{
private List> items = new ArrayList>();
private String secretName;
public SecretVolumeSourceFluentImpl(){
}
public SecretVolumeSourceFluentImpl(SecretVolumeSource instance){
this.withItems(instance.getItems());
this.withSecretName(instance.getSecretName());
}
public A addToItems(KeyToPath... items){
for (KeyToPath item : items) {KeyToPathBuilder builder = new KeyToPathBuilder(item);_visitables.add(builder);this.items.add(builder);} return (A)this;
}
public A removeFromItems(KeyToPath... items){
for (KeyToPath item : items) {KeyToPathBuilder builder = new KeyToPathBuilder(item);_visitables.remove(builder);this.items.remove(builder);} return (A)this;
}
public List getItems(){
return build(items);
}
public A withItems(List items){
this.items.clear();
if (items != null) {for (KeyToPath item : items){this.addToItems(item);}} return (A) this;
}
public A withItems(KeyToPath... items){
this.items.clear(); if (items != null) {for (KeyToPath item :items){ this.addToItems(item);}} return (A) this;
}
public SecretVolumeSourceFluent.ItemsNested addNewItem(){
return new ItemsNestedImpl();
}
public SecretVolumeSourceFluent.ItemsNested addNewItemLike(KeyToPath item){
return new ItemsNestedImpl(item);
}
public A addNewItem(String key,String path){
return (A)addToItems(new KeyToPath(key, path));
}
public String getSecretName(){
return this.secretName;
}
public A withSecretName(String secretName){
this.secretName=secretName; return (A) this;
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
SecretVolumeSourceFluentImpl that = (SecretVolumeSourceFluentImpl) o;
if (items != null ? !items.equals(that.items) :that.items != null) return false;
if (secretName != null ? !secretName.equals(that.secretName) :that.secretName != null) return false;
return true;
}
public class ItemsNestedImpl extends KeyToPathFluentImpl> implements SecretVolumeSourceFluent.ItemsNested,Nested{
private final KeyToPathBuilder builder;
ItemsNestedImpl(){
this.builder = new KeyToPathBuilder(this);
}
ItemsNestedImpl(KeyToPath item){
this.builder = new KeyToPathBuilder(this, item);
}
public N endItem(){
return and();
}
public N and(){
return (N) SecretVolumeSourceFluentImpl.this.addToItems(builder.build());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy