[Task 72498] added the searchByProperty endpoint on the Process endpoints

This commit is contained in:
Raf Ponsaerts
2020-08-13 09:15:26 +02:00
parent d1ee942bd4
commit 68389c1863
10 changed files with 529 additions and 1 deletions

View File

@@ -245,4 +245,17 @@ public class ProcessServiceImpl implements ProcessService {
return new ArrayList<>(fileTypesSet);
}
@Override
public List<Process> search(Context context, ProcessQueryParameterContainer processQueryParameterContainer,
int limit, int offset) throws SQLException {
return processDAO.search(context, processQueryParameterContainer, limit, offset);
}
@Override
public int countSearch(Context context, ProcessQueryParameterContainer processQueryParameterContainer)
throws SQLException {
return processDAO.countTotalWithParameters(context, processQueryParameterContainer);
}
}