All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mesosphere.mesos.client.model.MesosFramework Maven / Gradle / Ivy

There is a newer version: 0.6.3
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy