List<Task> |
TaskApi.searchTasks(Integer p,
Integer c,
List<String> f,
String o) |
Finds Tasks
Finds Tasks with pagination params and filters - can order on `caseId`, `processId`, `state`, `type`, `supervisor_id`, `last_update_date` - can filter on `caseId`, `processId`, `state`, `type`, `supervisor_id`, `last_update_date`
|
List<Task> |
TaskApi.searchTasks(Map<String,Object> queryParams) |
Finds Tasks
Finds Tasks with pagination params and filters - can order on `caseId`, `processId`, `state`, `type`, `supervisor_id`, `last_update_date` - can filter on `caseId`, `processId`, `state`, `type`, `supervisor_id`, `last_update_date`
Note, this is equivalent to the other searchTasks method,
but with the query parameters collected into a single Map parameter.
|