Package com.flowable.action.engine.impl
Class ActionEngineImpl
- java.lang.Object
-
- com.flowable.action.engine.impl.ActionEngineImpl
-
- All Implemented Interfaces:
ActionEngine
public class ActionEngineImpl extends Object implements ActionEngine
- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description protected ActionHistoryService
actionHistoryService
protected ActionManagementService
actionManagementService
protected ActionRepositoryService
actionRepositoryService
protected ActionRuntimeService
actionRuntimeService
protected ActionEngineConfiguration
engineConfiguration
protected org.slf4j.Logger
logger
protected String
name
-
Constructor Summary
Constructors Constructor Description ActionEngineImpl(ActionEngineConfiguration engineConfiguration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
ActionEngineConfiguration
getActionEngineConfiguration()
ActionHistoryService
getActionHistoryService()
ActionManagementService
getActionManagementService()
ActionRepositoryService
getActionRepositoryService()
ActionRuntimeService
getActionRuntimeService()
String
getName()
-
-
-
Field Detail
-
logger
protected final org.slf4j.Logger logger
-
name
protected String name
-
engineConfiguration
protected ActionEngineConfiguration engineConfiguration
-
actionRepositoryService
protected ActionRepositoryService actionRepositoryService
-
actionRuntimeService
protected ActionRuntimeService actionRuntimeService
-
actionHistoryService
protected ActionHistoryService actionHistoryService
-
actionManagementService
protected ActionManagementService actionManagementService
-
-
Constructor Detail
-
ActionEngineImpl
public ActionEngineImpl(ActionEngineConfiguration engineConfiguration)
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getName
in interfaceActionEngine
-
close
public void close()
- Specified by:
close
in interfaceActionEngine
-
getActionRepositoryService
public ActionRepositoryService getActionRepositoryService()
- Specified by:
getActionRepositoryService
in interfaceActionEngine
-
getActionRuntimeService
public ActionRuntimeService getActionRuntimeService()
- Specified by:
getActionRuntimeService
in interfaceActionEngine
-
getActionHistoryService
public ActionHistoryService getActionHistoryService()
- Specified by:
getActionHistoryService
in interfaceActionEngine
-
getActionManagementService
public ActionManagementService getActionManagementService()
- Specified by:
getActionManagementService
in interfaceActionEngine
-
getActionEngineConfiguration
public ActionEngineConfiguration getActionEngineConfiguration()
- Specified by:
getActionEngineConfiguration
in interfaceActionEngine
-
-