Package com.flowable.platform.engine
Class PlatformEngines
- java.lang.Object
- 
- com.flowable.platform.engine.PlatformEngines
 
- 
 public abstract class PlatformEngines extends Object 
- 
- 
Field SummaryFields Modifier and Type Field Description protected static booleanisInitializedstatic StringNAME_DEFAULTprotected static Map<String,PlatformEngine>platformEngines
 - 
Constructor SummaryConstructors Constructor Description PlatformEngines()
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static voiddestroy()Closes all platform engines.static PlatformEnginegetDefaultPlatformEngine()static PlatformEnginegetPlatformEngine(String platformEngineName)Obtain an platform engine by name.static Map<String,PlatformEngine>getPlatformEngines()Provides access to platform engines to application clients in a managed server environment.static booleanisInitialized()static voidregisterEngine(PlatformEngine platformEngine)Registers the given platform engine.static voidsetInitialized(boolean isInitialized)static voidunregister(PlatformEngine platformEngine)Unregisters the given platform engine.
 
- 
- 
- 
Field Detail- 
NAME_DEFAULTpublic static final String NAME_DEFAULT - See Also:
- Constant Field Values
 
 - 
isInitializedprotected static boolean isInitialized 
 - 
platformEnginesprotected static Map<String,PlatformEngine> platformEngines 
 
- 
 - 
Method Detail- 
registerEnginepublic static void registerEngine(PlatformEngine platformEngine) Registers the given platform engine. NoEngineInfowill be available for this platform engine. An engine that is registered will be closed when thedestroy()is called.
 - 
unregisterpublic static void unregister(PlatformEngine platformEngine) Unregisters the given platform engine.
 - 
getDefaultPlatformEnginepublic static PlatformEngine getDefaultPlatformEngine() 
 - 
getPlatformEnginepublic static PlatformEngine getPlatformEngine(String platformEngineName) Obtain an platform engine by name.- Parameters:
- platformEngineName- is the name of the platform engine
 
 - 
getPlatformEnginespublic static Map<String,PlatformEngine> getPlatformEngines() Provides access to platform engines to application clients in a managed server environment.
 - 
destroypublic static void destroy() Closes all platform engines. This method should be called when the server shuts down.
 - 
isInitializedpublic static boolean isInitialized() 
 - 
setInitializedpublic static void setInitialized(boolean isInitialized) 
 
- 
 
-