io.fabric8.kubernetes.api.model.EndpointAddressFluentImpl 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.BaseFluent;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import io.fabric8.kubernetes.api.builder.Fluent;
import io.fabric8.kubernetes.api.builder.Nested;
public class EndpointAddressFluentImpl> extends BaseFluent implements EndpointAddressFluent{
String ip; VisitableBuilder targetRef; Map additionalProperties = new HashMap();
public EndpointAddressFluentImpl(){
}
public EndpointAddressFluentImpl( EndpointAddress instance ){
this.withIp(instance.getIp()); this.withTargetRef(instance.getTargetRef());
}
public String getIp(){
return this.ip;
}
public T withIp( String ip){
this.ip=ip; return (T) this;
}
public ObjectReference getTargetRef(){
return this.targetRef!=null?this.targetRef.build():null;
}
public T withTargetRef( ObjectReference targetRef){
if (targetRef!=null){ this.targetRef= new ObjectReferenceBuilder(targetRef); _visitables.add(this.targetRef);} return (T) this;
}
public TargetRefNested withNewTargetRef(){
return new TargetRefNestedImpl();
}
public TargetRefNested withNewTargetRefLike( ObjectReference item){
return new TargetRefNestedImpl(item);
}
public TargetRefNested editTargetRef(){
return withNewTargetRefLike(getTargetRef());
}
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;
EndpointAddressFluentImpl that = (EndpointAddressFluentImpl) o;
if (ip != null ? !ip.equals(that.ip) :that.ip != null) return false;
if (targetRef != null ? !targetRef.equals(that.targetRef) :that.targetRef != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;
}
public class TargetRefNestedImpl extends ObjectReferenceFluentImpl> implements TargetRefNested{
private final ObjectReferenceBuilder builder;
TargetRefNestedImpl (){
this.builder = new ObjectReferenceBuilder(this);
}
TargetRefNestedImpl ( ObjectReference item){
this.builder = new ObjectReferenceBuilder(this, item);
}
public N endTargetRef(){
return and();
}
public N and(){
return (N) EndpointAddressFluentImpl.this.withTargetRef(builder.build());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy