Interface HistoricVariableInstanceDataManager
- All Superinterfaces:
DataManager<HistoricVariableInstanceEntity>
- All Known Implementing Classes:
MybatisHistoricVariableInstanceDataManager
public interface HistoricVariableInstanceDataManager
extends DataManager<HistoricVariableInstanceEntity>
- Author:
- Joram Barrez
-
Method Summary
Modifier and TypeMethodDescriptionvoidbulkDeleteHistoricVariableInstancesByProcessInstanceIds(Collection<String> processInstanceIds) voidbulkDeleteHistoricVariableInstancesByScopeIdsAndScopeType(Collection<String> scopeIds, String scopeType) voidvoidvoidfindHistoricalVariableInstancesByScopeIdAndScopeType(String scopeId, String scopeType) findHistoricalVariableInstancesBySubScopeIdAndScopeType(String subScopeId, String scopeType) findHistoricVariableInstanceByVariableInstanceId(String variableInstanceId) longfindHistoricVariableInstanceCountByNativeQuery(Map<String, Object> parameterMap) longfindHistoricVariableInstanceCountByQueryCriteria(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()
-