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 java.util.List<VariableInstanceEntity> findVariableInstancesByTaskId(java.lang.String taskId)
-
findVariableInstancesByTaskIdAndVariableNames
public java.util.List<VariableInstanceEntity> findVariableInstancesByTaskIdAndVariableNames(java.lang.String taskId, java.util.Collection<java.lang.String> variableNames)
-
findVariableInstancesByExecutionId
public java.util.List<VariableInstanceEntity> findVariableInstancesByExecutionId(java.lang.String executionId)
-
findVariableInstancesByExecutionIdAndVariableNames
public java.util.List<VariableInstanceEntity> findVariableInstancesByExecutionIdAndVariableNames(java.lang.String executionId, java.util.Collection<java.lang.String> variableNames)
-
findVariableInstancesByProcessInstanceId
public java.util.List<VariableInstanceEntity> findVariableInstancesByProcessInstanceId(java.lang.String processInstanceId)
-
findVariableInstancesByCaseExecutionId
public java.util.List<VariableInstanceEntity> findVariableInstancesByCaseExecutionId(java.lang.String caseExecutionId)
-
findVariableInstancesByCaseExecutionIdAndVariableNames
public java.util.List<VariableInstanceEntity> findVariableInstancesByCaseExecutionIdAndVariableNames(java.lang.String caseExecutionId, java.util.Collection<java.lang.String> variableNames)
-
deleteVariableInstanceByTask
public void deleteVariableInstanceByTask(TaskEntity task)
-
findVariableInstanceCountByQueryCriteria
public long findVariableInstanceCountByQueryCriteria(VariableInstanceQueryImpl variableInstanceQuery)
-
findVariableInstanceByQueryCriteria
public java.util.List<VariableInstance> findVariableInstanceByQueryCriteria(VariableInstanceQueryImpl variableInstanceQuery, Page page)
-
configureQuery
protected void configureQuery(VariableInstanceQueryImpl query)
-
findVariableInstancesByBatchId
public java.util.List<VariableInstanceEntity> findVariableInstancesByBatchId(java.lang.String batchId)
-
-