| 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) org.flowable.engine.task.Tasks,
such as claiming, completing and assigning tasks.IdentityService: Used for managing Users,
identity.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.engine.impl.cfg | |
| org.flowable.engine.impl.cfg.multitenant | |
| org.flowable.engine.impl.test | |
| org.flowable.engine.test |
Helper classes for testing processes.
|
| org.flowable.engine.test.mock |
| Modifier and Type | Field and Description |
|---|---|
protected static Map<String,ProcessEngine> |
ProcessEngines.processEngines |
| Modifier and Type | Method and Description |
|---|---|
abstract ProcessEngine |
ProcessEngineConfiguration.buildProcessEngine() |
static ProcessEngine |
ProcessEngines.getDefaultProcessEngine() |
static ProcessEngine |
ProcessEngines.getProcessEngine(String processEngineName)
obtain a process engine by name.
|
| Modifier and Type | Method and Description |
|---|---|
static Map<String,ProcessEngine> |
ProcessEngines.getProcessEngines()
provides access to process engine to application clients in a managed server environment.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ProcessEngineLifecycleListener.onProcessEngineBuilt(ProcessEngine processEngine)
Called right after the process-engine has been built.
|
void |
ProcessEngineLifecycleListener.onProcessEngineClosed(ProcessEngine processEngine)
Called right after the process-engine has been closed.
|
static void |
ProcessEngines.registerProcessEngine(ProcessEngine processEngine)
Registers the given process engine.
|
static void |
ProcessEngines.unregister(ProcessEngine processEngine)
Unregisters the given process engine.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ProcessEngineImpl |
| Modifier and Type | Method and Description |
|---|---|
ProcessEngine |
ProcessEngineConfigurationImpl.buildProcessEngine() |
| Modifier and Type | Method and Description |
|---|---|
ProcessEngine |
MultiSchemaMultiTenantProcessEngineConfiguration.buildProcessEngine() |
| Modifier and Type | Field and Description |
|---|---|
protected static ProcessEngine |
PluggableFlowableTestCase.cachedProcessEngine |
protected ProcessEngine |
AbstractFlowableTestCase.processEngine |
| Modifier and Type | Method and Description |
|---|---|
static ProcessEngine |
TestHelper.getProcessEngine(String configurationResource) |
| Modifier and Type | Method and Description |
|---|---|
static String |
TestHelper.annotationDeploymentSetUp(ProcessEngine processEngine,
Class<?> testClass,
String methodName) |
static void |
TestHelper.annotationDeploymentTearDown(ProcessEngine processEngine,
String deploymentId,
Class<?> testClass,
String methodName) |
static void |
TestHelper.assertAndEnsureCleanDb(ProcessEngine processEngine)
Each test is assumed to clean up all DB content it entered.
|
static void |
TestHelper.assertProcessEnded(ProcessEngine processEngine,
String processInstanceId) |
| Modifier and Type | Field and Description |
|---|---|
protected ProcessEngine |
FlowableTestCase.processEngine |
protected ProcessEngine |
FlowableRule.processEngine |
| Modifier and Type | Method and Description |
|---|---|
ProcessEngine |
FlowableRule.getProcessEngine() |
| Modifier and Type | Method and Description |
|---|---|
void |
FlowableRule.setProcessEngine(ProcessEngine processEngine) |
| Constructor and Description |
|---|
FlowableRule(ProcessEngine processEngine) |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
FlowableMockSupport.isMockSupportPossible(ProcessEngine processEngine) |
| Constructor and Description |
|---|
FlowableMockSupport(ProcessEngine processEngine) |
Copyright © 2017 Flowable. All rights reserved.