io.fabric8.openshift.api.model.OAuthClientAuthorizationFluentImpl Maven / Gradle / Ivy
package io.fabric8.openshift.api.model;
import java.util.ArrayList;
import java.util.RandomAccess;
import java.util.Map;
import java.util.Map;
import java.util.List;
import java.util.List;
import java.util.AbstractCollection;
import java.util.AbstractList;
import java.util.HashMap;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import java.io.Serializable;
import java.util.Collection;
import java.util.AbstractMap;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.Builder;
import io.fabric8.kubernetes.api.model.ObjectMetaBuilder;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.model.ObjectMetaFluent;
import io.fabric8.kubernetes.api.model.ObjectMetaFluentImpl;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.builder.Fluent;
import io.fabric8.kubernetes.api.builder.Nested;
public class OAuthClientAuthorizationFluentImpl> extends BaseFluent implements OAuthClientAuthorizationFluent{
String apiVersion; String clientName; String kind; VisitableBuilder metadata; List scopes = new ArrayList(); String userName; String userUID; Map additionalProperties = new HashMap();
public OAuthClientAuthorizationFluentImpl(){
}
public OAuthClientAuthorizationFluentImpl( OAuthClientAuthorization instance ){
this.withApiVersion(instance.getApiVersion()); this.withClientName(instance.getClientName()); this.withKind(instance.getKind()); this.withMetadata(instance.getMetadata()); this.withScopes(instance.getScopes()); this.withUserName(instance.getUserName()); this.withUserUID(instance.getUserUID());
}
public String getApiVersion(){
return this.apiVersion;
}
public T withApiVersion( String apiVersion){
this.apiVersion=apiVersion; return (T) this;
}
public String getClientName(){
return this.clientName;
}
public T withClientName( String clientName){
this.clientName=clientName; return (T) this;
}
public String getKind(){
return this.kind;
}
public T withKind( String kind){
this.kind=kind; return (T) this;
}
public ObjectMeta getMetadata(){
return this.metadata!=null?this.metadata.build():null;
}
public T withMetadata( ObjectMeta metadata){
if (metadata!=null){ this.metadata= new ObjectMetaBuilder(metadata); _visitables.add(this.metadata);} return (T) this;
}
public MetadataNested withNewMetadata(){
return new MetadataNestedImpl();
}
public MetadataNested withNewMetadataLike( ObjectMeta item){
return new MetadataNestedImpl(item);
}
public MetadataNested editMetadata(){
return withNewMetadataLike(getMetadata());
}
public T addToScopes( String ...items){
for (String item : items) {this.scopes.add(item);} return (T)this;
}
public T removeFromScopes( String ...items){
for (String item : items) {this.scopes.remove(item);} return (T)this;
}
public List getScopes(){
return this.scopes;
}
public T withScopes( List scopes){
this.scopes.clear();if (scopes != null) {for (String item : scopes){this.addToScopes(item);}} return (T) this;
}
public T withScopes( String ...scopes){
this.scopes.clear(); if (scopes != null) {for (String item :scopes){ this.addToScopes(item);}} return (T) this;
}
public String getUserName(){
return this.userName;
}
public T withUserName( String userName){
this.userName=userName; return (T) this;
}
public String getUserUID(){
return this.userUID;
}
public T withUserUID( String userUID){
this.userUID=userUID; return (T) this;
}
public T addToAdditionalProperties( String key, Object value){
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (T)this;
}
public T addToAdditionalProperties( Map map){
if(map != null) { this.additionalProperties.putAll(map);} return (T)this;
}
public T removeFromAdditionalProperties( String key){
if(key != null) {this.additionalProperties.remove(key);} return (T)this;
}
public T removeFromAdditionalProperties( Map map){
if(map != null) { for(Object key : map.keySet()) {this.additionalProperties.remove(key);}} return (T)this;
}
public Map getAdditionalProperties(){
return this.additionalProperties;
}
public T withAdditionalProperties( Map additionalProperties){
this.additionalProperties.clear();if (additionalProperties != null) {this.additionalProperties.putAll(additionalProperties);} return (T) this;
}
public boolean equals( Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
OAuthClientAuthorizationFluentImpl that = (OAuthClientAuthorizationFluentImpl) o;
if (apiVersion != null ? !apiVersion.equals(that.apiVersion) :that.apiVersion != null) return false;
if (clientName != null ? !clientName.equals(that.clientName) :that.clientName != null) return false;
if (kind != null ? !kind.equals(that.kind) :that.kind != null) return false;
if (metadata != null ? !metadata.equals(that.metadata) :that.metadata != null) return false;
if (scopes != null ? !scopes.equals(that.scopes) :that.scopes != null) return false;
if (userName != null ? !userName.equals(that.userName) :that.userName != null) return false;
if (userUID != null ? !userUID.equals(that.userUID) :that.userUID != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;
}
public class MetadataNestedImpl extends ObjectMetaFluentImpl> implements MetadataNested{
private final ObjectMetaBuilder builder;
MetadataNestedImpl ( ObjectMeta item){
this.builder = new ObjectMetaBuilder(this, item);
}
MetadataNestedImpl (){
this.builder = new ObjectMetaBuilder(this);
}
public N and(){
return (N) OAuthClientAuthorizationFluentImpl.this.withMetadata(builder.build());
}
public N endMetadata(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy