Interface HistoricVariableInstanceDataManager
- All Superinterfaces:
DataManager<HistoricVariableInstanceEntity>
- All Known Implementing Classes:
MybatisHistoricVariableInstanceDataManager
public interface HistoricVariableInstanceDataManager
extends DataManager<HistoricVariableInstanceEntity>
- Author:
- Joram Barrez
-
Method Summary
Modifier and TypeMethodDescriptionvoid
bulkDeleteHistoricVariableInstancesByProcessInstanceIds
(Collection<String> processInstanceIds) void
bulkDeleteHistoricVariableInstancesByScopeIdsAndScopeType
(Collection<String> scopeIds, String scopeType) void
void
void
findHistoricalVariableInstancesByScopeIdAndScopeType
(String scopeId, String scopeType) findHistoricalVariableInstancesBySubScopeIdAndScopeType
(String subScopeId, String scopeType) findHistoricVariableInstanceByVariableInstanceId
(String variableInstanceId) long
findHistoricVariableInstanceCountByNativeQuery
(Map<String, Object> parameterMap) long
findHistoricVariableInstanceCountByQueryCriteria
(HistoricVariableInstanceQueryImpl historicProcessVariableQuery) findHistoricVariableInstancesByNativeQuery
(Map<String, Object> parameterMap) findHistoricVariableInstancesByProcessInstanceId
(String processInstanceId) findHistoricVariableInstancesByQueryCriteria
(HistoricVariableInstanceQueryImpl historicProcessVariableQuery)
-
Method Details
-
findHistoricVariableInstancesByProcessInstanceId
List<HistoricVariableInstanceEntity> findHistoricVariableInstancesByProcessInstanceId(String processInstanceId) -
findHistoricVariableInstancesByTaskId
-
findHistoricVariableInstanceCountByQueryCriteria
long findHistoricVariableInstanceCountByQueryCriteria(HistoricVariableInstanceQueryImpl historicProcessVariableQuery) -
findHistoricVariableInstancesByQueryCriteria
List<HistoricVariableInstance> findHistoricVariableInstancesByQueryCriteria(HistoricVariableInstanceQueryImpl historicProcessVariableQuery) -
findHistoricVariableInstanceByVariableInstanceId
HistoricVariableInstanceEntity findHistoricVariableInstanceByVariableInstanceId(String variableInstanceId) -
findHistoricalVariableInstancesByScopeIdAndScopeType
List<HistoricVariableInstanceEntity> findHistoricalVariableInstancesByScopeIdAndScopeType(String scopeId, String scopeType) -
findHistoricalVariableInstancesBySubScopeIdAndScopeType
List<HistoricVariableInstanceEntity> findHistoricalVariableInstancesBySubScopeIdAndScopeType(String subScopeId, String scopeType) -
findHistoricVariableInstancesByNativeQuery
List<HistoricVariableInstance> findHistoricVariableInstancesByNativeQuery(Map<String, Object> parameterMap) -
findHistoricVariableInstanceCountByNativeQuery
-
bulkDeleteHistoricVariableInstancesByProcessInstanceIds
-
bulkDeleteHistoricVariableInstancesByTaskIds
-
bulkDeleteHistoricVariableInstancesByScopeIdsAndScopeType
void bulkDeleteHistoricVariableInstancesByScopeIdsAndScopeType(Collection<String> scopeIds, String scopeType) -
deleteHistoricVariableInstancesForNonExistingProcessInstances
void deleteHistoricVariableInstancesForNonExistingProcessInstances() -
deleteHistoricVariableInstancesForNonExistingCaseInstances
void deleteHistoricVariableInstancesForNonExistingCaseInstances()
-