Uses of Interface
org.camunda.bpm.engine.history.HistoricVariableInstanceQuery
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine
can be obtained.Through the services obtained from such a
ProcessEngine
, BPM and workflow operation
can be executed:RepositoryService
:
Manages Deployment
sRuntimeService
:
For starting and searching ProcessInstance
sTaskService
:
Exposes operations to manage human (standalone) Task
s,
such as claiming, completing and assigning tasksIdentityService
:
Used for managing User
s,
Group
s and the relations between themManagementService
:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService
:
Exposes information about ongoing and past process instances.FormService
:
Access to form data and rendered forms for starting new process instances and completing tasks.Classes related to the
HistoryService
.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of HistoricVariableInstanceQuery in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionHistoryService.createHistoricVariableInstanceQuery()
Creates a new programmatic query to search forHistoricVariableInstance
s. -
Uses of HistoricVariableInstanceQuery in org.camunda.bpm.engine.history
Modifier and TypeMethodDescriptionHistoricVariableInstanceQuery.activityInstanceIdIn
(String... activityInstanceIds) Only select historic variable instances which have one of the activity instance ids.HistoricVariableInstanceQuery.caseActivityIdIn
(String... caseActivityIds) Only select historic variable instances with one of the given case activity ids.HistoricVariableInstanceQuery.caseExecutionIdIn
(String... caseExecutionIds) Only select historic variable instances which have one of the case executions ids.HistoricVariableInstanceQuery.caseInstanceId
(String caseInstanceId) Only select historic case variables with the given case instance.HistoricVariableInstanceQuery.disableBinaryFetching()
Disable fetching of byte array and file values.HistoricVariableInstanceQuery.disableCustomObjectDeserialization()
Disable deserialization of variable values that are custom objects.HistoricVariableInstanceQuery.executionIdIn
(String... executionIds) Only select historic variable instances which have one of the executions ids.HistoricVariableInstanceQuery.includeDeleted()
Include variables that has been already deleted during the executionHistoricVariableInstanceQuery.matchVariableNamesIgnoreCase()
The query will match the names of task and process variables in a case-insensitive way.HistoricVariableInstanceQuery.matchVariableValuesIgnoreCase()
The query will match the values of task and process variables in a case-insensitive way.HistoricVariableInstanceQuery.orderByProcessInstanceId()
HistoricVariableInstanceQuery.orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricVariableInstanceQuery.orderByVariableName()
HistoricVariableInstanceQuery.processDefinitionId
(String processDefinitionId) Only select historic process variables for the given process definitionHistoricVariableInstanceQuery.processDefinitionKey
(String processDefinitionKey) Only select historic process variables for the given process definition keyHistoricVariableInstanceQuery.processInstanceId
(String processInstanceId) Only select historic process variables with the given process instance.HistoricVariableInstanceQuery.processInstanceIdIn
(String... processInstanceIds) Only select historic process variables with the given process instance ids.Only select historic variable instances which have one of the task ids.HistoricVariableInstanceQuery.tenantIdIn
(String... tenantIds) Only select historic variable instances with one of the given tenant ids.HistoricVariableInstanceQuery.variableId
(String id) Only select the variable with the given IdHistoricVariableInstanceQuery.variableName
(String variableName) Only select historic process variables with the given variable name.HistoricVariableInstanceQuery.variableNameIn
(String... names) Only select historic process variables with the given variable names.HistoricVariableInstanceQuery.variableNameLike
(String variableNameLike) Only select historic process variables where the given variable name is like.HistoricVariableInstanceQuery.variableTypeIn
(String... variableTypes) Only select historic process variables which match one of the given variable types.HistoricVariableInstanceQuery.variableValueEquals
(String variableName, Object variableValue) only select historic process variables with the given name and valueHistoricVariableInstanceQuery.withoutTenantId()
Only selects historic variable instances that have no tenant id. -
Uses of HistoricVariableInstanceQuery in org.camunda.bpm.engine.impl
Modifier and TypeMethodDescriptionHistoricVariableInstanceQueryImpl.activityInstanceIdIn
(String... activityInstanceIds) HistoricVariableInstanceQueryImpl.caseActivityIdIn
(String... caseActivityIds) HistoricVariableInstanceQueryImpl.caseExecutionIdIn
(String... caseExecutionIds) HistoricVariableInstanceQueryImpl.caseInstanceId
(String caseInstanceId) HistoryServiceImpl.createHistoricVariableInstanceQuery()
HistoricVariableInstanceQueryImpl.disableBinaryFetching()
HistoricVariableInstanceQueryImpl.disableCustomObjectDeserialization()
HistoricVariableInstanceQueryImpl.executionIdIn
(String... executionIds) HistoricVariableInstanceQueryImpl.includeDeleted()
HistoricVariableInstanceQueryImpl.matchVariableNamesIgnoreCase()
HistoricVariableInstanceQueryImpl.matchVariableValuesIgnoreCase()
HistoricVariableInstanceQueryImpl.orderByProcessInstanceId()
HistoricVariableInstanceQueryImpl.orderByTenantId()
HistoricVariableInstanceQueryImpl.orderByVariableName()
HistoricVariableInstanceQueryImpl.processDefinitionId
(String processDefinitionId) HistoricVariableInstanceQueryImpl.processDefinitionKey
(String processDefinitionKey) HistoricVariableInstanceQueryImpl.processInstanceIdIn
(String... processInstanceIds) Only select historic process variables with the given process instance ids.HistoricVariableInstanceQueryImpl.tenantIdIn
(String... tenantIds) HistoricVariableInstanceQueryImpl.variableId
(String id) HistoricVariableInstanceQueryImpl.variableName
(String variableName) HistoricVariableInstanceQueryImpl.variableNameIn
(String... names) HistoricVariableInstanceQueryImpl.variableNameLike
(String variableNameLike) HistoricVariableInstanceQueryImpl.variableTypeIn
(String... variableTypes) HistoricVariableInstanceQueryImpl.variableValueEquals
(String variableName, Object variableValue) HistoricVariableInstanceQueryImpl.withoutTenantId()
-
Uses of HistoricVariableInstanceQuery in org.camunda.bpm.engine.rest.dto.history
Modifier and TypeMethodDescriptionprotected HistoricVariableInstanceQuery
HistoricVariableInstanceQueryDto.createNewQuery
(ProcessEngine engine) Modifier and TypeMethodDescriptionprotected void
HistoricVariableInstanceQueryDto.applyFilters
(HistoricVariableInstanceQuery query) protected void
HistoricVariableInstanceQueryDto.applySortBy
(HistoricVariableInstanceQuery query, String sortBy, Map<String, Object> parameters, ProcessEngine engine) -
Uses of HistoricVariableInstanceQuery in org.camunda.bpm.engine.rest.sub.history.impl
Modifier and TypeMethodDescriptionprotected HistoricVariableInstanceQuery
HistoricVariableInstanceResourceImpl.baseQuery()
Modifier and TypeMethodDescriptionHistoricVariableInstanceResourceImpl.baseQueryForBinaryVariable()
HistoricVariableInstanceResourceImpl.baseQueryForVariable
(boolean deserializeObjectValue) -
Uses of HistoricVariableInstanceQuery in org.camunda.bpm.engine.test.assertions.bpmn
Modifier and TypeMethodDescriptionprotected HistoricVariableInstanceQuery
AbstractProcessAssert.historicVariableInstanceQuery()
protected HistoricVariableInstanceQuery
ProcessInstanceAssert.historicVariableInstanceQuery()