Uses of Class
org.bonitasoft.web.client.model.Task
-
Packages that use Task Package Description org.bonitasoft.web.client.api org.bonitasoft.web.client.model -
-
Uses of Task in org.bonitasoft.web.client.api
Methods in org.bonitasoft.web.client.api that return Task Modifier and Type Method Description TaskTaskApi. getTaskById(String id)Finds the Task by ID Returns the single Task for the given IDMethods in org.bonitasoft.web.client.api that return types with arguments of type Task Modifier and Type Method Description ApiResponse<Task>TaskApi. getTaskByIdWithHttpInfo(String id)Finds the Task by ID Similar togetTaskByIdbut it also returns the http response headers .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 othersearchTasksmethod, but with the query parameters collected into a single Map parameter.ApiResponse<List<Task>>TaskApi. searchTasksWithHttpInfo(Integer p, Integer c, List<String> f, String o)Finds Tasks Similar tosearchTasksbut it also returns the http response headers .ApiResponse<List<Task>>TaskApi. searchTasksWithHttpInfo(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 othersearchTasksthat receives the query parameters as a map, but this one also exposes the Http response headers -
Uses of Task in org.bonitasoft.web.client.model
Methods in org.bonitasoft.web.client.model that return Task Modifier and Type Method Description TaskTask. actorId(String actorId)TaskTask. assignedDate(String assignedDate)TaskTask. assignedId(String assignedId)TaskTask. description(String description)TaskTask. displayDescription(String displayDescription)TaskTask. displayName(String displayName)TaskTask. dueDate(String dueDate)TaskTask. executedBy(String executedBy)TaskTask. executedBySubstitute(String executedBySubstitute)TaskTask. id(String id)TaskTask. isTerminal(Boolean isTerminal)TaskTask. lastUpdateDate(String lastUpdateDate)TaskTask. name(String name)TaskTask. parentCaseId(String parentCaseId)TaskTask. parentTaskId(String parentTaskId)TaskTask. priority(String priority)TaskTask. processId(String processId)TaskTask. reachedStateDate(String reachedStateDate)TaskTask. rootCaseId(String rootCaseId)TaskTask. rootContainerId(String rootContainerId)TaskTask. state(ActivityState state)TaskTask. type(String type)
-