|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Task | |
|---|---|
| org.jbpm.api | the jBPM API, Start by creating a Configuration,
build a ProcessEngine from that, and then you can find
the workflow methods on the services like ExecutionService,
TaskService. |
| Uses of Task in org.jbpm.api |
|---|
| Methods in org.jbpm.api that return Task | |
|---|---|
Task |
TaskService.getTask(java.lang.String taskId)
Retrieves the task with the given identifier from persistent storage. |
Task |
TaskService.newTask()
Creates a task. |
Task |
TaskService.newTask(java.lang.String parentTaskId)
Creates a new subtask for the given task. |
Task |
TaskQuery.uniqueResult()
execute the query and obtain the unique Task |
| Methods in org.jbpm.api that return types with arguments of type Task | |
|---|---|
java.util.List<Task> |
TaskService.findGroupTasks(java.lang.String userId)
list of tasks that can be taken by the given user. |
java.util.List<Task> |
TaskService.findPersonalTasks(java.lang.String userId)
list of tasks that are assigned to the given user. |
java.util.List<Task> |
TaskService.getSubTasks(java.lang.String taskId)
get the subtasks for this task. |
java.util.List<Task> |
TaskQuery.list()
execute the query and obtain the list of Tasks |
| Methods in org.jbpm.api with parameters of type Task | |
|---|---|
java.lang.String |
TaskService.saveTask(Task task)
Saves the given task to persistent storage. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||