io.kubernetes.client.openapi.models.V1TokenReviewStatusFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.Nested;
import java.util.ArrayList;
import java.lang.String;
import java.util.function.Predicate;
import java.lang.Integer;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.Boolean;
/**
* Generated
*/
@SuppressWarnings(value = "unchecked")
public class V1TokenReviewStatusFluentImpl> extends BaseFluent implements V1TokenReviewStatusFluent{
public V1TokenReviewStatusFluentImpl() {
}
public V1TokenReviewStatusFluentImpl(V1TokenReviewStatus instance) {
this.withAudiences(instance.getAudiences());
this.withAuthenticated(instance.getAuthenticated());
this.withError(instance.getError());
this.withUser(instance.getUser());
}
private List audiences;
private Boolean authenticated;
private String error;
private V1UserInfoBuilder user;
public A addToAudiences(Integer index,String item) {
if (this.audiences == null) {this.audiences = new ArrayList();}
this.audiences.add(index, item);
return (A)this;
}
public A setToAudiences(Integer index,String item) {
if (this.audiences == null) {this.audiences = new ArrayList();}
this.audiences.set(index, item); return (A)this;
}
public A addToAudiences(java.lang.String... items) {
if (this.audiences == null) {this.audiences = new ArrayList();}
for (String item : items) {this.audiences.add(item);} return (A)this;
}
public A addAllToAudiences(Collection items) {
if (this.audiences == null) {this.audiences = new ArrayList();}
for (String item : items) {this.audiences.add(item);} return (A)this;
}
public A removeFromAudiences(java.lang.String... items) {
for (String item : items) {if (this.audiences!= null){ this.audiences.remove(item);}} return (A)this;
}
public A removeAllFromAudiences(Collection items) {
for (String item : items) {if (this.audiences!= null){ this.audiences.remove(item);}} return (A)this;
}
public List getAudiences() {
return this.audiences;
}
public String getAudience(Integer index) {
return this.audiences.get(index);
}
public String getFirstAudience() {
return this.audiences.get(0);
}
public String getLastAudience() {
return this.audiences.get(audiences.size() - 1);
}
public String getMatchingAudience(Predicate predicate) {
for (String item: audiences) { if(predicate.test(item)){ return item;} } return null;
}
public Boolean hasMatchingAudience(Predicate predicate) {
for (String item: audiences) { if(predicate.test(item)){ return true;} } return false;
}
public A withAudiences(List audiences) {
if (audiences != null) {this.audiences = new ArrayList(); for (String item : audiences){this.addToAudiences(item);}} else { this.audiences = null;} return (A) this;
}
public A withAudiences(java.lang.String... audiences) {
if (this.audiences != null) {this.audiences.clear();}
if (audiences != null) {for (String item :audiences){ this.addToAudiences(item);}} return (A) this;
}
public Boolean hasAudiences() {
return audiences != null && !audiences.isEmpty();
}
public Boolean getAuthenticated() {
return this.authenticated;
}
public A withAuthenticated(Boolean authenticated) {
this.authenticated=authenticated; return (A) this;
}
public Boolean hasAuthenticated() {
return this.authenticated != null;
}
public String getError() {
return this.error;
}
public A withError(String error) {
this.error=error; return (A) this;
}
public Boolean hasError() {
return this.error != null;
}
/**
* This method has been deprecated, please use method buildUser instead.
* @return The buildable object.
*/
@Deprecated
public V1UserInfo getUser() {
return this.user!=null ?this.user.build():null;
}
public V1UserInfo buildUser() {
return this.user!=null ?this.user.build():null;
}
public A withUser(V1UserInfo user) {
_visitables.get("user").remove(this.user);
if (user!=null){ this.user= new V1UserInfoBuilder(user); _visitables.get("user").add(this.user);} else { this.user = null; _visitables.get("user").remove(this.user); } return (A) this;
}
public Boolean hasUser() {
return this.user != null;
}
public V1TokenReviewStatusFluent.UserNested withNewUser() {
return new V1TokenReviewStatusFluentImpl.UserNestedImpl();
}
public V1TokenReviewStatusFluent.UserNested withNewUserLike(V1UserInfo item) {
return new V1TokenReviewStatusFluentImpl.UserNestedImpl(item);
}
public V1TokenReviewStatusFluent.UserNested editUser() {
return withNewUserLike(getUser());
}
public V1TokenReviewStatusFluent.UserNested editOrNewUser() {
return withNewUserLike(getUser() != null ? getUser(): new V1UserInfoBuilder().build());
}
public V1TokenReviewStatusFluent.UserNested editOrNewUserLike(V1UserInfo item) {
return withNewUserLike(getUser() != null ? getUser(): item);
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
V1TokenReviewStatusFluentImpl that = (V1TokenReviewStatusFluentImpl) o;
if (audiences != null ? !audiences.equals(that.audiences) :that.audiences != null) return false;
if (authenticated != null ? !authenticated.equals(that.authenticated) :that.authenticated != null) return false;
if (error != null ? !error.equals(that.error) :that.error != null) return false;
if (user != null ? !user.equals(that.user) :that.user != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(audiences, authenticated, error, user, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (audiences != null && !audiences.isEmpty()) { sb.append("audiences:"); sb.append(audiences + ","); }
if (authenticated != null) { sb.append("authenticated:"); sb.append(authenticated + ","); }
if (error != null) { sb.append("error:"); sb.append(error + ","); }
if (user != null) { sb.append("user:"); sb.append(user); }
sb.append("}");
return sb.toString();
}
public A withAuthenticated() {
return withAuthenticated(true);
}
class UserNestedImpl extends V1UserInfoFluentImpl> implements V1TokenReviewStatusFluent.UserNested,Nested{
UserNestedImpl(V1UserInfo item) {
this.builder = new V1UserInfoBuilder(this, item);
}
UserNestedImpl() {
this.builder = new V1UserInfoBuilder(this);
}
V1UserInfoBuilder builder;
public N and() {
return (N) V1TokenReviewStatusFluentImpl.this.withUser(builder.build());
}
public N endUser() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy