nl.renarj.jasdb.rest.model.StatisticCollection Maven / Gradle / Ivy
package nl.renarj.jasdb.rest.model;
import java.util.List;
/**
* @author: renarj
* Date: 1-5-12
* Time: 21:45
*/
public class StatisticCollection implements RestEntity {
private List stats;
public StatisticCollection(List stats) {
this.stats = stats;
}
public List getStats() {
return stats;
}
public void setStats(List stats) {
this.stats = stats;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy