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

org.voovan.docker.message.container.atom.Mount Maven / Gradle / Ivy

Go to download

By encapsulating the Docker API enables developers to use Java can quickly developed the control and operation of the Docker application, using streaming operation, simple and clear.

The newest version!
package org.voovan.docker.message.container.atom;

/**
 *
 * @author helyho
 * 

* DockerFly Framework. * WebSite: https://git.oschina.net/helyho/JDocker * Licence: Apache v2 License */ public class Mount { private String name; private String source; private String destination; private String type; private String driver; private String mode; private Boolean rw; private String propagation; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getSource() { return source; } public void setSource(String source) { this.source = source; } public String getDestination() { return destination; } public void setDestination(String destination) { this.destination = destination; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getDriver() { return driver; } public void setDriver(String driver) { this.driver = driver; } public String getMode() { return mode; } public void setMode(String mode) { this.mode = mode; } public Boolean isRw() { return rw; } public void setRw(Boolean rw) { this.rw = rw; } public String getPropagation() { return propagation; } public void setPropagation(String propagation) { this.propagation = propagation; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy