Package io.goobi.viewer.controller
Interface DAOSearchFunction<T>
- Type Parameters:
T- the type of entity returned by the search
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface for paginated, sorted, and filtered DAO search operations that return a list of entities.
-
Method Summary
-
Method Details
-
apply
List<T> apply(int first, int pageSize, String sortField, boolean descending, Map<String, String> filters) throws DAOException- Throws:
DAOException
-