
io.fabric8.openshift.api.model.ClusterRoleScopeRestrictionFluentImpl Maven / Gradle / Ivy
package io.fabric8.openshift.api.model;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Boolean;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.lang.String;
import java.util.List;
import javax.validation.Valid;
import java.util.ArrayList;
import java.lang.Object;
public class ClusterRoleScopeRestrictionFluentImpl> extends 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 A addToNamespaces(String... 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 List getNamespaces(){
return this.namespaces;
}
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 A addToRoleNames(String... 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 List getRoleNames(){
return this.roleNames;
}
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 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy