mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-19 16:03:07 +00:00
[Task 72498] added the searchByProperty endpoint on the Process endpoints
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user