Package | Description |
---|---|
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 Deployment sRuntimeService :
For starting and searching ProcessInstance sTaskService :
Exposes operations to manage human (standalone) Task s,
such as claiming, completing and assigning tasksIdentityService :
Used for managing User s,
Group s 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.cdi | |
org.camunda.bpm.engine.cdi.impl.context | |
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.form | |
org.camunda.bpm.engine.impl.json |
Experimental: contains helpers to serialize all return values from the services into JSON.
|
org.camunda.bpm.engine.impl.persistence.entity | |
org.camunda.bpm.engine.rest.dto.task | |
org.camunda.bpm.engine.rest.sub.task.impl |
Modifier and Type | Method and Description |
---|---|
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
|
Modifier and Type | Method and Description |
---|---|
List<Task> |
TaskService.getSubTasks(String parentTaskId)
The list of subtasks for this parent task
|
Modifier and Type | Method and Description |
---|---|
void |
TaskService.saveTask(Task task)
Saves the given task to the persistent data store.
|
Modifier and Type | Method and Description |
---|---|
Task |
CurrentProcessInstance.getTask()
Returns the currently associated
Task or 'null' |
Task |
BusinessProcess.getTask()
Returns the currently associated
Task or 'null' |
Task |
BusinessProcess.startTask(String taskId)
Associates the task with the provided taskId with the current conversation.
|
Task |
BusinessProcess.startTask(String taskId,
boolean beginConversation) |
Modifier and Type | Method and Description |
---|---|
void |
BusinessProcess.setTask(Task task) |
Modifier and Type | Field and Description |
---|---|
protected Task |
DefaultContextAssociationManager.ScopedAssociation.task |
Modifier and Type | Method and Description |
---|---|
Task |
DefaultContextAssociationManager.getTask() |
Task |
DefaultContextAssociationManager.ScopedAssociation.getTask() |
Task |
ContextAssociationManager.getTask()
get the current task
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultContextAssociationManager.setTask(Task task) |
void |
DefaultContextAssociationManager.ScopedAssociation.setTask(Task task) |
void |
ContextAssociationManager.setTask(Task task)
set a current task
|
Modifier and Type | Method and Description |
---|---|
Task |
TaskFormData.getTask()
The task for which this form is used to complete it.
|
Modifier and Type | Method and Description |
---|---|
Task |
TaskServiceImpl.newTask() |
Task |
TaskServiceImpl.newTask(String taskId) |
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
void |
TaskServiceImpl.saveTask(Task task) |
Modifier and Type | Method and Description |
---|---|
List<Task> |
GetSubTasksCmd.execute(CommandContext commandContext) |
Constructor and Description |
---|
SaveTaskCmd(Task task) |
Modifier and Type | Field and Description |
---|---|
protected Task |
TaskFormDataImpl.task |
Modifier and Type | Method and Description |
---|---|
Task |
TaskFormDataImpl.getTask() |
Modifier and Type | Method and Description |
---|---|
void |
TaskFormDataImpl.setTask(Task task) |
Modifier and Type | Method and Description |
---|---|
Task |
JsonTaskConverter.toObject(Reader reader) |
Modifier and Type | Method and Description |
---|---|
JSONObject |
JsonTaskConverter.toJsonObject(Task task) |
Modifier and Type | Class and Description |
---|---|
class |
TaskEntity |
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
static TaskDto |
TaskDto.fromTask(Task task) |
Modifier and Type | Method and Description |
---|---|
protected Task |
TaskResourceImpl.getTaskById(String id)
Returns the task with the given id
|
Copyright © 2015. All rights reserved.