mesosphere.marathon.client.model.v2.Container 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.
The newest version!
package mesosphere.marathon.client.model.v2;
import java.util.Collection;
import mesosphere.marathon.client.utils.ModelUtils;
public class Container {
private String type;
private Docker docker;
private Collection volumes;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Docker getDocker() {
return docker;
}
public void setDocker(Docker docker) {
this.docker = docker;
}
public Collection getVolumes() {
return volumes;
}
public void setVolumes(Collection volumes) {
this.volumes = volumes;
}
@Override
public String toString() {
return ModelUtils.toString(this);
}
}