mesosphere.marathon.client.model.v2.Volume Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marathon-client Show documentation
Show all versions of marathon-client Show documentation
A Java API client for Mesosphere's Marathon.
package mesosphere.marathon.client.model.v2;
import mesosphere.marathon.client.utils.ModelUtils;
public class Volume {
private String containerPath;
private String hostPath;
private String mode;
public String getContainerPath() {
return containerPath;
}
public void setContainerPath(String containerPath) {
this.containerPath = containerPath;
}
public String getHostPath() {
return hostPath;
}
public void setHostPath(String hostPath) {
this.hostPath = hostPath;
}
public String getMode() {
return mode;
}
public void setMode(String mode) {
this.mode = mode;
}
@Override
public String toString() {
return ModelUtils.toString(this);
}
}