
com.github.chen0040.mesos.client.marathon.MarathonJobInfoList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-mesos-client Show documentation
Show all versions of java-mesos-client Show documentation
Java client for communicating with Meossphere Marathon and Chronos
The newest version!
package com.github.chen0040.mesos.client.marathon;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
/**
* Created by xschen on 25/6/2016.
*/
public class MarathonJobInfoList implements Serializable {
private static final long serialVersionUID = 1573582201438848637L;
private List apps = new ArrayList<>();
public List getApps() {
return apps;
}
public void setApps(List apps) {
this.apps = apps;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy