io.alauda.devops.api.model.ClusterRoleScopeRestrictionFluentImpl Maven / Gradle / Ivy
package io.alauda.devops.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.ArrayList;
import java.lang.String;
import io.alauda.kubernetes.api.builder.Predicate;
import javax.validation.Valid;
import io.alauda.kubernetes.api.builder.BaseFluent;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.Boolean;
public class ClusterRoleScopeRestrictionFluentImpl> extends io.alauda.kubernetes.api.builder.BaseFluent implements ClusterRoleScopeRestrictionFluent{
private Boolean allowEscalation;
private List namespaces = new ArrayList();
private List roleNames = new ArrayList();
public ClusterRoleScopeRestrictionFluentImpl(){
}
public ClusterRoleScopeRestrictionFluentImpl(ClusterRoleScopeRestriction instance){
this.withAllowEscalation(instance.getAllowEscalation());
this.withNamespaces(instance.getNamespaces());
this.withRoleNames(instance.getRoleNames());
}
public Boolean isAllowEscalation(){
return this.allowEscalation;
}
public A withAllowEscalation(Boolean allowEscalation){
this.allowEscalation=allowEscalation; return (A) this;
}
public Boolean hasAllowEscalation(){
return this.allowEscalation!=null;
}
public A addToNamespaces(int index,String item){
this.namespaces.add(index, item); return (A)this;
}
public A setToNamespaces(int index,String item){
this.namespaces.set(index, item); return (A)this;
}
public A addToNamespaces(String... items){
for (String item : items) {this.namespaces.add(item);} return (A)this;
}
public A addAllToNamespaces(Collection items){
for (String item : items) {this.namespaces.add(item);} return (A)this;
}
public A removeFromNamespaces(String... items){
for (String item : items) {this.namespaces.remove(item);} return (A)this;
}
public A removeAllFromNamespaces(Collection items){
for (String item : items) {this.namespaces.remove(item);} return (A)this;
}
public List getNamespaces(){
return this.namespaces;
}
public String getNamespace(int index){
return this.namespaces.get(index);
}
public String getFirstNamespace(){
return this.namespaces.get(0);
}
public String getLastNamespace(){
return this.namespaces.get(namespaces.size() - 1);
}
public String getMatchingNamespace(io.alauda.kubernetes.api.builder.Predicate predicate){
for (String item: namespaces) { if(predicate.apply(item)){return item;} } return null;
}
public A withNamespaces(List namespaces){
this.namespaces.clear();
if (namespaces != null) {for (String item : namespaces){this.addToNamespaces(item);}} return (A) this;
}
public A withNamespaces(String... namespaces){
this.namespaces.clear(); if (namespaces != null) {for (String item :namespaces){ this.addToNamespaces(item);}} return (A) this;
}
public Boolean hasNamespaces(){
return namespaces!= null && !namespaces.isEmpty();
}
public A addToRoleNames(int index,String item){
this.roleNames.add(index, item); return (A)this;
}
public A setToRoleNames(int index,String item){
this.roleNames.set(index, item); return (A)this;
}
public A addToRoleNames(String... items){
for (String item : items) {this.roleNames.add(item);} return (A)this;
}
public A addAllToRoleNames(Collection items){
for (String item : items) {this.roleNames.add(item);} return (A)this;
}
public A removeFromRoleNames(String... items){
for (String item : items) {this.roleNames.remove(item);} return (A)this;
}
public A removeAllFromRoleNames(Collection items){
for (String item : items) {this.roleNames.remove(item);} return (A)this;
}
public List getRoleNames(){
return this.roleNames;
}
public String getRoleName(int index){
return this.roleNames.get(index);
}
public String getFirstRoleName(){
return this.roleNames.get(0);
}
public String getLastRoleName(){
return this.roleNames.get(roleNames.size() - 1);
}
public String getMatchingRoleName(io.alauda.kubernetes.api.builder.Predicate predicate){
for (String item: roleNames) { if(predicate.apply(item)){return item;} } return null;
}
public A withRoleNames(List roleNames){
this.roleNames.clear();
if (roleNames != null) {for (String item : roleNames){this.addToRoleNames(item);}} return (A) this;
}
public A withRoleNames(String... roleNames){
this.roleNames.clear(); if (roleNames != null) {for (String item :roleNames){ this.addToRoleNames(item);}} return (A) this;
}
public Boolean hasRoleNames(){
return roleNames!= null && !roleNames.isEmpty();
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
ClusterRoleScopeRestrictionFluentImpl that = (ClusterRoleScopeRestrictionFluentImpl) o;
if (allowEscalation != null ? !allowEscalation.equals(that.allowEscalation) :that.allowEscalation != null) return false;
if (namespaces != null ? !namespaces.equals(that.namespaces) :that.namespaces != null) return false;
if (roleNames != null ? !roleNames.equals(that.roleNames) :that.roleNames != null) return false;
return true;
}
}