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

nl.renarj.jasdb.rest.model.StatisticCollection Maven / Gradle / Ivy

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