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

annotations.io.fabric8.docker.api.model.VolumeCreateRequestFluentImpl Maven / Gradle / Ivy

There is a newer version: 1.0.15
Show newest version
package io.fabric8.docker.api.model;

import java.util.HashMap;
import java.io.Serializable;
import java.util.Map;
import java.util.Map;
import java.util.Map;
import java.util.AbstractMap;
import io.fabric8.docker.api.builder.Visitable;
import io.fabric8.docker.api.builder.BaseFluent;
import io.fabric8.docker.api.builder.Fluent;

public class VolumeCreateRequestFluentImpl> extends BaseFluent implements VolumeCreateRequestFluent{

     String Driver;     Map DriverOpts = new HashMap();     String Name;     Map additionalProperties = new HashMap();
public VolumeCreateRequestFluentImpl(){
    
}
public VolumeCreateRequestFluentImpl( VolumeCreateRequest instance ){
    this.withDriver(instance.getDriver()); this.withDriverOpts(instance.getDriverOpts()); this.withName(instance.getName()); 
}

    public String getDriver(){
    return this.Driver;
    }
    public T withDriver( String Driver){
    this.Driver=Driver; return (T) this;
    }
    public T addToDriverOpts( String key,  String value){
    if(key != null && value != null) {this.DriverOpts.put(key, value);} return (T)this;
    }
    public T addToDriverOpts( Map map){
    if(map != null) { this.DriverOpts.putAll(map);} return (T)this;
    }
    public T removeFromDriverOpts( String key){
    if(key != null) {this.DriverOpts.remove(key);} return (T)this;
    }
    public T removeFromDriverOpts( Map map){
    if(map != null) { for(Object key : map.keySet()) {this.DriverOpts.remove(key);}} return (T)this;
    }
    public Map getDriverOpts(){
    return this.DriverOpts;
    }
    public T withDriverOpts( Map DriverOpts){
    this.DriverOpts.clear();if (DriverOpts != null) {this.DriverOpts.putAll(DriverOpts);} return (T) this;
    }
    public String getName(){
    return this.Name;
    }
    public T withName( String Name){
    this.Name=Name; 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;
VolumeCreateRequestFluentImpl that = (VolumeCreateRequestFluentImpl) o;
if (Driver != null ? !Driver.equals(that.Driver) :that.Driver != null) return false;
if (DriverOpts != null ? !DriverOpts.equals(that.DriverOpts) :that.DriverOpts != null) return false;
if (Name != null ? !Name.equals(that.Name) :that.Name != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;

    }



}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy