Uses of Interface
org.flowable.engine.runtime.DataObject
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 DataObject in org.flowable.engine
Modifier and TypeMethodDescriptionRuntimeService.getDataObject
(String executionId, String dataObject) The DataObject.RuntimeService.getDataObject
(String executionId, String dataObjectName, String locale, boolean withLocalizationFallback) The DataObject.TaskService.getDataObject
(String taskId, String dataObject) The DataObject.TaskService.getDataObject
(String taskId, String dataObjectName, String locale, boolean withLocalizationFallback) The DataObject.RuntimeService.getDataObjectLocal
(String executionId, String dataObjectName) The DataObject for an execution.RuntimeService.getDataObjectLocal
(String executionId, String dataObjectName, String locale, boolean withLocalizationFallback) The DataObject for an execution.Modifier and TypeMethodDescriptionRuntimeService.getDataObjects
(String executionId) All DataObjects visible from the given execution scope (including parent scopes).RuntimeService.getDataObjects
(String executionId, String locale, boolean withLocalizationFallback) All DataObjects visible from the given execution scope (including parent scopes).RuntimeService.getDataObjects
(String executionId, Collection<String> dataObjectNames) The DataObjects for all given dataObjectNames, takes all dataObjects into account which are visible from the given execution scope (including parent scopes).RuntimeService.getDataObjects
(String executionId, Collection<String> dataObjectNames, String locale, boolean withLocalizationFallback) The DataObjects for all given dataObjectNames, takes all dataObjects into account which are visible from the given execution scope (including parent scopes).TaskService.getDataObjects
(String taskId) All DataObjects visible from the given execution scope (including parent scopes).TaskService.getDataObjects
(String taskId, String locale, boolean withLocalizationFallback) All DataObjects visible from the given task scope (including parent scopes).TaskService.getDataObjects
(String taskId, Collection<String> dataObjectNames) The DataObjects for all given dataObjectNames, takes all dataObjects into account which are visible from the given task scope (including parent scopes).TaskService.getDataObjects
(String taskId, Collection<String> dataObjectNames, String locale, boolean withLocalizationFallback) The DataObjects for all given dataObjectNames, takes all dataObjects into account which are visible from the given task scope (including parent scopes).RuntimeService.getDataObjectsLocal
(String executionId) All DataObject values that are defined in the execution scope, without taking outer scopes into account.RuntimeService.getDataObjectsLocal
(String executionId, String locale, boolean withLocalizationFallback) All DataObject values that are defined in the execution scope, without taking outer scopes into account.RuntimeService.getDataObjectsLocal
(String executionId, Collection<String> dataObjects) The DataObjects for the given dataObjectNames only taking the given execution scope into account, not looking in outer scopes.RuntimeService.getDataObjectsLocal
(String executionId, Collection<String> dataObjectNames, String locale, boolean withLocalizationFallback) The DataObjects for the given dataObjectNames only taking the given execution scope into account, not looking in outer scopes. -
Uses of DataObject in org.flowable.engine.impl
Modifier and TypeMethodDescriptionRuntimeServiceImpl.getDataObject
(String executionId, String dataObject) RuntimeServiceImpl.getDataObject
(String executionId, String dataObjectName, String locale, boolean withLocalizationFallback) TaskServiceImpl.getDataObject
(String taskId, String dataObject) TaskServiceImpl.getDataObject
(String taskId, String dataObjectName, String locale, boolean withLocalizationFallback) RuntimeServiceImpl.getDataObjectLocal
(String executionId, String dataObjectName) RuntimeServiceImpl.getDataObjectLocal
(String executionId, String dataObjectName, String locale, boolean withLocalizationFallback) Modifier and TypeMethodDescriptionRuntimeServiceImpl.getDataObjects
(String executionId) RuntimeServiceImpl.getDataObjects
(String executionId, String locale, boolean withLocalizationFallback) RuntimeServiceImpl.getDataObjects
(String executionId, Collection<String> dataObjectNames) RuntimeServiceImpl.getDataObjects
(String executionId, Collection<String> dataObjectNames, String locale, boolean withLocalizationFallback) TaskServiceImpl.getDataObjects
(String taskId) TaskServiceImpl.getDataObjects
(String taskId, String locale, boolean withLocalizationFallback) TaskServiceImpl.getDataObjects
(String taskId, Collection<String> dataObjectNames) TaskServiceImpl.getDataObjects
(String taskId, Collection<String> dataObjectNames, String locale, boolean withLocalizationFallback) RuntimeServiceImpl.getDataObjectsLocal
(String executionId) RuntimeServiceImpl.getDataObjectsLocal
(String executionId, String locale, boolean withLocalizationFallback) RuntimeServiceImpl.getDataObjectsLocal
(String executionId, Collection<String> dataObjects) RuntimeServiceImpl.getDataObjectsLocal
(String executionId, Collection<String> dataObjectNames, String locale, boolean withLocalizationFallback)