mesosphere.mesos.client.model.MesosFramework 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.mesos.client.model;
import java.util.List;
public class MesosFramework {
private String id;
private String name;
private List completed_tasks;
private List completed_executors;
public String getId() {
return id;
}
public String getName() {
return name;
}
public List getCompleted_tasks() {
return completed_tasks;
}
public List getCompleted_executors() {
return completed_executors;
}
}