Uses of Interface
org.flowable.engine.ProcessEngine
-
Packages that use ProcessEngine Package Description org.flowable.engine Public API of the Flowable engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments.
RuntimeService: For starting and searchingProcessInstances.
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.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 -
-
Uses of ProcessEngine in org.flowable.engine
Fields in org.flowable.engine with type parameters of type ProcessEngine Modifier and Type Field Description protected static Map<String,ProcessEngine>ProcessEngines. processEnginesMethods in org.flowable.engine that return ProcessEngine Modifier and Type Method Description abstract ProcessEngineProcessEngineConfiguration. buildProcessEngine()static ProcessEngineProcessEngines. getDefaultProcessEngine()static ProcessEngineProcessEngines. getProcessEngine(String processEngineName)obtain a process engine by name.Methods in org.flowable.engine that return types with arguments of type ProcessEngine Modifier and Type Method Description static Map<String,ProcessEngine>ProcessEngines. getProcessEngines()provides access to process engine to application clients in a managed server environment.Methods in org.flowable.engine with parameters of type ProcessEngine Modifier and Type Method Description voidProcessEngineLifecycleListener. onProcessEngineBuilt(ProcessEngine processEngine)Called right after the process-engine has been built.voidProcessEngineLifecycleListener. onProcessEngineClosed(ProcessEngine processEngine)Called right after the process-engine has been closed.static voidProcessEngines. registerProcessEngine(ProcessEngine processEngine)Registers the given process engine.static voidProcessEngines. unregister(ProcessEngine processEngine)Unregisters the given process engine. -
Uses of ProcessEngine in org.flowable.engine.impl
Classes in org.flowable.engine.impl that implement ProcessEngine Modifier and Type Class Description classProcessEngineImpl -
Uses of ProcessEngine in org.flowable.engine.impl.cfg
Methods in org.flowable.engine.impl.cfg that return ProcessEngine Modifier and Type Method Description ProcessEngineProcessEngineConfigurationImpl. buildProcessEngine() -
Uses of ProcessEngine in org.flowable.engine.impl.cfg.multitenant
Methods in org.flowable.engine.impl.cfg.multitenant that return ProcessEngine Modifier and Type Method Description ProcessEngineMultiSchemaMultiTenantProcessEngineConfiguration. buildProcessEngine() -
Uses of ProcessEngine in org.flowable.engine.impl.test
Fields in org.flowable.engine.impl.test declared as ProcessEngine Modifier and Type Field Description protected ProcessEngineAbstractFlowableTestCase. processEngineMethods in org.flowable.engine.impl.test that return ProcessEngine Modifier and Type Method Description protected abstract ProcessEngineInternalFlowableExtension. getProcessEngine(org.junit.jupiter.api.extension.ExtensionContext context)protected ProcessEnginePluggableFlowableExtension. getProcessEngine(org.junit.jupiter.api.extension.ExtensionContext context)protected ProcessEngineResourceFlowableExtension. getProcessEngine(org.junit.jupiter.api.extension.ExtensionContext context)static ProcessEngineTestHelper. getProcessEngine(String configurationResource)protected ProcessEnginePluggableFlowableExtension. initializeProcessEngine(String configurationResource)protected ProcessEngineResourceFlowableExtension. initializeProcessEngine()ProcessEngineResourceFlowableExtension. rebootEngine()Methods in org.flowable.engine.impl.test with parameters of type ProcessEngine Modifier and Type Method Description static StringTestHelper. annotationDeploymentSetUp(ProcessEngine processEngine, Class<?> testClass, Method method)static StringTestHelper. annotationDeploymentSetUp(ProcessEngine processEngine, Class<?> testClass, Method method, Deployment deploymentAnnotation)static StringTestHelper. annotationDeploymentSetUp(ProcessEngine processEngine, Class<?> testClass, String methodName)static StringTestHelper. annotationDeploymentSetUp(ProcessEngine processEngine, Method method, Deployment deploymentAnnotation)static voidTestHelper. annotationDeploymentTearDown(ProcessEngine processEngine, String deploymentId, Class<?> testClass, String methodName)protected voidInternalFlowableExtension. assertAndEnsureCleanDb(ProcessEngine processEngine, org.junit.jupiter.api.extension.ExtensionContext context, EnsureCleanDb ensureCleanDb)Each test is assumed to clean up all DB content it entered.static voidTestHelper. assertAndEnsureCleanDb(ProcessEngine processEngine)Each test is assumed to clean up all DB content it entered.static voidTestHelper. assertProcessEnded(ProcessEngine processEngine, String processInstanceId)protected static voidAbstractFlowableTestCase. cleanDeployments(ProcessEngine processEngine)protected voidInternalFlowableExtension. cleanTestAndAssertAndEnsureCleanDb(org.junit.jupiter.api.extension.ExtensionContext context, ProcessEngine processEngine)voidAbstractFlowableTestCase. initializeServices(ProcessEngine processEngine)protected voidPluggableFlowableExtension. swapCommandInvoker(ProcessEngine processEngine, boolean debug)protected static voidAbstractFlowableTestCase. validateHistoryData(ProcessEngine processEngine) -
Uses of ProcessEngine in org.flowable.engine.test
Fields in org.flowable.engine.test declared as ProcessEngine Modifier and Type Field Description protected ProcessEngineFlowableRule. processEngineprotected ProcessEngineFlowableTestCase. processEngineprotected ProcessEngineFlowableTestHelper. processEngineMethods in org.flowable.engine.test that return ProcessEngine Modifier and Type Method Description protected ProcessEngineFlowableExtension. createProcessEngine(org.junit.jupiter.api.extension.ExtensionContext context)ProcessEngineFlowableRule. getProcessEngine()ProcessEngineFlowableTestHelper. getProcessEngine()Methods in org.flowable.engine.test with parameters of type ProcessEngine Modifier and Type Method Description voidFlowableRule. setProcessEngine(ProcessEngine processEngine)Constructors in org.flowable.engine.test with parameters of type ProcessEngine Constructor Description FlowableRule(ProcessEngine processEngine)FlowableTestHelper(ProcessEngine processEngine) -
Uses of ProcessEngine in org.flowable.engine.test.mock
Methods in org.flowable.engine.test.mock with parameters of type ProcessEngine Modifier and Type Method Description static booleanFlowableMockSupport. isMockSupportPossible(ProcessEngine processEngine)Constructors in org.flowable.engine.test.mock with parameters of type ProcessEngine Constructor Description FlowableMockSupport(ProcessEngine processEngine)
-