Class VariableInstanceManager
- java.lang.Object
-
- org.camunda.bpm.engine.impl.persistence.AbstractManager
-
- org.camunda.bpm.engine.impl.persistence.entity.VariableInstanceManager
-
- All Implemented Interfaces:
Session
public class VariableInstanceManager extends AbstractManager
- Author:
- Tom Baeyens
-
-
Constructor Summary
Constructors Constructor Description VariableInstanceManager()
-
Method Summary
-
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
-
findVariableInstancesByTaskId
public List<VariableInstanceEntity> findVariableInstancesByTaskId(String taskId)
-
findVariableInstancesByTaskIdAndVariableNames
public List<VariableInstanceEntity> findVariableInstancesByTaskIdAndVariableNames(String taskId, Collection<String> variableNames)
-
findVariableInstancesByExecutionId
public List<VariableInstanceEntity> findVariableInstancesByExecutionId(String executionId)
-
findVariableInstancesByExecutionIdAndVariableNames
public List<VariableInstanceEntity> findVariableInstancesByExecutionIdAndVariableNames(String executionId, Collection<String> variableNames)
-
findVariableInstancesByProcessInstanceId
public List<VariableInstanceEntity> findVariableInstancesByProcessInstanceId(String processInstanceId)
-
findVariableInstancesByCaseExecutionId
public List<VariableInstanceEntity> findVariableInstancesByCaseExecutionId(String caseExecutionId)
-
findVariableInstancesByCaseExecutionIdAndVariableNames
public List<VariableInstanceEntity> findVariableInstancesByCaseExecutionIdAndVariableNames(String caseExecutionId, Collection<String> variableNames)
-
deleteVariableInstanceByTask
public void deleteVariableInstanceByTask(TaskEntity task)
-
findVariableInstanceCountByQueryCriteria
public long findVariableInstanceCountByQueryCriteria(VariableInstanceQueryImpl variableInstanceQuery)
-
findVariableInstanceByQueryCriteria
public List<VariableInstance> findVariableInstanceByQueryCriteria(VariableInstanceQueryImpl variableInstanceQuery, Page page)
-
configureQuery
protected void configureQuery(VariableInstanceQueryImpl query)
-
findVariableInstancesByBatchId
public List<VariableInstanceEntity> findVariableInstancesByBatchId(String batchId)
-
-