org.camunda.bpm
Interface ProcessEngineService

All Known Implementing Classes:
RuntimeContainerDelegateImpl

public interface ProcessEngineService

The ProcessEngineService provides access to the list of Managed Process Engines.

Users of this class may look up an instance of the service through a lookup strategy appropriate for the platform they are using (Examples: Jndi, OSGi Service Registry ...)

Author:
Daniel Meyer

Method Summary
 ProcessEngine getDefaultProcessEngine()
           
 ProcessEngine getProcessEngine(String name)
           
 Set<String> getProcessEngineNames()
           
 List<ProcessEngine> getProcessEngines()
           
 

Method Detail

getDefaultProcessEngine

ProcessEngine getDefaultProcessEngine()
Returns:
the default process engine.

getProcessEngines

List<ProcessEngine> getProcessEngines()
Returns:
all ProcessEngines managed by the camunda BPM platform.

getProcessEngineNames

Set<String> getProcessEngineNames()
Returns:
the names of all ProcessEngines managed by the camunda BPM platform.

getProcessEngine

ProcessEngine getProcessEngine(String name)
Returns:
the ProcessEngine for the given name or null if no such process engine exists.


Copyright © 2017 camunda services GmbH. All rights reserved.