|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Task | |
|---|---|
| org.camunda.bpm.engine | Public API of the camunda BPM engine. Typical usage of the API starts by the creation of a ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine can be obtained.Through the services obtained from such a ProcessEngine, BPM and workflow operation
can be executed:RepositoryService:
Manages DeploymentsRuntimeService:
For starting and searching ProcessInstancesTaskService:
Exposes operations to manage human (standalone) Tasks,
such as claiming, completing and assigning tasksIdentityService:
Used for managing Users,
Groups and the relations between themManagementService:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService:
Exposes information about ongoing and past process instances.FormService:
Access to form data and rendered forms for starting new process instances and completing tasks. |
| org.camunda.bpm.engine.form | Classes related to the FormService. |
| org.camunda.bpm.engine.impl | API implementation classes, which shouldn't directly be used by end-users. |
| org.camunda.bpm.engine.impl.cmd | |
| org.camunda.bpm.engine.impl.cmmn.execution | |
| org.camunda.bpm.engine.impl.form | |
| org.camunda.bpm.engine.impl.persistence.entity | |
| Uses of Task in org.camunda.bpm.engine |
|---|
| Methods in org.camunda.bpm.engine that return Task | |
|---|---|
Task |
TaskService.newTask()
Creates a new task that is not related to any process instance. |
Task |
TaskService.newTask(String taskId)
create a new task with a user defined task id |
| Methods in org.camunda.bpm.engine that return types with arguments of type Task | |
|---|---|
List<Task> |
TaskService.getSubTasks(String parentTaskId)
The list of subtasks for this parent task |
| Methods in org.camunda.bpm.engine with parameters of type Task | |
|---|---|
void |
TaskService.saveTask(Task task)
Saves the given task to the persistent data store. |
| Uses of Task in org.camunda.bpm.engine.form |
|---|
| Methods in org.camunda.bpm.engine.form that return Task | |
|---|---|
Task |
TaskFormData.getTask()
The task for which this form is used to complete it. |
| Uses of Task in org.camunda.bpm.engine.impl |
|---|
| Methods in org.camunda.bpm.engine.impl that return Task | |
|---|---|
Task |
TaskServiceImpl.newTask()
|
Task |
TaskServiceImpl.newTask(String taskId)
|
| Methods in org.camunda.bpm.engine.impl that return types with arguments of type Task | |
|---|---|
List<Task> |
NativeTaskQueryImpl.executeList(CommandContext commandContext,
Map<String,Object> parameterMap,
int firstResult,
int maxResults)
|
List<Task> |
TaskQueryImpl.executeList(CommandContext commandContext,
Page page)
|
List<Task> |
TaskServiceImpl.getSubTasks(String parentTaskId)
|
| Methods in org.camunda.bpm.engine.impl with parameters of type Task | |
|---|---|
void |
TaskServiceImpl.saveTask(Task task)
|
| Uses of Task in org.camunda.bpm.engine.impl.cmd |
|---|
| Methods in org.camunda.bpm.engine.impl.cmd that return types with arguments of type Task | |
|---|---|
List<Task> |
GetSubTasksCmd.execute(CommandContext commandContext)
|
| Constructors in org.camunda.bpm.engine.impl.cmd with parameters of type Task | |
|---|---|
SaveTaskCmd(Task task)
|
|
| Uses of Task in org.camunda.bpm.engine.impl.cmmn.execution |
|---|
| Methods in org.camunda.bpm.engine.impl.cmmn.execution that return Task | |
|---|---|
Task |
CmmnActivityExecution.createTask(TaskDecorator taskDecorator)
Creates a new task. |
| Methods in org.camunda.bpm.engine.impl.cmmn.execution with parameters of type Task | |
|---|---|
void |
CmmnExecution.setTask(Task task)
|
| Uses of Task in org.camunda.bpm.engine.impl.form |
|---|
| Fields in org.camunda.bpm.engine.impl.form declared as Task | |
|---|---|
protected Task |
TaskFormDataImpl.task
|
| Methods in org.camunda.bpm.engine.impl.form that return Task | |
|---|---|
Task |
TaskFormDataImpl.getTask()
|
| Methods in org.camunda.bpm.engine.impl.form with parameters of type Task | |
|---|---|
void |
TaskFormDataImpl.setTask(Task task)
|
| Uses of Task in org.camunda.bpm.engine.impl.persistence.entity |
|---|
| Classes in org.camunda.bpm.engine.impl.persistence.entity that implement Task | |
|---|---|
class |
TaskEntity
|
| Methods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type Task | |
|---|---|
List<Task> |
TaskManager.findTasksByNativeQuery(Map<String,Object> parameterMap,
int firstResult,
int maxResults)
|
List<Task> |
TaskManager.findTasksByParentTaskId(String parentTaskId)
|
List<Task> |
TaskManager.findTasksByQueryCriteria(TaskQueryImpl taskQuery)
|
List<Task> |
TaskManager.findTasksByQueryCriteria(TaskQueryImpl taskQuery,
Page page)
Deprecated. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||