Package com.flowable.action.engine
Class ActionEngines
java.lang.Object
com.flowable.action.engine.ActionEngines
-
Field Summary
Modifier and TypeFieldDescriptionprotected static Map<String,
ActionEngine> protected static boolean
static final String
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
destroy()
Closes all action engines.static ActionEngine
getActionEngine
(String actionEngineName) Obtain an action engine by name.static Map<String,
ActionEngine> Provides access to action engines to application clients in a managed server environment.static ActionEngine
static boolean
static void
registerEngine
(ActionEngine actionEngine) Registers the given action engine.static void
setInitialized
(boolean isInitialized) static void
unregister
(ActionEngine actionEngine) Unregisters the given action engine.
-
Field Details
-
NAME_DEFAULT
- See Also:
-
isInitialized
protected static boolean isInitialized -
actionEngines
-
-
Constructor Details
-
ActionEngines
public ActionEngines()
-
-
Method Details
-
registerEngine
Registers the given action engine. NoEngineInfo
will be available for this action engine. An engine that is registered will be closed when thedestroy()
is called. -
unregister
Unregisters the given action engine. -
getDefaultActionEngine
-
getActionEngine
Obtain an action engine by name.- Parameters:
actionEngineName
- is the name of the action engine
-
getActionEngines
Provides access to action engines to application clients in a managed server environment. -
destroy
public static void destroy()Closes all action engines. This method should be called when the server shuts down. -
isInitialized
public static boolean isInitialized() -
setInitialized
public static void setInitialized(boolean isInitialized)
-