Uses of Interface
org.flowable.engine.ProcessEngine
Packages that use ProcessEngine
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.
Helper classes for testing processes.
-
Uses of ProcessEngine in org.flowable.engine
Fields in org.flowable.engine with type parameters of type ProcessEngineModifier and TypeFieldDescriptionprotected static Map<String,
ProcessEngine> ProcessEngines.processEngines
Methods in org.flowable.engine that return ProcessEngineModifier and TypeMethodDescriptionabstract ProcessEngine
ProcessEngineConfiguration.buildProcessEngine()
static ProcessEngine
ProcessEngines.getDefaultProcessEngine()
static ProcessEngine
ProcessEngines.getProcessEngine
(String processEngineName) obtain a process engine by name.Methods in org.flowable.engine that return types with arguments of type ProcessEngineModifier and TypeMethodDescriptionstatic 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 ProcessEngineModifier and TypeMethodDescriptionvoid
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. -
Uses of ProcessEngine in org.flowable.engine.configurator
Methods in org.flowable.engine.configurator that return ProcessEngineModifier and TypeMethodDescriptionprotected ProcessEngine
ProcessEngineConfigurator.initProcessEngine()
-
Uses of ProcessEngine in org.flowable.engine.impl
Classes in org.flowable.engine.impl that implement ProcessEngine -
Uses of ProcessEngine in org.flowable.engine.impl.cfg
Methods in org.flowable.engine.impl.cfg that return ProcessEngine -
Uses of ProcessEngine in org.flowable.engine.impl.cfg.multitenant
Methods in org.flowable.engine.impl.cfg.multitenant that return ProcessEngineModifier and TypeMethodDescriptionMultiSchemaMultiTenantProcessEngineConfiguration.buildProcessEngine()
-
Uses of ProcessEngine in org.flowable.engine.impl.test
Fields in org.flowable.engine.impl.test declared as ProcessEngineMethods in org.flowable.engine.impl.test that return ProcessEngineModifier and TypeMethodDescriptionprotected abstract ProcessEngine
InternalFlowableExtension.getProcessEngine
(org.junit.jupiter.api.extension.ExtensionContext context) protected ProcessEngine
PluggableFlowableExtension.getProcessEngine
(org.junit.jupiter.api.extension.ExtensionContext context) protected ProcessEngine
ResourceFlowableExtension.getProcessEngine
(org.junit.jupiter.api.extension.ExtensionContext context) static ProcessEngine
TestHelper.getProcessEngine
(String configurationResource) protected ProcessEngine
PluggableFlowableExtension.initializeProcessEngine
(String configurationResource) protected ProcessEngine
ResourceFlowableExtension.initializeProcessEngine()
ResourceFlowableExtension.rebootEngine()
Methods in org.flowable.engine.impl.test with parameters of type ProcessEngineModifier and TypeMethodDescriptionstatic String
TestHelper.annotationDeploymentSetUp
(ProcessEngine processEngine, Class<?> testClass, Method method) static String
TestHelper.annotationDeploymentSetUp
(ProcessEngine processEngine, Class<?> testClass, Method method, Deployment deploymentAnnotation) static String
TestHelper.annotationDeploymentSetUp
(ProcessEngine processEngine, Class<?> testClass, String methodName) static String
TestHelper.annotationDeploymentSetUp
(ProcessEngine processEngine, Method method, Deployment deploymentAnnotation) static void
TestHelper.annotationDeploymentTearDown
(ProcessEngine processEngine, String deploymentId, Class<?> testClass, String methodName) protected void
InternalFlowableExtension.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 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) protected static void
AbstractFlowableTestCase.cleanDeployments
(ProcessEngine processEngine) protected void
InternalFlowableExtension.cleanTestAndAssertAndEnsureCleanDb
(org.junit.jupiter.api.extension.ExtensionContext context, ProcessEngine processEngine) final void
AbstractFlowableTestCase.initializeServices
(ProcessEngine processEngine) protected void
PluggableFlowableExtension.swapCommandInvoker
(ProcessEngine processEngine, boolean debug) protected static void
AbstractFlowableTestCase.validateHistoryData
(ProcessEngine processEngine) -
Uses of ProcessEngine in org.flowable.engine.spring.configurator
Methods in org.flowable.engine.spring.configurator that return ProcessEngineModifier and TypeMethodDescriptionprotected ProcessEngine
SpringProcessEngineConfigurator.initProcessEngine()
-
Uses of ProcessEngine in org.flowable.engine.test
Fields in org.flowable.engine.test declared as ProcessEngineModifier and TypeFieldDescriptionprotected ProcessEngine
FlowableRule.processEngine
protected ProcessEngine
FlowableTestCase.processEngine
protected final ProcessEngine
FlowableTestHelper.processEngine
Methods in org.flowable.engine.test that return ProcessEngineModifier and TypeMethodDescriptionprotected ProcessEngine
FlowableExtension.createProcessEngine
(org.junit.jupiter.api.extension.ExtensionContext context) FlowableRule.getProcessEngine()
FlowableTestHelper.getProcessEngine()
Methods in org.flowable.engine.test with parameters of type ProcessEngineModifier and TypeMethodDescriptionvoid
FlowableRule.setProcessEngine
(ProcessEngine processEngine) Constructors in org.flowable.engine.test with parameters of type ProcessEngineModifierConstructorDescriptionFlowableRule
(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 ProcessEngineModifier and TypeMethodDescriptionstatic boolean
FlowableMockSupport.isMockSupportPossible
(ProcessEngine processEngine) Constructors in org.flowable.engine.test.mock with parameters of type ProcessEngine -
Uses of ProcessEngine in org.flowable.rest.service.api.management
Fields in org.flowable.rest.service.api.management declared as ProcessEngine -
Uses of ProcessEngine in org.flowable.spring
Fields in org.flowable.spring declared as ProcessEngineFields in org.flowable.spring with type parameters of type ProcessEngineModifier and TypeFieldDescriptionprotected Collection<AutoDeploymentStrategy<ProcessEngine>>
SpringProcessEngineConfiguration.deploymentStrategies
Methods in org.flowable.spring that return ProcessEngineModifier and TypeMethodDescriptionstatic ProcessEngine
SpringConfigurationHelper.buildProcessEngine
(URL resource) SpringProcessEngineConfiguration.buildProcessEngine()
ProcessEngineFactoryBean.getObject()
Methods in org.flowable.spring that return types with arguments of type ProcessEngineModifier and TypeMethodDescriptionprotected AutoDeploymentStrategy<ProcessEngine>
SpringProcessEngineConfiguration.getAutoDeploymentStrategy
(String mode) Gets theAutoDeploymentStrategy
for the provided mode.SpringProcessEngineConfiguration.getDeploymentStrategies()
ProcessEngineFactoryBean.getObjectType()
Methods in org.flowable.spring with parameters of type ProcessEngineModifier and TypeMethodDescriptionprotected void
SpringProcessEngineConfiguration.autoDeployResources
(ProcessEngine processEngine) Method parameters in org.flowable.spring with type arguments of type ProcessEngineModifier and TypeMethodDescriptionvoid
SpringProcessEngineConfiguration.setDeploymentStrategies
(Collection<AutoDeploymentStrategy<ProcessEngine>> deploymentStrategies) -
Uses of ProcessEngine in org.flowable.spring.configurator
Methods in org.flowable.spring.configurator with parameters of type ProcessEngineModifier and TypeMethodDescriptionprotected void
DefaultAutoDeploymentStrategy.deployResourcesInternal
(String deploymentNameHint, Resource[] resources, ProcessEngine engine) protected void
ResourceParentFolderAutoDeploymentStrategy.deployResourcesInternal
(String deploymentNameHint, Resource[] resources, ProcessEngine engine) protected void
SingleResourceAutoDeploymentStrategy.deployResourcesInternal
(String deploymentNameHint, Resource[] resources, ProcessEngine engine) protected LockManager
AbstractProcessAutoDeploymentStrategy.getLockManager
(ProcessEngine engine, String deploymentNameHint) -
Uses of ProcessEngine in org.flowable.spring.impl.test
Methods in org.flowable.spring.impl.test that return ProcessEngineModifier and TypeMethodDescriptionprotected ProcessEngine
FlowableSpringExtension.createProcessEngine
(org.junit.jupiter.api.extension.ExtensionContext context) protected ProcessEngine
InternalFlowableSpringExtension.getProcessEngine
(org.junit.jupiter.api.extension.ExtensionContext context)