Class ActionRuntimeServiceImpl
java.lang.Object
org.flowable.common.engine.impl.service.CommonServiceImpl<C>
org.flowable.common.engine.impl.service.CommonEngineServiceImpl<ActionEngineConfiguration>
com.flowable.action.engine.impl.runtime.ActionRuntimeServiceImpl
- All Implemented Interfaces:
ActionRuntimeService
public class ActionRuntimeServiceImpl extends org.flowable.common.engine.impl.service.CommonEngineServiceImpl<ActionEngineConfiguration> implements ActionRuntimeService
- Author:
- Tijs Rademakers
-
Field Summary
-
Constructor Summary
Constructors Constructor Description ActionRuntimeServiceImpl(ActionEngineConfiguration engineConfiguration)
-
Method Summary
Modifier and Type Method Description ActionTypeLink
addActionInstanceTypeLink(java.lang.String actionInstanceId, java.lang.String type, java.lang.String linkValue)
Adds a newActionTypeLink
for the given action instance id.ActionInstanceBuilder
createActionInstanceBuilder()
Starts creating a new action instanceActionInstanceQuery
createActionInstanceQuery()
Query action instancesActionLinkQuery
createActionLinkQuery()
Query action linksExecuteActionInstanceBuilder
createExecuteActionInstanceBuilder()
Executes a new action instancevoid
deleteActionInstance(java.lang.String actionInstanceId)
delete an action instance by idvoid
deleteActionInstanceTypeLink(java.lang.String actionInstanceTypeLinkId)
Deletes anActionTypeLink
for the given action instance link id.ActionInstanceExecutionResult
executeActionInstance(ExecuteActionInstanceBuilderImpl executeActionInstanceBuilder)
java.util.List<ActionInstance>
findActionInstancesForScopeIdAndSubScopeId(java.lang.String scopeType, java.lang.String scopeId, java.lang.String subScopeId, boolean includeDeletedFromCache)
ScopedObjectActionData
findScopedObjectActionData(ScopedObjectActionQuery scopedActionQuery)
Finds allActionDefinition
andActionInstance
instances that match the scope information passed in theScopedObjectActionQuery
parameters and returns these as aScopedObjectActionData
instance.java.util.List<org.flowable.identitylink.api.IdentityLink>
getActionInstanceIdentityLinks(java.lang.String actionInstanceId)
java.util.List<ActionTypeLink>
getActionInstanceTypeLinks(java.lang.String actionInstanceId)
ReturnsActionTypeLink
s for the given action instance id.org.flowable.form.api.FormInfo
getFormInfo(java.lang.String actionInstanceId)
java.util.Map<java.lang.String,java.lang.Object>
getVariables(java.lang.String actionInstanceId)
void
migrateActionTypeLinks()
migrate action type linksActionInstance
startActionInstance(ActionInstanceBuilderImpl actionInstanceBuilder)
Methods inherited from class org.flowable.common.engine.impl.service.CommonEngineServiceImpl
getCommandExecutor, setCommandExecutor
-
Constructor Details
-
Method Details
-
createActionInstanceBuilder
Description copied from interface:ActionRuntimeService
Starts creating a new action instance- Specified by:
createActionInstanceBuilder
in interfaceActionRuntimeService
-
createExecuteActionInstanceBuilder
Description copied from interface:ActionRuntimeService
Executes a new action instance- Specified by:
createExecuteActionInstanceBuilder
in interfaceActionRuntimeService
-
deleteActionInstance
public void deleteActionInstance(java.lang.String actionInstanceId)Description copied from interface:ActionRuntimeService
delete an action instance by id- Specified by:
deleteActionInstance
in interfaceActionRuntimeService
-
startActionInstance
-
executeActionInstance
public ActionInstanceExecutionResult executeActionInstance(ExecuteActionInstanceBuilderImpl executeActionInstanceBuilder) -
findScopedObjectActionData
public ScopedObjectActionData findScopedObjectActionData(ScopedObjectActionQuery scopedActionQuery)Description copied from interface:ActionRuntimeService
Finds allActionDefinition
andActionInstance
instances that match the scope information passed in theScopedObjectActionQuery
parameters and returns these as aScopedObjectActionData
instance. A 'scope' is a combination of a type (e.g. conversation) and identifiers (e.g the conversationId). Typically an action is created for a certain scope (e.g. a certain conversation), so the return result will contain allActionInstance
results for that particular query. Some action definitions are applicable for the scope (e.g. the action to join a conversation), but don't have an action instance, as they can be repeated many times and there is no such thing as 'one action' to execute. This is why the result also contains theseActionDefinition
s that match the given scope. All definitions and instances found this way are put through the list of filters that are registered on the action engine configuration. Other engines (engage, cmmn, process, etc.) should inject scope-specific filters into the engine.- Specified by:
findScopedObjectActionData
in interfaceActionRuntimeService
-
getActionInstanceIdentityLinks
public java.util.List<org.flowable.identitylink.api.IdentityLink> getActionInstanceIdentityLinks(java.lang.String actionInstanceId)- Specified by:
getActionInstanceIdentityLinks
in interfaceActionRuntimeService
-
getFormInfo
public org.flowable.form.api.FormInfo getFormInfo(java.lang.String actionInstanceId)- Specified by:
getFormInfo
in interfaceActionRuntimeService
-
getVariables
public java.util.Map<java.lang.String,java.lang.Object> getVariables(java.lang.String actionInstanceId)- Specified by:
getVariables
in interfaceActionRuntimeService
-
findActionInstancesForScopeIdAndSubScopeId
public java.util.List<ActionInstance> findActionInstancesForScopeIdAndSubScopeId(java.lang.String scopeType, java.lang.String scopeId, java.lang.String subScopeId, boolean includeDeletedFromCache)- Specified by:
findActionInstancesForScopeIdAndSubScopeId
in interfaceActionRuntimeService
includeDeletedFromCache
- Only set this to true for very specific use cases where the action instance could be deleted prior and it's still needed.
-
getActionInstanceTypeLinks
public java.util.List<ActionTypeLink> getActionInstanceTypeLinks(java.lang.String actionInstanceId)Description copied from interface:ActionRuntimeService
ReturnsActionTypeLink
s for the given action instance id.- Specified by:
getActionInstanceTypeLinks
in interfaceActionRuntimeService
-
addActionInstanceTypeLink
public ActionTypeLink addActionInstanceTypeLink(java.lang.String actionInstanceId, java.lang.String type, java.lang.String linkValue)Description copied from interface:ActionRuntimeService
Adds a newActionTypeLink
for the given action instance id.- Specified by:
addActionInstanceTypeLink
in interfaceActionRuntimeService
-
deleteActionInstanceTypeLink
public void deleteActionInstanceTypeLink(java.lang.String actionInstanceTypeLinkId)Description copied from interface:ActionRuntimeService
Deletes anActionTypeLink
for the given action instance link id.- Specified by:
deleteActionInstanceTypeLink
in interfaceActionRuntimeService
-
createActionInstanceQuery
Description copied from interface:ActionRuntimeService
Query action instances- Specified by:
createActionInstanceQuery
in interfaceActionRuntimeService
-
createActionLinkQuery
Description copied from interface:ActionRuntimeService
Query action links- Specified by:
createActionLinkQuery
in interfaceActionRuntimeService
-
migrateActionTypeLinks
public void migrateActionTypeLinks()Description copied from interface:ActionRuntimeService
migrate action type links- Specified by:
migrateActionTypeLinks
in interfaceActionRuntimeService
-