org.camunda.bpm.engine.impl
Class HistoricVariableInstanceQueryImpl
java.lang.Object
org.camunda.bpm.engine.impl.db.AuthorizationCheck
org.camunda.bpm.engine.impl.db.ListQueryParameterObject
org.camunda.bpm.engine.impl.AbstractQuery<HistoricVariableInstanceQuery,HistoricVariableInstance>
org.camunda.bpm.engine.impl.HistoricVariableInstanceQueryImpl
- All Implemented Interfaces:
- Serializable, HistoricVariableInstanceQuery, Command<Object>, Query<HistoricVariableInstanceQuery,HistoricVariableInstance>
public class HistoricVariableInstanceQueryImpl
- extends AbstractQuery<HistoricVariableInstanceQuery,HistoricVariableInstance>
- implements HistoricVariableInstanceQuery
- Author:
- Christian Lipphardt (camunda)
- See Also:
- Serialized Form
| Methods inherited from class org.camunda.bpm.engine.impl.AbstractQuery |
addOrder, asc, assertParamNotNull, assertParamNotNull, checkQueryOk, count, desc, direction, execute, executeSingleResult, getOrderBy, list, listPage, orderBy, setCommandExecutor, singleResult |
| Methods inherited from class org.camunda.bpm.engine.impl.db.AuthorizationCheck |
getAuthDefaultPerm, getAuthGroupIds, getAuthPerms, getAuthResourceId, getAuthResourceIdQueryParam, getAuthResourceType, getAuthUserId, isAuthorizationCheckEnabled, setAuthDefaultPerm, setAuthGroupIds, setAuthorizationCheckEnabled, setAuthPerms, setAuthResourceId, setAuthResourceIdQueryParam, setAuthResourceType, setAuthUserId |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
processInstanceId
protected String processInstanceId
activityInstanceId
protected String activityInstanceId
variableName
protected String variableName
variableNameLike
protected String variableNameLike
excludeTaskRelated
protected boolean excludeTaskRelated
queryVariableValue
protected QueryVariableValue queryVariableValue
taskIds
protected String[] taskIds
executionIds
protected String[] executionIds
HistoricVariableInstanceQueryImpl
public HistoricVariableInstanceQueryImpl()
HistoricVariableInstanceQueryImpl
public HistoricVariableInstanceQueryImpl(CommandContext commandContext)
HistoricVariableInstanceQueryImpl
public HistoricVariableInstanceQueryImpl(CommandExecutor commandExecutor)
processInstanceId
public HistoricVariableInstanceQueryImpl processInstanceId(String processInstanceId)
- Description copied from interface:
HistoricVariableInstanceQuery
- Only select historic process variables with the given process instance.
- Specified by:
processInstanceId in interface HistoricVariableInstanceQuery
activityInstanceId
public HistoricVariableInstanceQuery activityInstanceId(String activityInstanceId)
taskIdIn
public HistoricVariableInstanceQuery taskIdIn(String... taskIds)
- Description copied from interface:
HistoricVariableInstanceQuery
- Only select historic variable instances which have one of the task ids.
- Specified by:
taskIdIn in interface HistoricVariableInstanceQuery
executionIdIn
public HistoricVariableInstanceQuery executionIdIn(String... executionIds)
- Description copied from interface:
HistoricVariableInstanceQuery
- Only select historic variable instances which have one of the executions ids.
- Specified by:
executionIdIn in interface HistoricVariableInstanceQuery
variableName
public HistoricVariableInstanceQuery variableName(String variableName)
- Description copied from interface:
HistoricVariableInstanceQuery
- Only select historic process variables with the given variable name.
- Specified by:
variableName in interface HistoricVariableInstanceQuery
variableValueEquals
public HistoricVariableInstanceQuery variableValueEquals(String variableName,
Object variableValue)
- Description copied from interface:
HistoricVariableInstanceQuery
- only select historic process variables with the given name and value
- Specified by:
variableValueEquals in interface HistoricVariableInstanceQuery
variableNameLike
public HistoricVariableInstanceQuery variableNameLike(String variableNameLike)
- Description copied from interface:
HistoricVariableInstanceQuery
- Only select historic process variables where the given variable name is like.
- Specified by:
variableNameLike in interface HistoricVariableInstanceQuery
excludeTaskDetails
public HistoricVariableInstanceQuery excludeTaskDetails()
ensureVariablesInitialized
protected void ensureVariablesInitialized()
executeCount
public long executeCount(CommandContext commandContext)
- Specified by:
executeCount in class AbstractQuery<HistoricVariableInstanceQuery,HistoricVariableInstance>
executeList
public List<HistoricVariableInstance> executeList(CommandContext commandContext,
Page page)
- Description copied from class:
AbstractQuery
- Executes the actual query to retrieve the list of results.
- Specified by:
executeList in class AbstractQuery<HistoricVariableInstanceQuery,HistoricVariableInstance>
page - used if the results must be paged. If null, no paging will be applied.
orderByProcessInstanceId
public HistoricVariableInstanceQuery orderByProcessInstanceId()
- Specified by:
orderByProcessInstanceId in interface HistoricVariableInstanceQuery
orderByVariableName
public HistoricVariableInstanceQuery orderByVariableName()
- Specified by:
orderByVariableName in interface HistoricVariableInstanceQuery
getProcessInstanceId
public String getProcessInstanceId()
getActivityInstanceId
public String getActivityInstanceId()
getTaskIds
public String[] getTaskIds()
getExecutionIds
public String[] getExecutionIds()
getExcludeTaskRelated
public boolean getExcludeTaskRelated()
getVariableName
public String getVariableName()
getVariableNameLike
public String getVariableNameLike()
getQueryVariableValue
public QueryVariableValue getQueryVariableValue()
Copyright © 2014 camunda services GmbH. All Rights Reserved.