All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fabric8.kubernetes.api.model.NamedAuthInfoFluentImpl Maven / Gradle / Ivy

package io.fabric8.kubernetes.api.model;

import java.util.HashMap;
import java.io.Serializable;
import java.util.Map;
import java.util.Map;
import java.util.AbstractMap;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.Builder;
import io.fabric8.kubernetes.api.builder.Visitable;
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 NamedAuthInfoFluentImpl> extends BaseFluent implements NamedAuthInfoFluent{

     String name;     VisitableBuilder user;     Map additionalProperties = new HashMap();
public NamedAuthInfoFluentImpl(){
    
}
public NamedAuthInfoFluentImpl( NamedAuthInfo instance ){
    this.withName(instance.getName()); this.withUser(instance.getUser()); 
}

    public String getName(){
    return this.name;
    }
    public T withName( String name){
    this.name=name; return (T) this;
    }
    public AuthInfo getUser(){
    return this.user!=null?this.user.build():null;
    }
    public T withUser( AuthInfo user){
    if (user!=null){ this.user= new AuthInfoBuilder(user); _visitables.add(this.user);} return (T) this;
    }
    public UserNested withNewUser(){
    return new UserNestedImpl();
    }
    public UserNested withNewUserLike( AuthInfo item){
    return new UserNestedImpl(item);
    }
    public UserNested editUser(){
    return withNewUserLike(getUser());
    }
    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;
NamedAuthInfoFluentImpl that = (NamedAuthInfoFluentImpl) o;
if (name != null ? !name.equals(that.name) :that.name != null) return false;
if (user != null ? !user.equals(that.user) :that.user != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;

    }

    public class UserNestedImpl extends AuthInfoFluentImpl> implements UserNested{

        private final AuthInfoBuilder builder;
    
             UserNestedImpl (){
        this.builder = new AuthInfoBuilder(this);
        }
             UserNestedImpl ( AuthInfo item){
        this.builder = new AuthInfoBuilder(this, item);
        }
    
            public N and(){
            return (N) NamedAuthInfoFluentImpl.this.withUser(builder.build());
        }
            public N endUser(){
            return and();
        }
    
}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy