Uses of Interface
org.flowable.task.api.TaskCompletionBuilder
Packages that use TaskCompletionBuilder
Package
Description
Public API of the Flowable engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
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
s.RuntimeService
: For starting and searching ProcessInstance
s.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.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of TaskCompletionBuilder in org.flowable.cmmn.api
Methods in org.flowable.cmmn.api that return TaskCompletionBuilderModifier and TypeMethodDescriptionCmmnTaskService.createTaskCompletionBuilder()
Create a completion builder for the task -
Uses of TaskCompletionBuilder in org.flowable.cmmn.engine.impl
Methods in org.flowable.cmmn.engine.impl that return TaskCompletionBuilder -
Uses of TaskCompletionBuilder in org.flowable.cmmn.engine.impl.task
Classes in org.flowable.cmmn.engine.impl.task that implement TaskCompletionBuilderModifier and TypeClassDescriptionclass
Implementation of the sharedTaskCompletionBuilder
interfaceMethods in org.flowable.cmmn.engine.impl.task that return TaskCompletionBuilderModifier and TypeMethodDescriptionTaskCompletionBuilderImpl.formDefinitionId
(String formDefinitionId) TaskCompletionBuilderImpl.transientVariable
(String variableName, Object variableValue) TaskCompletionBuilderImpl.transientVariableLocal
(String variableName, Object variableValue) TaskCompletionBuilderImpl.transientVariables
(Map<String, Object> transientVariables) TaskCompletionBuilderImpl.transientVariablesLocal
(Map<String, Object> transientVariablesLocal) TaskCompletionBuilderImpl.variableLocal
(String variableName, Object variableValue) TaskCompletionBuilderImpl.variablesLocal
(Map<String, Object> variablesLocal) -
Uses of TaskCompletionBuilder in org.flowable.engine
Methods in org.flowable.engine that return TaskCompletionBuilderModifier and TypeMethodDescriptionTaskService.createTaskCompletionBuilder()
Create a completion builder for the task -
Uses of TaskCompletionBuilder in org.flowable.engine.impl
Classes in org.flowable.engine.impl that implement TaskCompletionBuilderMethods in org.flowable.engine.impl that return TaskCompletionBuilderModifier and TypeMethodDescriptionTaskServiceImpl.createTaskCompletionBuilder()
TaskCompletionBuilderImpl.formDefinitionId
(String formDefinitionId) TaskCompletionBuilderImpl.transientVariable
(String variableName, Object variableValue) TaskCompletionBuilderImpl.transientVariableLocal
(String variableName, Object variableValue) TaskCompletionBuilderImpl.transientVariables
(Map<String, Object> transientVariables) TaskCompletionBuilderImpl.transientVariablesLocal
(Map<String, Object> transientVariablesLocal) TaskCompletionBuilderImpl.variableLocal
(String variableName, Object variableValue) TaskCompletionBuilderImpl.variablesLocal
(Map<String, Object> variablesLocal) -
Uses of TaskCompletionBuilder in org.flowable.task.api
Methods in org.flowable.task.api that return TaskCompletionBuilderModifier and TypeMethodDescriptionTaskCompletionBuilder.formDefinitionId
(String formDefinitionId) Sets a form definition id.Sets an outcome for the form.Sets the id of the task which is completed.TaskCompletionBuilder.transientVariable
(String variableName, Object variableValue) Sets one non-persisted instance variables.TaskCompletionBuilder.transientVariableLocal
(String variableName, Object variableValue) Sets one non-persisted instance variables.TaskCompletionBuilder.transientVariables
(Map<String, Object> transientVariables) Sets non-persisted instance variables.TaskCompletionBuilder.transientVariablesLocal
(Map<String, Object> transientVariablesLocal) Sets non-persisted task-local variables.Sets one instance-level variable.TaskCompletionBuilder.variableLocal
(String variableName, Object variableValue) Sets one task-local variables instead of instance-level variables.Sets variables that are added on the instance level.TaskCompletionBuilder.variablesLocal
(Map<String, Object> variablesLocal) Sets task-local variables instead of instance-level variables.