Class HistoricVariableInstanceManager
- java.lang.Object
-
- org.camunda.bpm.engine.impl.persistence.AbstractManager
-
- org.camunda.bpm.engine.impl.persistence.AbstractHistoricManager
-
- org.camunda.bpm.engine.impl.persistence.entity.HistoricVariableInstanceManager
-
- All Implemented Interfaces:
Session
public class HistoricVariableInstanceManager extends AbstractHistoricManager
- Author:
- Christian Lipphardt (camunda)
-
-
Field Summary
-
Fields inherited from class org.camunda.bpm.engine.impl.persistence.AbstractHistoricManager
historyLevel, isHistoryEnabled, isHistoryLevelFullEnabled, LOG
-
-
Constructor Summary
Constructors Constructor Description HistoricVariableInstanceManager()
-
Method Summary
-
Methods inherited from class org.camunda.bpm.engine.impl.persistence.AbstractHistoricManager
checkHistoryEnabled, isHistoryEnabled, isHistoryLevelFullEnabled
-
Methods inherited from class org.camunda.bpm.engine.impl.persistence.AbstractManager
checkAuthorization, close, configureQuery, delete, deleteAuthorizations, deleteAuthorizationsForGroup, deleteAuthorizationsForUser, deleteDefaultAuthorizations, flush, getAttachmentManager, getAuthorizationManager, getBatchManager, getByteArrayManager, getCamundaFormDefinitionManager, getCaseDefinitionManager, getCaseExecutionManager, getCaseInstanceManager, getCommandContext, getCurrentAuthentication, getDbEntityManager, getDbSqlSession, getDecisionDefinitionManager, getDecisionRequirementsDefinitionManager, getDeploymentManager, getEventSubscriptionManager, getHistoricActivityInstanceManager, getHistoricBatchManager, getHistoricCaseActivityInstanceManager, getHistoricCaseInstanceManager, getHistoricDecisionInstanceManager, getHistoricDetailManager, getHistoricExternalTaskLogManager, getHistoricIdentityLinkManager, getHistoricIncidentManager, getHistoricJobLogManager, getHistoricProcessInstanceManager, getHistoricReportManager, getHistoricTaskInstanceManager, getHistoricVariableInstanceManager, getIdentityInfoManager, getIdentityLinkManager, getJobDefinitionManager, getJobManager, getProcessDefinitionManager, getProcessInstanceManager, getResourceAuthorizationProvider, getResourceManager, getSession, getTaskManager, getTaskReportManager, getTenantManager, getUserOperationLogManager, getVariableInstanceManager, insert, isAuthorizationEnabled, saveDefaultAuthorizations
-
-
-
-
Method Detail
-
deleteHistoricVariableInstanceByVariableInstanceId
public void deleteHistoricVariableInstanceByVariableInstanceId(String historicVariableInstanceId)
-
deleteHistoricVariableInstanceByProcessInstanceIds
public void deleteHistoricVariableInstanceByProcessInstanceIds(List<String> historicProcessInstanceIds)
-
deleteHistoricVariableInstancesByTaskProcessInstanceIds
public void deleteHistoricVariableInstancesByTaskProcessInstanceIds(List<String> historicProcessInstanceIds)
-
deleteHistoricVariableInstanceByCaseInstanceId
public void deleteHistoricVariableInstanceByCaseInstanceId(String historicCaseInstanceId)
-
deleteHistoricVariableInstancesByCaseInstanceIds
public void deleteHistoricVariableInstancesByCaseInstanceIds(List<String> historicCaseInstanceIds)
-
deleteHistoricVariableInstances
protected void deleteHistoricVariableInstances(Map<String,Object> parameters)
-
deleteHistoricVariableInstancesByProcessCaseInstanceId
protected void deleteHistoricVariableInstancesByProcessCaseInstanceId(String historicProcessInstanceId, String historicCaseInstanceId)
-
findHistoricVariableInstancesByProcessInstanceId
public List<HistoricVariableInstance> findHistoricVariableInstancesByProcessInstanceId(String processInstanceId)
-
findHistoricVariableInstancesByCaseInstanceId
public List<HistoricVariableInstance> findHistoricVariableInstancesByCaseInstanceId(String caseInstanceId)
-
findHistoricVariableInstanceCountByQueryCriteria
public long findHistoricVariableInstanceCountByQueryCriteria(HistoricVariableInstanceQueryImpl historicProcessVariableQuery)
-
findHistoricVariableInstancesByQueryCriteria
public List<HistoricVariableInstance> findHistoricVariableInstancesByQueryCriteria(HistoricVariableInstanceQueryImpl historicProcessVariableQuery, Page page)
-
findHistoricVariableInstanceByVariableInstanceId
public HistoricVariableInstanceEntity findHistoricVariableInstanceByVariableInstanceId(String variableInstanceId)
-
deleteHistoricVariableInstancesByTaskId
public void deleteHistoricVariableInstancesByTaskId(String taskId)
-
addRemovalTimeToVariableInstancesByRootProcessInstanceId
public void addRemovalTimeToVariableInstancesByRootProcessInstanceId(String rootProcessInstanceId, Date removalTime)
-
addRemovalTimeToVariableInstancesByProcessInstanceId
public void addRemovalTimeToVariableInstancesByProcessInstanceId(String processInstanceId, Date removalTime)
-
findHistoricVariableInstancesByNativeQuery
public List<HistoricVariableInstance> findHistoricVariableInstancesByNativeQuery(Map<String,Object> parameterMap, int firstResult, int maxResults)
-
findHistoricVariableInstanceCountByNativeQuery
public long findHistoricVariableInstanceCountByNativeQuery(Map<String,Object> parameterMap)
-
configureQuery
protected void configureQuery(HistoricVariableInstanceQueryImpl query)
-
deleteHistoricVariableInstancesByRemovalTime
public DbOperation deleteHistoricVariableInstancesByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize)
-
-