mesosphere.marathon.client.model.v2.GetDeploymentsResponse 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.List;
import mesosphere.client.common.ModelUtils;
public class GetDeploymentsResponse {
private List deployments;
public List getDeployments() {
return deployments;
}
public void setDeployments(List deployments) {
this.deployments = deployments;
}
@Override
public String toString() {
return ModelUtils.toString(this);
}
}