strolch/li.strolch.service/src/main/java/li/strolch/report/ReportSearch.java

18 lines
298 B
Java

package li.strolch.report;
import static li.strolch.report.ReportConstants.TYPE_REPORT;
import li.strolch.search.ResourceSearch;
/**
* Query to get report resources
*
* @author mvoigt
*/
public class ReportSearch extends ResourceSearch {
public ReportSearch() {
types(TYPE_REPORT);
}
}