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

io.fabric8.kubernetes.api.model.extensions.IngressBackendFluentImpl Maven / Gradle / Ivy

There is a newer version: 6.13.4
Show newest version
package io.fabric8.kubernetes.api.model.extensions;

import io.fabric8.kubernetes.api.model.IntOrString;
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.model.IntOrStringFluentImpl;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import io.fabric8.kubernetes.api.model.IntOrStringBuilder;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.model.IntOrStringFluent;
import io.fabric8.kubernetes.api.builder.Fluent;
import io.fabric8.kubernetes.api.builder.Nested;

public class IngressBackendFluentImpl> extends BaseFluent implements IngressBackendFluent{

     String serviceName;     VisitableBuilder servicePort;     Map additionalProperties = new HashMap();
public IngressBackendFluentImpl(){
    
}
public IngressBackendFluentImpl( IngressBackend instance ){
    this.withServiceName(instance.getServiceName()); this.withServicePort(instance.getServicePort()); 
}

    public String getServiceName(){
    return this.serviceName;
    }
    public T withServiceName( String serviceName){
    this.serviceName=serviceName; return (T) this;
    }
    public IntOrString getServicePort(){
    return this.servicePort!=null?this.servicePort.build():null;
    }
    public T withServicePort( IntOrString servicePort){
    if (servicePort!=null){ this.servicePort= new IntOrStringBuilder(servicePort); _visitables.add(this.servicePort);} return (T) this;
    }
    public ServicePortNested withNewServicePort(){
    return new ServicePortNestedImpl();
    }
    public ServicePortNested withNewServicePortLike( IntOrString item){
    return new ServicePortNestedImpl(item);
    }
    public ServicePortNested editServicePort(){
    return withNewServicePortLike(getServicePort());
    }
    public T withNewServicePort( String strVal){
    return withServicePort(new IntOrString(strVal));
    }
    public T withNewServicePort( Integer intVal){
    return withServicePort(new IntOrString(intVal));
    }
    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;
IngressBackendFluentImpl that = (IngressBackendFluentImpl) o;
if (serviceName != null ? !serviceName.equals(that.serviceName) :that.serviceName != null) return false;
if (servicePort != null ? !servicePort.equals(that.servicePort) :that.servicePort != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;

    }

    public class ServicePortNestedImpl extends IntOrStringFluentImpl> implements ServicePortNested{

        private final IntOrStringBuilder builder;
    
             ServicePortNestedImpl (){
        this.builder = new IntOrStringBuilder(this);
        }
             ServicePortNestedImpl ( IntOrString item){
        this.builder = new IntOrStringBuilder(this, item);
        }
    
            public N and(){
            return (N) IngressBackendFluentImpl.this.withServicePort(builder.build());
        }
            public N endServicePort(){
            return and();
        }
    
}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy