argos/dmp-backend/web/src/main/java/eu/eudat/controllers/publicapi/query/definition/Collector.java

14 lines
312 B
Java
Raw Normal View History

package eu.eudat.controllers.publicapi.query.definition;
2018-03-21 13:11:02 +01:00
import eu.eudat.controllers.publicapi.QueryableList;
2018-03-21 13:11:02 +01:00
/**
* Created by ikalyvas on 3/21/2018.
*/
2024-02-01 16:29:04 +01:00
public interface Collector<T> {
2018-03-21 14:15:06 +01:00
QueryableList<T> collect() throws Exception;
QueryableList<T> collect(QueryableList<T> repo) throws Exception;
2018-03-21 13:11:02 +01:00
}