
io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluentImpl Maven / Gradle / Ivy
/*
Copyright 2022 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package io.kubernetes.client.openapi.models;
import io.kubernetes.client.fluent.BaseFluent;
import io.kubernetes.client.fluent.Nested;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.function.Predicate;
/** Generated */
@SuppressWarnings(value = "unchecked")
public class V1beta1PolicyRulesWithSubjectsFluentImpl<
A extends V1beta1PolicyRulesWithSubjectsFluent>
extends BaseFluent implements V1beta1PolicyRulesWithSubjectsFluent {
public V1beta1PolicyRulesWithSubjectsFluentImpl() {}
public V1beta1PolicyRulesWithSubjectsFluentImpl(
io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjects instance) {
this.withNonResourceRules(instance.getNonResourceRules());
this.withResourceRules(instance.getResourceRules());
this.withSubjects(instance.getSubjects());
}
private ArrayList nonResourceRules;
private java.util.ArrayList resourceRules;
private java.util.ArrayList subjects;
public A addToNonResourceRules(Integer index, V1beta1NonResourcePolicyRule item) {
if (this.nonResourceRules == null) {
this.nonResourceRules =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder>();
}
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder(item);
_visitables
.get("nonResourceRules")
.add(index >= 0 ? index : _visitables.get("nonResourceRules").size(), builder);
this.nonResourceRules.add(index >= 0 ? index : nonResourceRules.size(), builder);
return (A) this;
}
public A setToNonResourceRules(
java.lang.Integer index,
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule item) {
if (this.nonResourceRules == null) {
this.nonResourceRules =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder>();
}
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder(item);
if (index < 0 || index >= _visitables.get("nonResourceRules").size()) {
_visitables.get("nonResourceRules").add(builder);
} else {
_visitables.get("nonResourceRules").set(index, builder);
}
if (index < 0 || index >= nonResourceRules.size()) {
nonResourceRules.add(builder);
} else {
nonResourceRules.set(index, builder);
}
return (A) this;
}
public A addToNonResourceRules(
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule... items) {
if (this.nonResourceRules == null) {
this.nonResourceRules =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder>();
}
for (io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule item : items) {
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder(item);
_visitables.get("nonResourceRules").add(builder);
this.nonResourceRules.add(builder);
}
return (A) this;
}
public A addAllToNonResourceRules(
Collection items) {
if (this.nonResourceRules == null) {
this.nonResourceRules =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder>();
}
for (io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule item : items) {
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder(item);
_visitables.get("nonResourceRules").add(builder);
this.nonResourceRules.add(builder);
}
return (A) this;
}
public A removeFromNonResourceRules(
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule... items) {
for (io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule item : items) {
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder(item);
_visitables.get("nonResourceRules").remove(builder);
if (this.nonResourceRules != null) {
this.nonResourceRules.remove(builder);
}
}
return (A) this;
}
public A removeAllFromNonResourceRules(
java.util.Collection
items) {
for (io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule item : items) {
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder(item);
_visitables.get("nonResourceRules").remove(builder);
if (this.nonResourceRules != null) {
this.nonResourceRules.remove(builder);
}
}
return (A) this;
}
public A removeMatchingFromNonResourceRules(
Predicate
predicate) {
if (nonResourceRules == null) return (A) this;
final Iterator each =
nonResourceRules.iterator();
final List visitables = _visitables.get("nonResourceRules");
while (each.hasNext()) {
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder builder = each.next();
if (predicate.test(builder)) {
visitables.remove(builder);
each.remove();
}
}
return (A) this;
}
/**
* This method has been deprecated, please use method buildNonResourceRules instead.
*
* @return The buildable object.
*/
@Deprecated
public List
getNonResourceRules() {
return nonResourceRules != null ? build(nonResourceRules) : null;
}
public java.util.List
buildNonResourceRules() {
return nonResourceRules != null ? build(nonResourceRules) : null;
}
public io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule buildNonResourceRule(
java.lang.Integer index) {
return this.nonResourceRules.get(index).build();
}
public io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule
buildFirstNonResourceRule() {
return this.nonResourceRules.get(0).build();
}
public io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule
buildLastNonResourceRule() {
return this.nonResourceRules.get(nonResourceRules.size() - 1).build();
}
public io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule
buildMatchingNonResourceRule(
java.util.function.Predicate<
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder>
predicate) {
for (io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder item :
nonResourceRules) {
if (predicate.test(item)) {
return item.build();
}
}
return null;
}
public Boolean hasMatchingNonResourceRule(
java.util.function.Predicate<
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder>
predicate) {
for (io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder item :
nonResourceRules) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withNonResourceRules(
java.util.List
nonResourceRules) {
if (this.nonResourceRules != null) {
_visitables.get("nonResourceRules").removeAll(this.nonResourceRules);
}
if (nonResourceRules != null) {
this.nonResourceRules = new java.util.ArrayList();
for (io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule item :
nonResourceRules) {
this.addToNonResourceRules(item);
}
} else {
this.nonResourceRules = null;
}
return (A) this;
}
public A withNonResourceRules(
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule... nonResourceRules) {
if (this.nonResourceRules != null) {
this.nonResourceRules.clear();
}
if (nonResourceRules != null) {
for (io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule item :
nonResourceRules) {
this.addToNonResourceRules(item);
}
}
return (A) this;
}
public java.lang.Boolean hasNonResourceRules() {
return nonResourceRules != null && !nonResourceRules.isEmpty();
}
public V1beta1PolicyRulesWithSubjectsFluent.NonResourceRulesNested addNewNonResourceRule() {
return new V1beta1PolicyRulesWithSubjectsFluentImpl.NonResourceRulesNestedImpl();
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.NonResourceRulesNested<
A>
addNewNonResourceRuleLike(
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule item) {
return new V1beta1PolicyRulesWithSubjectsFluentImpl.NonResourceRulesNestedImpl(-1, item);
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.NonResourceRulesNested<
A>
setNewNonResourceRuleLike(
java.lang.Integer index,
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule item) {
return new io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluentImpl
.NonResourceRulesNestedImpl(index, item);
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.NonResourceRulesNested<
A>
editNonResourceRule(java.lang.Integer index) {
if (nonResourceRules.size() <= index)
throw new RuntimeException("Can't edit nonResourceRules. Index exceeds size.");
return setNewNonResourceRuleLike(index, buildNonResourceRule(index));
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.NonResourceRulesNested<
A>
editFirstNonResourceRule() {
if (nonResourceRules.size() == 0)
throw new RuntimeException("Can't edit first nonResourceRules. The list is empty.");
return setNewNonResourceRuleLike(0, buildNonResourceRule(0));
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.NonResourceRulesNested<
A>
editLastNonResourceRule() {
int index = nonResourceRules.size() - 1;
if (index < 0)
throw new RuntimeException("Can't edit last nonResourceRules. The list is empty.");
return setNewNonResourceRuleLike(index, buildNonResourceRule(index));
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.NonResourceRulesNested<
A>
editMatchingNonResourceRule(
java.util.function.Predicate<
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder>
predicate) {
int index = -1;
for (int i = 0; i < nonResourceRules.size(); i++) {
if (predicate.test(nonResourceRules.get(i))) {
index = i;
break;
}
}
if (index < 0)
throw new RuntimeException("Can't edit matching nonResourceRules. No match found.");
return setNewNonResourceRuleLike(index, buildNonResourceRule(index));
}
public A addToResourceRules(java.lang.Integer index, V1beta1ResourcePolicyRule item) {
if (this.resourceRules == null) {
this.resourceRules =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder>();
}
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder(item);
_visitables
.get("resourceRules")
.add(index >= 0 ? index : _visitables.get("resourceRules").size(), builder);
this.resourceRules.add(index >= 0 ? index : resourceRules.size(), builder);
return (A) this;
}
public A setToResourceRules(
java.lang.Integer index, io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule item) {
if (this.resourceRules == null) {
this.resourceRules =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder>();
}
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder(item);
if (index < 0 || index >= _visitables.get("resourceRules").size()) {
_visitables.get("resourceRules").add(builder);
} else {
_visitables.get("resourceRules").set(index, builder);
}
if (index < 0 || index >= resourceRules.size()) {
resourceRules.add(builder);
} else {
resourceRules.set(index, builder);
}
return (A) this;
}
public A addToResourceRules(
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule... items) {
if (this.resourceRules == null) {
this.resourceRules =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder>();
}
for (io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule item : items) {
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder(item);
_visitables.get("resourceRules").add(builder);
this.resourceRules.add(builder);
}
return (A) this;
}
public A addAllToResourceRules(
java.util.Collection items) {
if (this.resourceRules == null) {
this.resourceRules =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder>();
}
for (io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule item : items) {
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder(item);
_visitables.get("resourceRules").add(builder);
this.resourceRules.add(builder);
}
return (A) this;
}
public A removeFromResourceRules(
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule... items) {
for (io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule item : items) {
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder(item);
_visitables.get("resourceRules").remove(builder);
if (this.resourceRules != null) {
this.resourceRules.remove(builder);
}
}
return (A) this;
}
public A removeAllFromResourceRules(
java.util.Collection items) {
for (io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule item : items) {
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder(item);
_visitables.get("resourceRules").remove(builder);
if (this.resourceRules != null) {
this.resourceRules.remove(builder);
}
}
return (A) this;
}
public A removeMatchingFromResourceRules(
java.util.function.Predicate<
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder>
predicate) {
if (resourceRules == null) return (A) this;
final Iterator each =
resourceRules.iterator();
final List visitables = _visitables.get("resourceRules");
while (each.hasNext()) {
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder builder = each.next();
if (predicate.test(builder)) {
visitables.remove(builder);
each.remove();
}
}
return (A) this;
}
/**
* This method has been deprecated, please use method buildResourceRules instead.
*
* @return The buildable object.
*/
@java.lang.Deprecated
public java.util.List
getResourceRules() {
return resourceRules != null ? build(resourceRules) : null;
}
public java.util.List
buildResourceRules() {
return resourceRules != null ? build(resourceRules) : null;
}
public io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule buildResourceRule(
java.lang.Integer index) {
return this.resourceRules.get(index).build();
}
public io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule buildFirstResourceRule() {
return this.resourceRules.get(0).build();
}
public io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule buildLastResourceRule() {
return this.resourceRules.get(resourceRules.size() - 1).build();
}
public io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule buildMatchingResourceRule(
java.util.function.Predicate<
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder>
predicate) {
for (io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder item :
resourceRules) {
if (predicate.test(item)) {
return item.build();
}
}
return null;
}
public java.lang.Boolean hasMatchingResourceRule(
java.util.function.Predicate<
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder>
predicate) {
for (io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder item :
resourceRules) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withResourceRules(
java.util.List resourceRules) {
if (this.resourceRules != null) {
_visitables.get("resourceRules").removeAll(this.resourceRules);
}
if (resourceRules != null) {
this.resourceRules = new java.util.ArrayList();
for (io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule item : resourceRules) {
this.addToResourceRules(item);
}
} else {
this.resourceRules = null;
}
return (A) this;
}
public A withResourceRules(
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule... resourceRules) {
if (this.resourceRules != null) {
this.resourceRules.clear();
}
if (resourceRules != null) {
for (io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule item : resourceRules) {
this.addToResourceRules(item);
}
}
return (A) this;
}
public java.lang.Boolean hasResourceRules() {
return resourceRules != null && !resourceRules.isEmpty();
}
public V1beta1PolicyRulesWithSubjectsFluent.ResourceRulesNested addNewResourceRule() {
return new V1beta1PolicyRulesWithSubjectsFluentImpl.ResourceRulesNestedImpl();
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.ResourceRulesNested<
A>
addNewResourceRuleLike(io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule item) {
return new io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluentImpl
.ResourceRulesNestedImpl(-1, item);
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.ResourceRulesNested<
A>
setNewResourceRuleLike(
java.lang.Integer index,
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRule item) {
return new io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluentImpl
.ResourceRulesNestedImpl(index, item);
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.ResourceRulesNested<
A>
editResourceRule(java.lang.Integer index) {
if (resourceRules.size() <= index)
throw new RuntimeException("Can't edit resourceRules. Index exceeds size.");
return setNewResourceRuleLike(index, buildResourceRule(index));
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.ResourceRulesNested<
A>
editFirstResourceRule() {
if (resourceRules.size() == 0)
throw new RuntimeException("Can't edit first resourceRules. The list is empty.");
return setNewResourceRuleLike(0, buildResourceRule(0));
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.ResourceRulesNested<
A>
editLastResourceRule() {
int index = resourceRules.size() - 1;
if (index < 0) throw new RuntimeException("Can't edit last resourceRules. The list is empty.");
return setNewResourceRuleLike(index, buildResourceRule(index));
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.ResourceRulesNested<
A>
editMatchingResourceRule(
java.util.function.Predicate<
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder>
predicate) {
int index = -1;
for (int i = 0; i < resourceRules.size(); i++) {
if (predicate.test(resourceRules.get(i))) {
index = i;
break;
}
}
if (index < 0) throw new RuntimeException("Can't edit matching resourceRules. No match found.");
return setNewResourceRuleLike(index, buildResourceRule(index));
}
public A addToSubjects(
java.lang.Integer index, io.kubernetes.client.openapi.models.V1beta1Subject item) {
if (this.subjects == null) {
this.subjects = new java.util.ArrayList();
}
io.kubernetes.client.openapi.models.V1beta1SubjectBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1SubjectBuilder(item);
_visitables
.get("subjects")
.add(index >= 0 ? index : _visitables.get("subjects").size(), builder);
this.subjects.add(index >= 0 ? index : subjects.size(), builder);
return (A) this;
}
public A setToSubjects(
java.lang.Integer index, io.kubernetes.client.openapi.models.V1beta1Subject item) {
if (this.subjects == null) {
this.subjects =
new java.util.ArrayList();
}
io.kubernetes.client.openapi.models.V1beta1SubjectBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1SubjectBuilder(item);
if (index < 0 || index >= _visitables.get("subjects").size()) {
_visitables.get("subjects").add(builder);
} else {
_visitables.get("subjects").set(index, builder);
}
if (index < 0 || index >= subjects.size()) {
subjects.add(builder);
} else {
subjects.set(index, builder);
}
return (A) this;
}
public A addToSubjects(io.kubernetes.client.openapi.models.V1beta1Subject... items) {
if (this.subjects == null) {
this.subjects =
new java.util.ArrayList();
}
for (io.kubernetes.client.openapi.models.V1beta1Subject item : items) {
io.kubernetes.client.openapi.models.V1beta1SubjectBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1SubjectBuilder(item);
_visitables.get("subjects").add(builder);
this.subjects.add(builder);
}
return (A) this;
}
public A addAllToSubjects(
java.util.Collection items) {
if (this.subjects == null) {
this.subjects =
new java.util.ArrayList();
}
for (io.kubernetes.client.openapi.models.V1beta1Subject item : items) {
io.kubernetes.client.openapi.models.V1beta1SubjectBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1SubjectBuilder(item);
_visitables.get("subjects").add(builder);
this.subjects.add(builder);
}
return (A) this;
}
public A removeFromSubjects(io.kubernetes.client.openapi.models.V1beta1Subject... items) {
for (io.kubernetes.client.openapi.models.V1beta1Subject item : items) {
io.kubernetes.client.openapi.models.V1beta1SubjectBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1SubjectBuilder(item);
_visitables.get("subjects").remove(builder);
if (this.subjects != null) {
this.subjects.remove(builder);
}
}
return (A) this;
}
public A removeAllFromSubjects(
java.util.Collection items) {
for (io.kubernetes.client.openapi.models.V1beta1Subject item : items) {
io.kubernetes.client.openapi.models.V1beta1SubjectBuilder builder =
new io.kubernetes.client.openapi.models.V1beta1SubjectBuilder(item);
_visitables.get("subjects").remove(builder);
if (this.subjects != null) {
this.subjects.remove(builder);
}
}
return (A) this;
}
public A removeMatchingFromSubjects(
java.util.function.Predicate
predicate) {
if (subjects == null) return (A) this;
final Iterator each =
subjects.iterator();
final List visitables = _visitables.get("subjects");
while (each.hasNext()) {
io.kubernetes.client.openapi.models.V1beta1SubjectBuilder builder = each.next();
if (predicate.test(builder)) {
visitables.remove(builder);
each.remove();
}
}
return (A) this;
}
/**
* This method has been deprecated, please use method buildSubjects instead.
*
* @return The buildable object.
*/
@java.lang.Deprecated
public java.util.List getSubjects() {
return subjects != null ? build(subjects) : null;
}
public java.util.List buildSubjects() {
return subjects != null ? build(subjects) : null;
}
public io.kubernetes.client.openapi.models.V1beta1Subject buildSubject(java.lang.Integer index) {
return this.subjects.get(index).build();
}
public io.kubernetes.client.openapi.models.V1beta1Subject buildFirstSubject() {
return this.subjects.get(0).build();
}
public io.kubernetes.client.openapi.models.V1beta1Subject buildLastSubject() {
return this.subjects.get(subjects.size() - 1).build();
}
public io.kubernetes.client.openapi.models.V1beta1Subject buildMatchingSubject(
java.util.function.Predicate
predicate) {
for (io.kubernetes.client.openapi.models.V1beta1SubjectBuilder item : subjects) {
if (predicate.test(item)) {
return item.build();
}
}
return null;
}
public java.lang.Boolean hasMatchingSubject(
java.util.function.Predicate
predicate) {
for (io.kubernetes.client.openapi.models.V1beta1SubjectBuilder item : subjects) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withSubjects(
java.util.List subjects) {
if (this.subjects != null) {
_visitables.get("subjects").removeAll(this.subjects);
}
if (subjects != null) {
this.subjects = new java.util.ArrayList();
for (io.kubernetes.client.openapi.models.V1beta1Subject item : subjects) {
this.addToSubjects(item);
}
} else {
this.subjects = null;
}
return (A) this;
}
public A withSubjects(io.kubernetes.client.openapi.models.V1beta1Subject... subjects) {
if (this.subjects != null) {
this.subjects.clear();
}
if (subjects != null) {
for (io.kubernetes.client.openapi.models.V1beta1Subject item : subjects) {
this.addToSubjects(item);
}
}
return (A) this;
}
public java.lang.Boolean hasSubjects() {
return subjects != null && !subjects.isEmpty();
}
public V1beta1PolicyRulesWithSubjectsFluent.SubjectsNested addNewSubject() {
return new V1beta1PolicyRulesWithSubjectsFluentImpl.SubjectsNestedImpl();
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent.SubjectsNested
addNewSubjectLike(io.kubernetes.client.openapi.models.V1beta1Subject item) {
return new io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluentImpl
.SubjectsNestedImpl(-1, item);
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent.SubjectsNested
setNewSubjectLike(
java.lang.Integer index, io.kubernetes.client.openapi.models.V1beta1Subject item) {
return new io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluentImpl
.SubjectsNestedImpl(index, item);
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent.SubjectsNested
editSubject(java.lang.Integer index) {
if (subjects.size() <= index)
throw new RuntimeException("Can't edit subjects. Index exceeds size.");
return setNewSubjectLike(index, buildSubject(index));
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent.SubjectsNested
editFirstSubject() {
if (subjects.size() == 0)
throw new RuntimeException("Can't edit first subjects. The list is empty.");
return setNewSubjectLike(0, buildSubject(0));
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent.SubjectsNested
editLastSubject() {
int index = subjects.size() - 1;
if (index < 0) throw new RuntimeException("Can't edit last subjects. The list is empty.");
return setNewSubjectLike(index, buildSubject(index));
}
public io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent.SubjectsNested
editMatchingSubject(
java.util.function.Predicate
predicate) {
int index = -1;
for (int i = 0; i < subjects.size(); i++) {
if (predicate.test(subjects.get(i))) {
index = i;
break;
}
}
if (index < 0) throw new RuntimeException("Can't edit matching subjects. No match found.");
return setNewSubjectLike(index, buildSubject(index));
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
V1beta1PolicyRulesWithSubjectsFluentImpl that = (V1beta1PolicyRulesWithSubjectsFluentImpl) o;
if (nonResourceRules != null
? !nonResourceRules.equals(that.nonResourceRules)
: that.nonResourceRules != null) return false;
if (resourceRules != null
? !resourceRules.equals(that.resourceRules)
: that.resourceRules != null) return false;
if (subjects != null ? !subjects.equals(that.subjects) : that.subjects != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(nonResourceRules, resourceRules, subjects, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (nonResourceRules != null && !nonResourceRules.isEmpty()) {
sb.append("nonResourceRules:");
sb.append(nonResourceRules + ",");
}
if (resourceRules != null && !resourceRules.isEmpty()) {
sb.append("resourceRules:");
sb.append(resourceRules + ",");
}
if (subjects != null && !subjects.isEmpty()) {
sb.append("subjects:");
sb.append(subjects);
}
sb.append("}");
return sb.toString();
}
class NonResourceRulesNestedImpl
extends V1beta1NonResourcePolicyRuleFluentImpl<
V1beta1PolicyRulesWithSubjectsFluent.NonResourceRulesNested>
implements io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.NonResourceRulesNested<
N>,
Nested {
NonResourceRulesNestedImpl(
java.lang.Integer index,
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRule item) {
this.index = index;
this.builder = new V1beta1NonResourcePolicyRuleBuilder(this, item);
}
NonResourceRulesNestedImpl() {
this.index = -1;
this.builder =
new io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder(this);
}
io.kubernetes.client.openapi.models.V1beta1NonResourcePolicyRuleBuilder builder;
java.lang.Integer index;
public N and() {
return (N)
V1beta1PolicyRulesWithSubjectsFluentImpl.this.setToNonResourceRules(
index, builder.build());
}
public N endNonResourceRule() {
return and();
}
}
class ResourceRulesNestedImpl
extends V1beta1ResourcePolicyRuleFluentImpl<
V1beta1PolicyRulesWithSubjectsFluent.ResourceRulesNested>
implements io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.ResourceRulesNested<
N>,
io.kubernetes.client.fluent.Nested {
ResourceRulesNestedImpl(java.lang.Integer index, V1beta1ResourcePolicyRule item) {
this.index = index;
this.builder = new V1beta1ResourcePolicyRuleBuilder(this, item);
}
ResourceRulesNestedImpl() {
this.index = -1;
this.builder = new io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder(this);
}
io.kubernetes.client.openapi.models.V1beta1ResourcePolicyRuleBuilder builder;
java.lang.Integer index;
public N and() {
return (N)
V1beta1PolicyRulesWithSubjectsFluentImpl.this.setToResourceRules(index, builder.build());
}
public N endResourceRule() {
return and();
}
}
class SubjectsNestedImpl
extends V1beta1SubjectFluentImpl>
implements io.kubernetes.client.openapi.models.V1beta1PolicyRulesWithSubjectsFluent
.SubjectsNested<
N>,
io.kubernetes.client.fluent.Nested {
SubjectsNestedImpl(java.lang.Integer index, V1beta1Subject item) {
this.index = index;
this.builder = new V1beta1SubjectBuilder(this, item);
}
SubjectsNestedImpl() {
this.index = -1;
this.builder = new io.kubernetes.client.openapi.models.V1beta1SubjectBuilder(this);
}
io.kubernetes.client.openapi.models.V1beta1SubjectBuilder builder;
java.lang.Integer index;
public N and() {
return (N)
V1beta1PolicyRulesWithSubjectsFluentImpl.this.setToSubjects(index, builder.build());
}
public N endSubject() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy