org.camunda.bpm.engine.history
Interface HistoricVariableInstanceQuery

All Superinterfaces:
Query<HistoricVariableInstanceQuery,HistoricVariableInstance>
All Known Implementing Classes:
HistoricVariableInstanceQueryImpl

public interface HistoricVariableInstanceQuery
extends Query<HistoricVariableInstanceQuery,HistoricVariableInstance>

Programmatic querying for HistoricVariableInstances.

Author:
Christian Lipphardt (camunda)

Method Summary
 HistoricVariableInstanceQuery executionIdIn(String... executionIds)
          Only select historic variable instances which have one of the executions ids.
 HistoricVariableInstanceQuery orderByProcessInstanceId()
           
 HistoricVariableInstanceQuery orderByVariableName()
           
 HistoricVariableInstanceQuery processInstanceId(String processInstanceId)
          Only select historic process variables with the given process instance.
 HistoricVariableInstanceQuery taskIdIn(String... taskIds)
          Only select historic variable instances which have one of the task ids.
 HistoricVariableInstanceQuery variableName(String variableName)
          Only select historic process variables with the given variable name.
 HistoricVariableInstanceQuery variableNameLike(String variableNameLike)
          Only select historic process variables where the given variable name is like.
 HistoricVariableInstanceQuery variableValueEquals(String variableName, Object variableValue)
          only select historic process variables with the given name and value
 
Methods inherited from interface org.camunda.bpm.engine.query.Query
asc, count, desc, list, listPage, singleResult
 

Method Detail

processInstanceId

HistoricVariableInstanceQuery processInstanceId(String processInstanceId)
Only select historic process variables with the given process instance.


variableName

HistoricVariableInstanceQuery variableName(String variableName)
Only select historic process variables with the given variable name.


variableNameLike

HistoricVariableInstanceQuery variableNameLike(String variableNameLike)
Only select historic process variables where the given variable name is like.


variableValueEquals

HistoricVariableInstanceQuery variableValueEquals(String variableName,
                                                  Object variableValue)
only select historic process variables with the given name and value


orderByProcessInstanceId

HistoricVariableInstanceQuery orderByProcessInstanceId()

orderByVariableName

HistoricVariableInstanceQuery orderByVariableName()

taskIdIn

HistoricVariableInstanceQuery taskIdIn(String... taskIds)
Only select historic variable instances which have one of the task ids.


executionIdIn

HistoricVariableInstanceQuery executionIdIn(String... executionIds)
Only select historic variable instances which have one of the executions ids.



Copyright © 2014 camunda services GmbH. All Rights Reserved.