mesosphere.marathon.client.model.v2.GetAppVersionResponse 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.client.common.ModelUtils;
/**
* Created by tt044106 on 10/28/16.
*/
public class GetAppVersionResponse {
private Collection versions;
public Collection getVersions() {
return versions;
}
public void setVersions(Collection versions) {
this.versions = versions;
}
@Override
public String toString() {
return ModelUtils.toString(this);
}
}