mesosphere.mesos.client.model.MesosMasterState 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 MesosMasterState extends MesosState {
private List frameworks;
public List getFrameworks() {
return frameworks;
}
}