Class MybatisHistoricVariableInstanceDataManager
- java.lang.Object
-
- org.activiti.engine.impl.persistence.AbstractManager
-
- org.activiti.engine.impl.persistence.entity.data.AbstractDataManager<HistoricVariableInstanceEntity>
-
- org.activiti.engine.impl.persistence.entity.data.impl.MybatisHistoricVariableInstanceDataManager
-
- All Implemented Interfaces:
DataManager<HistoricVariableInstanceEntity>,HistoricVariableInstanceDataManager
public class MybatisHistoricVariableInstanceDataManager extends AbstractDataManager<HistoricVariableInstanceEntity> implements HistoricVariableInstanceDataManager
-
-
Field Summary
Fields Modifier and Type Field Description protected CachedEntityMatcher<HistoricVariableInstanceEntity>historicVariableInstanceByProcInstMatcherprotected CachedEntityMatcher<HistoricVariableInstanceEntity>historicVariableInstanceByTaskIdMatcher-
Fields inherited from class org.activiti.engine.impl.persistence.AbstractManager
processEngineConfiguration
-
-
Constructor Summary
Constructors Constructor Description MybatisHistoricVariableInstanceDataManager(ProcessEngineConfigurationImpl processEngineConfiguration)
-
Method Summary
-
Methods inherited from class org.activiti.engine.impl.persistence.entity.data.AbstractDataManager
delete, delete, findById, getDbSqlSession, getEntity, getEntityCache, getList, getListFromCache, getManagedEntitySubClasses, update
-
Methods inherited from class org.activiti.engine.impl.persistence.AbstractManager
getAsyncExecutor, getAttachmentEntityManager, getByteArrayEntityManager, getClock, getCommandContext, getCommandExecutor, getCommentEntityManager, getDeadLetterJobEntityManager, getDeploymentEntityManager, getEventDispatcher, getEventSubscriptionEntityManager, getExecutionEntityManager, getHistoricActivityInstanceEntityManager, getHistoricDetailEntityManager, getHistoricIdentityLinkEntityManager, getHistoricProcessInstanceEntityManager, getHistoricTaskInstanceEntityManager, getHistoricVariableInstanceEntityManager, getHistoryManager, getIdentityLinkEntityManager, getJobEntityManager, getJobManager, getModelEntityManager, getProcessDefinitionEntityManager, getProcessDefinitionInfoEntityManager, getProcessEngineConfiguration, getResourceEntityManager, getSession, getSuspendedJobEntityManager, getTaskEntityManager, getTimerJobEntityManager, getVariableInstanceEntityManager
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.activiti.engine.impl.persistence.entity.data.DataManager
delete, delete, findById, update
-
-
-
-
Field Detail
-
historicVariableInstanceByTaskIdMatcher
protected CachedEntityMatcher<HistoricVariableInstanceEntity> historicVariableInstanceByTaskIdMatcher
-
historicVariableInstanceByProcInstMatcher
protected CachedEntityMatcher<HistoricVariableInstanceEntity> historicVariableInstanceByProcInstMatcher
-
-
Constructor Detail
-
MybatisHistoricVariableInstanceDataManager
public MybatisHistoricVariableInstanceDataManager(ProcessEngineConfigurationImpl processEngineConfiguration)
-
-
Method Detail
-
getManagedEntityClass
public java.lang.Class<? extends HistoricVariableInstanceEntity> getManagedEntityClass()
- Specified by:
getManagedEntityClassin classAbstractDataManager<HistoricVariableInstanceEntity>
-
create
public HistoricVariableInstanceEntity create()
- Specified by:
createin interfaceDataManager<HistoricVariableInstanceEntity>
-
insert
public void insert(HistoricVariableInstanceEntity entity)
- Specified by:
insertin interfaceDataManager<HistoricVariableInstanceEntity>- Overrides:
insertin classAbstractDataManager<HistoricVariableInstanceEntity>
-
findHistoricVariableInstancesByProcessInstanceId
public java.util.List<HistoricVariableInstanceEntity> findHistoricVariableInstancesByProcessInstanceId(java.lang.String processInstanceId)
- Specified by:
findHistoricVariableInstancesByProcessInstanceIdin interfaceHistoricVariableInstanceDataManager
-
findHistoricVariableInstancesByTaskId
public java.util.List<HistoricVariableInstanceEntity> findHistoricVariableInstancesByTaskId(java.lang.String taskId)
- Specified by:
findHistoricVariableInstancesByTaskIdin interfaceHistoricVariableInstanceDataManager
-
findHistoricVariableInstanceCountByQueryCriteria
public long findHistoricVariableInstanceCountByQueryCriteria(HistoricVariableInstanceQueryImpl historicProcessVariableQuery)
- Specified by:
findHistoricVariableInstanceCountByQueryCriteriain interfaceHistoricVariableInstanceDataManager
-
findHistoricVariableInstancesByQueryCriteria
public java.util.List<HistoricVariableInstance> findHistoricVariableInstancesByQueryCriteria(HistoricVariableInstanceQueryImpl historicProcessVariableQuery, Page page)
- Specified by:
findHistoricVariableInstancesByQueryCriteriain interfaceHistoricVariableInstanceDataManager
-
findHistoricVariableInstanceByVariableInstanceId
public HistoricVariableInstanceEntity findHistoricVariableInstanceByVariableInstanceId(java.lang.String variableInstanceId)
- Specified by:
findHistoricVariableInstanceByVariableInstanceIdin interfaceHistoricVariableInstanceDataManager
-
findHistoricVariableInstancesByNativeQuery
public java.util.List<HistoricVariableInstance> findHistoricVariableInstancesByNativeQuery(java.util.Map<java.lang.String,java.lang.Object> parameterMap, int firstResult, int maxResults)
- Specified by:
findHistoricVariableInstancesByNativeQueryin interfaceHistoricVariableInstanceDataManager
-
findHistoricVariableInstanceCountByNativeQuery
public long findHistoricVariableInstanceCountByNativeQuery(java.util.Map<java.lang.String,java.lang.Object> parameterMap)
- Specified by:
findHistoricVariableInstanceCountByNativeQueryin interfaceHistoricVariableInstanceDataManager
-
-