mesosphere.marathon.client.model.v2.Docker 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 java.util.Collection;
import mesosphere.marathon.client.utils.ModelUtils;
public class Docker {
private String image;
private String network;
private Collection portMappings;
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
public String getNetwork() {
return network;
}
public void setNetwork(String network) {
this.network = network;
}
public Collection getPortMappings() {
return portMappings;
}
public void setPortMappings(Collection portMappings) {
this.portMappings = portMappings;
}
@Override
public String toString() {
return ModelUtils.toString(this);
}
}