
annotations.io.fabric8.docker.api.model.MountPointFluentImpl Maven / Gradle / Ivy
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.AbstractMap;
import io.fabric8.docker.api.builder.Visitable;
import io.fabric8.docker.api.builder.BaseFluent;
import io.fabric8.docker.api.builder.Fluent;
public class MountPointFluentImpl> extends BaseFluent implements MountPointFluent{
String Destination; String Driver; String Mode; String Name; Boolean RW; String Source; Map additionalProperties = new HashMap();
public MountPointFluentImpl(){
}
public MountPointFluentImpl( MountPoint instance ){
this.withDestination(instance.getDestination()); this.withDriver(instance.getDriver()); this.withMode(instance.getMode()); this.withName(instance.getName()); this.withRW(instance.getRW()); this.withSource(instance.getSource());
}
public String getDestination(){
return this.Destination;
}
public T withDestination( String Destination){
this.Destination=Destination; return (T) this;
}
public String getDriver(){
return this.Driver;
}
public T withDriver( String Driver){
this.Driver=Driver; return (T) this;
}
public String getMode(){
return this.Mode;
}
public T withMode( String Mode){
this.Mode=Mode; return (T) this;
}
public String getName(){
return this.Name;
}
public T withName( String Name){
this.Name=Name; return (T) this;
}
public Boolean isRW(){
return this.RW;
}
public T withRW( Boolean RW){
this.RW=RW; return (T) this;
}
public String getSource(){
return this.Source;
}
public T withSource( String Source){
this.Source=Source; 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;
MountPointFluentImpl that = (MountPointFluentImpl) o;
if (Destination != null ? !Destination.equals(that.Destination) :that.Destination != null) return false;
if (Driver != null ? !Driver.equals(that.Driver) :that.Driver != null) return false;
if (Mode != null ? !Mode.equals(that.Mode) :that.Mode != null) return false;
if (Name != null ? !Name.equals(that.Name) :that.Name != null) return false;
if (RW != null ? !RW.equals(that.RW) :that.RW != null) return false;
if (Source != null ? !Source.equals(that.Source) :that.Source != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy