package eu.eudat.controllers.publicapi.query.definition; import eu.eudat.controllers.publicapi.QueryableList; /** * Created by ikalyvas on 3/21/2018. */ public interface Collector { QueryableList collect() throws Exception; QueryableList collect(QueryableList repo) throws Exception; }