mesosphere.marathon.client.model.v2.GetTasksResponse 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 GetTasksResponse {
private Collection tasks;
public Collection getTasks() {
return tasks;
}
public void setTasks(Collection tasks) {
this.tasks = tasks;
}
@Override
public String toString() {
return ModelUtils.toString(this);
}
}