List<HumanTask> |
HumanTaskApi.searchHumanTasks(Integer p,
Integer c,
List<String> f,
String o,
String s) |
Finds HumanTasks
Finds HumanTasks with pagination params and filters - can order on `name`, `priority`, `dueDate`, `state`, `processDefinitionId`, `processInstanceId`, `parentActivityInstanceId`, `assigneeId`, `parentContainerId`, `displayName`, `reachedStateDate` - can search on any field that can be used to order results - can filter on `assigned_id`, `state`, `name`, `displayName`, `processDefinitionId`, `caseId`, `rootProcessInstanceId`, `parentProcessInstanceId`
|
List<HumanTask> |
HumanTaskApi.searchHumanTasks(Map<String,Object> queryParams) |
Finds HumanTasks
Finds HumanTasks with pagination params and filters - can order on `name`, `priority`, `dueDate`, `state`, `processDefinitionId`, `processInstanceId`, `parentActivityInstanceId`, `assigneeId`, `parentContainerId`, `displayName`, `reachedStateDate` - can search on any field that can be used to order results - can filter on `assigned_id`, `state`, `name`, `displayName`, `processDefinitionId`, `caseId`, `rootProcessInstanceId`, `parentProcessInstanceId`
Note, this is equivalent to the other searchHumanTasks method,
but with the query parameters collected into a single Map parameter.
|