| Package | Description |
|---|---|
| org.flowable.engine |
Public API of the Flowable 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 Deployments.RuntimeService: For starting and searching ProcessInstances.TaskService: Exposes operations to manage human (standalone) tasks, such as claiming, completing and assigning tasks.IdentityService: Used for managing users, groups and the relations between them.ManagementService: Exposes engine administration and maintenance operations,
which have no relation to the runtime exection of business processes.HistoryService: 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.flowable.engine.impl |
API implementation classes, which shouldn't directly be used by end-users.
|
| org.flowable.task.api |
| Modifier and Type | Method and Description |
|---|---|
TaskCompletionBuilder |
TaskService.createTaskCompletionBuilder()
Create a completion builder for the task
|
| Modifier and Type | Class and Description |
|---|---|
class |
TaskCompletionBuilderImpl |
| Modifier and Type | Method and Description |
|---|---|
TaskCompletionBuilder |
TaskServiceImpl.createTaskCompletionBuilder() |
TaskCompletionBuilder |
TaskCompletionBuilderImpl.formDefinitionId(String formDefinitionId) |
TaskCompletionBuilder |
TaskCompletionBuilderImpl.outcome(String outcome) |
TaskCompletionBuilder |
TaskCompletionBuilderImpl.taskId(String id) |
TaskCompletionBuilder |
TaskCompletionBuilderImpl.transientVariable(String variableName,
Object variableValue) |
TaskCompletionBuilder |
TaskCompletionBuilderImpl.transientVariableLocal(String variableName,
Object variableValue) |
TaskCompletionBuilder |
TaskCompletionBuilderImpl.transientVariables(Map<String,Object> transientVariables) |
TaskCompletionBuilder |
TaskCompletionBuilderImpl.transientVariablesLocal(Map<String,Object> transientVariablesLocal) |
TaskCompletionBuilder |
TaskCompletionBuilderImpl.variable(String variableName,
Object variableValue) |
TaskCompletionBuilder |
TaskCompletionBuilderImpl.variableLocal(String variableName,
Object variableValue) |
TaskCompletionBuilder |
TaskCompletionBuilderImpl.variables(Map<String,Object> variables) |
TaskCompletionBuilder |
TaskCompletionBuilderImpl.variablesLocal(Map<String,Object> variablesLocal) |
| Modifier and Type | Method and Description |
|---|---|
TaskCompletionBuilder |
TaskCompletionBuilder.formDefinitionId(String formDefinitionId)
Sets a form definition id
|
TaskCompletionBuilder |
TaskCompletionBuilder.outcome(String outcome)
Sets an outcome
|
TaskCompletionBuilder |
TaskCompletionBuilder.taskId(String id)
Sets a task id
|
TaskCompletionBuilder |
TaskCompletionBuilder.transientVariable(String variableName,
Object variableValue)
Sets a non-persisted transient variable before the task is completed.
|
TaskCompletionBuilder |
TaskCompletionBuilder.transientVariableLocal(String variableName,
Object variableValue)
Sets a non-persisted transient local variable before the task is completed.
|
TaskCompletionBuilder |
TaskCompletionBuilder.transientVariables(Map<String,Object> transientVariables)
Sets a non-persisted variables before the task is completed.
|
TaskCompletionBuilder |
TaskCompletionBuilder.transientVariablesLocal(Map<String,Object> transientVariablesLocal)
Sets a non-persisted local variables before the task is completed.
|
TaskCompletionBuilder |
TaskCompletionBuilder.variable(String variableName,
Object variableValue)
Sets a variable before the task is completed.
|
TaskCompletionBuilder |
TaskCompletionBuilder.variableLocal(String variableName,
Object variableValue)
Sets a local variable before the task is completed.
|
TaskCompletionBuilder |
TaskCompletionBuilder.variables(Map<String,Object> variables)
Sets a variables before the task is completed.
|
TaskCompletionBuilder |
TaskCompletionBuilder.variablesLocal(Map<String,Object> variablesLocal)
Sets a local variables before the task is completed.
|
Copyright © 2023 Flowable. All rights reserved.