Interface ActionInstanceDataManager
- All Superinterfaces:
DataManager<ActionInstanceEntity>
- All Known Implementing Classes:
MybatisActionInstanceDataManager
- Author:
- Tijs Rademakers
-
Method Summary
Modifier and TypeMethodDescriptionvoid
bulkDeleteActionInstancesByScopeIdsAndScopeType
(Collection<String> scopeIds, String scopeType) void
deleteByActionDefinitionId
(String actionDefinitionId) long
findActionInstanceCountByQueryCriteria
(ActionInstanceQueryImpl actionInstanceQuery) findActionInstanceIdsForScopeIdsAndScopeType
(Collection<String> scopeIds, String scopeType) findActionInstancesByQueryCriteria
(ActionInstanceQueryImpl actionInstanceQuery) findActionInstancesForScopeIdAndSubScopeId
(String scopeType, String scopeId, String subScopeId) findActionInstancesForScopeIdAndSubScopeId
(String scopeType, String scopeId, String subScopeId, boolean includeDeletedInCache) Special method that also returns those in the cache that are deleted.
-
Method Details
-
findActionInstancesForScopeIdAndSubScopeId
List<ActionInstance> findActionInstancesForScopeIdAndSubScopeId(String scopeType, String scopeId, String subScopeId) -
findActionInstancesForScopeIdAndSubScopeId
List<ActionInstance> findActionInstancesForScopeIdAndSubScopeId(String scopeType, String scopeId, String subScopeId, boolean includeDeletedInCache) Special method that also returns those in the cache that are deleted. This is needed in the special use case where the actionInstance was executed and later removed by a plan item listener. -
findActionInstanceIdsForScopeIdsAndScopeType
List<String> findActionInstanceIdsForScopeIdsAndScopeType(Collection<String> scopeIds, String scopeType) -
findActionInstanceCountByQueryCriteria
-
findActionInstancesByQueryCriteria
List<ActionInstance> findActionInstancesByQueryCriteria(ActionInstanceQueryImpl actionInstanceQuery) -
deleteByActionDefinitionId
-
bulkDeleteActionInstancesByScopeIdsAndScopeType
-