Uses of Class
org.bonitasoft.web.client.model.UserTask
-
Packages that use UserTask Package Description org.bonitasoft.web.client.api org.bonitasoft.web.client.model org.bonitasoft.web.client.services org.bonitasoft.web.client.services.impl -
-
Uses of UserTask in org.bonitasoft.web.client.api
Methods in org.bonitasoft.web.client.api that return UserTask Modifier and Type Method Description UserTaskUserTaskApi. getUserTaskById(String id)Finds the UserTask by ID Returns the single UserTask for the given IDMethods in org.bonitasoft.web.client.api that return types with arguments of type UserTask Modifier and Type Method Description ApiResponse<UserTask>UserTaskApi. getUserTaskByIdWithHttpInfo(String id)Finds the UserTask by ID Similar togetUserTaskByIdbut it also returns the http response headers .List<UserTask>UserTaskApi. searchUserTasks(Integer p, Integer c, List<String> f, String o, String s)Finds UserTasks Finds UserTasks with pagination params and filters - can order on `id` - can search on `displayName` - can filter on `displayName`List<UserTask>UserTaskApi. searchUserTasks(Map<String,Object> queryParams)Finds UserTasks Finds UserTasks with pagination params and filters - can order on `id` - can search on `displayName` - can filter on `displayName` Note, this is equivalent to the othersearchUserTasksmethod, but with the query parameters collected into a single Map parameter.ApiResponse<List<UserTask>>UserTaskApi. searchUserTasksWithHttpInfo(Integer p, Integer c, List<String> f, String o, String s)Finds UserTasks Similar tosearchUserTasksbut it also returns the http response headers .ApiResponse<List<UserTask>>UserTaskApi. searchUserTasksWithHttpInfo(Map<String,Object> queryParams)Finds UserTasks Finds UserTasks with pagination params and filters - can order on `id` - can search on `displayName` - can filter on `displayName` Note, this is equivalent to the othersearchUserTasksthat receives the query parameters as a map, but this one also exposes the Http response headers -
Uses of UserTask in org.bonitasoft.web.client.model
Methods in org.bonitasoft.web.client.model that return UserTask Modifier and Type Method Description UserTaskUserTask. actorId(String actorId)UserTaskUserTask. assignedDate(String assignedDate)UserTaskUserTask. assignedId(String assignedId)UserTaskUserTask. description(String description)UserTaskUserTask. displayDescription(String displayDescription)UserTaskUserTask. displayName(String displayName)UserTaskUserTask. dueDate(String dueDate)UserTaskUserTask. executedBy(String executedBy)UserTaskUserTask. executedBySubstitute(String executedBySubstitute)UserTaskUserTask. id(String id)UserTaskUserTask. isTerminal(Boolean isTerminal)UserTaskUserTask. lastUpdateDate(String lastUpdateDate)UserTaskUserTask. name(String name)UserTaskUserTask. parentCaseId(String parentCaseId)UserTaskUserTask. parentTaskId(String parentTaskId)UserTaskUserTask. priority(String priority)UserTaskUserTask. processId(String processId)UserTaskUserTask. reachedStateDate(String reachedStateDate)UserTaskUserTask. rootCaseId(String rootCaseId)UserTaskUserTask. rootContainerId(String rootContainerId)UserTaskUserTask. state(ActivityState state)UserTaskUserTask. type(String type) -
Uses of UserTask in org.bonitasoft.web.client.services
Methods in org.bonitasoft.web.client.services that return UserTask Modifier and Type Method Description UserTaskProcessService. getUserTask(String taskId)Methods in org.bonitasoft.web.client.services that return types with arguments of type UserTask Modifier and Type Method Description List<UserTask>ProcessService. searchUserTask(String rootContainerId) -
Uses of UserTask in org.bonitasoft.web.client.services.impl
Methods in org.bonitasoft.web.client.services.impl that return UserTask Modifier and Type Method Description UserTaskDefaultProcessService. getUserTask(String taskId)Methods in org.bonitasoft.web.client.services.impl that return types with arguments of type UserTask Modifier and Type Method Description List<UserTask>DefaultProcessService. searchUserTask(String rootContainerId)
-