![JAR search and dependency download from the Maven repository](/logo.png)
mesosphere.mesos.client.model.MesosTask 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;
public class MesosTask {
private String id;
private String name;
private String framework_id;
private String slave_id;
private String executor_id;
public String getId() {
return id;
}
public String getName() {
return name;
}
public String getFramework_id() {
return framework_id;
}
public String getSlave_id() {
return slave_id;
}
public String getExecutor_id() {
return executor_id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy