Class FindScopedActionDataCmd
- java.lang.Object
-
- com.flowable.action.engine.impl.cmd.FindScopedActionDataCmd
-
- All Implemented Interfaces:
Command<ScopedObjectActionData>
public class FindScopedActionDataCmd extends Object implements Command<ScopedObjectActionData>
-
-
Field Summary
Fields Modifier and Type Field Description protected ScopedObjectActionQuery
scopedActionQuery
-
Constructor Summary
Constructors Constructor Description FindScopedActionDataCmd(ScopedObjectActionQuery scopedActionQuery)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ScopedObjectActionData
execute(CommandContext commandContext)
protected Set<String>
filterResults(CommandContext commandContext, ScopedObjectActionData result)
Returns removed action definitionsprotected ActionDefinitionModel
getActionDefinitionModel(CommandContext commandContext, String actionDefinitionId)
protected List<ActionDefinition>
getActionDefinitions(CommandContext commandContext, String tenantId)
protected List<ActionDefinition>
getActionDefinitions(CommandContext commandContext, List<ActionInstance> actionInstances)
protected List<ActionInstance>
getActionInstances(CommandContext commandContext)
protected List<ScopedObjectActionFilter>
getFilters(CommandContext commandContext)
protected ScopedObjectProvider<?,?>
getScopedObjectProvider(CommandContext commandContext)
-
-
-
Field Detail
-
scopedActionQuery
protected ScopedObjectActionQuery scopedActionQuery
-
-
Constructor Detail
-
FindScopedActionDataCmd
public FindScopedActionDataCmd(ScopedObjectActionQuery scopedActionQuery)
-
-
Method Detail
-
execute
public ScopedObjectActionData execute(CommandContext commandContext)
- Specified by:
execute
in interfaceCommand<ScopedObjectActionData>
-
getScopedObjectProvider
protected ScopedObjectProvider<?,?> getScopedObjectProvider(CommandContext commandContext)
-
getFilters
protected List<ScopedObjectActionFilter> getFilters(CommandContext commandContext)
-
getActionDefinitions
protected List<ActionDefinition> getActionDefinitions(CommandContext commandContext, String tenantId)
-
getActionInstances
protected List<ActionInstance> getActionInstances(CommandContext commandContext)
-
getActionDefinitions
protected List<ActionDefinition> getActionDefinitions(CommandContext commandContext, List<ActionInstance> actionInstances)
-
getActionDefinitionModel
protected ActionDefinitionModel getActionDefinitionModel(CommandContext commandContext, String actionDefinitionId)
-
filterResults
protected Set<String> filterResults(CommandContext commandContext, ScopedObjectActionData result)
Returns removed action definitions
-
-