org.activiti.engine.impl
类 HistoricVariableInstanceQueryImpl

java.lang.Object
  继承者 org.activiti.engine.impl.db.ListQueryParameterObject
      继承者 org.activiti.engine.impl.AbstractQuery<HistoricVariableInstanceQuery,HistoricVariableInstance>
          继承者 org.activiti.engine.impl.HistoricVariableInstanceQueryImpl
所有已实现的接口:
Serializable, HistoricVariableInstanceQuery, Command<Object>, Query<HistoricVariableInstanceQuery,HistoricVariableInstance>

public class HistoricVariableInstanceQueryImpl
extends AbstractQuery<HistoricVariableInstanceQuery,HistoricVariableInstance>
implements HistoricVariableInstanceQuery

作者:
Christian Lipphardt (camunda)
另请参见:
序列化表格

字段摘要
protected  String activityInstanceId
           
protected  boolean excludeTaskRelated
           
protected  boolean excludeVariableInitialization
           
protected  String id
           
protected  String processInstanceId
           
protected  QueryVariableValue queryVariableValue
           
protected  String taskId
           
protected  String variableName
           
protected  String variableNameLike
           
 
从类 org.activiti.engine.impl.AbstractQuery 继承的字段
commandContext, commandExecutor, orderBy, orderProperty, resultType, SORTORDER_ASC, SORTORDER_DESC
 
从类 org.activiti.engine.impl.db.ListQueryParameterObject 继承的字段
databaseType, firstResult, maxResults, parameter
 
构造方法摘要
HistoricVariableInstanceQueryImpl()
           
HistoricVariableInstanceQueryImpl(CommandContext commandContext)
           
HistoricVariableInstanceQueryImpl(CommandExecutor commandExecutor)
           
 
方法摘要
 HistoricVariableInstanceQuery activityInstanceId(String activityInstanceId)
           
protected  void ensureVariablesInitialized()
           
 HistoricVariableInstanceQuery excludeTaskVariables()
          Only select historic process variables which were not set task-local.
 HistoricVariableInstanceQuery excludeVariableInitialization()
          Don't initialize variable values.
 long executeCount(CommandContext commandContext)
           
 List<HistoricVariableInstance> executeList(CommandContext commandContext, Page page)
          Executes the actual query to retrieve the list of results.
 String getActivityInstanceId()
           
 boolean getExcludeTaskRelated()
           
 String getProcessInstanceId()
           
 QueryVariableValue getQueryVariableValue()
           
 String getTaskId()
           
 String getVariableName()
           
 String getVariableNameLike()
           
 HistoricVariableInstanceQuery id(String id)
          Only select a historic variable with the given id.
 HistoricVariableInstanceQuery orderByProcessInstanceId()
           
 HistoricVariableInstanceQuery orderByVariableName()
           
 HistoricVariableInstanceQuery processInstanceId(String processInstanceId)
          Only select historic process variables with the given process instance.
 HistoricVariableInstanceQuery taskId(String taskId)
          Only select historic process variables with the given task.
 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
 
从类 org.activiti.engine.impl.AbstractQuery 继承的方法
addOrder, asc, checkQueryOk, count, desc, direction, execute, executeSingleResult, getOrderBy, list, listPage, orderBy, setCommandExecutor, singleResult
 
从类 org.activiti.engine.impl.db.ListQueryParameterObject 继承的方法
getDatabaseType, getFirstResult, getFirstRow, getLastRow, getMaxResults, getParameter, setDatabaseType, setFirstResult, setMaxResults, setParameter
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
从接口 org.activiti.engine.query.Query 继承的方法
asc, count, desc, list, listPage, singleResult
 

字段详细信息

id

protected String id

taskId

protected String taskId

processInstanceId

protected String processInstanceId

activityInstanceId

protected String activityInstanceId

variableName

protected String variableName

variableNameLike

protected String variableNameLike

excludeTaskRelated

protected boolean excludeTaskRelated

excludeVariableInitialization

protected boolean excludeVariableInitialization

queryVariableValue

protected QueryVariableValue queryVariableValue
构造方法详细信息

HistoricVariableInstanceQueryImpl

public HistoricVariableInstanceQueryImpl()

HistoricVariableInstanceQueryImpl

public HistoricVariableInstanceQueryImpl(CommandContext commandContext)

HistoricVariableInstanceQueryImpl

public HistoricVariableInstanceQueryImpl(CommandExecutor commandExecutor)
方法详细信息

id

public HistoricVariableInstanceQuery id(String id)
从接口 HistoricVariableInstanceQuery 复制的描述
Only select a historic variable with the given id.

指定者:
接口 HistoricVariableInstanceQuery 中的 id

processInstanceId

public HistoricVariableInstanceQuery processInstanceId(String processInstanceId)
从接口 HistoricVariableInstanceQuery 复制的描述
Only select historic process variables with the given process instance.

指定者:
接口 HistoricVariableInstanceQuery 中的 processInstanceId

activityInstanceId

public HistoricVariableInstanceQuery activityInstanceId(String activityInstanceId)

taskId

public HistoricVariableInstanceQuery taskId(String taskId)
从接口 HistoricVariableInstanceQuery 复制的描述
Only select historic process variables with the given task.

指定者:
接口 HistoricVariableInstanceQuery 中的 taskId

excludeTaskVariables

public HistoricVariableInstanceQuery excludeTaskVariables()
从接口 HistoricVariableInstanceQuery 复制的描述
Only select historic process variables which were not set task-local.

指定者:
接口 HistoricVariableInstanceQuery 中的 excludeTaskVariables

excludeVariableInitialization

public HistoricVariableInstanceQuery excludeVariableInitialization()
从接口 HistoricVariableInstanceQuery 复制的描述
Don't initialize variable values. This is foremost a way to deal with variable delete queries

指定者:
接口 HistoricVariableInstanceQuery 中的 excludeVariableInitialization

variableName

public HistoricVariableInstanceQuery variableName(String variableName)
从接口 HistoricVariableInstanceQuery 复制的描述
Only select historic process variables with the given variable name.

指定者:
接口 HistoricVariableInstanceQuery 中的 variableName

variableValueEquals

public HistoricVariableInstanceQuery variableValueEquals(String variableName,
                                                         Object variableValue)
从接口 HistoricVariableInstanceQuery 复制的描述
only select historic process variables with the given name and value

指定者:
接口 HistoricVariableInstanceQuery 中的 variableValueEquals

variableNameLike

public HistoricVariableInstanceQuery variableNameLike(String variableNameLike)
从接口 HistoricVariableInstanceQuery 复制的描述
Only select historic process variables where the given variable name is like.

指定者:
接口 HistoricVariableInstanceQuery 中的 variableNameLike

ensureVariablesInitialized

protected void ensureVariablesInitialized()

executeCount

public long executeCount(CommandContext commandContext)
指定者:
AbstractQuery<HistoricVariableInstanceQuery,HistoricVariableInstance> 中的 executeCount

executeList

public List<HistoricVariableInstance> executeList(CommandContext commandContext,
                                                  Page page)
从类 AbstractQuery 复制的描述
Executes the actual query to retrieve the list of results.

指定者:
AbstractQuery<HistoricVariableInstanceQuery,HistoricVariableInstance> 中的 executeList
page - used if the results must be paged. If null, no paging will be applied.

orderByProcessInstanceId

public HistoricVariableInstanceQuery orderByProcessInstanceId()
指定者:
接口 HistoricVariableInstanceQuery 中的 orderByProcessInstanceId

orderByVariableName

public HistoricVariableInstanceQuery orderByVariableName()
指定者:
接口 HistoricVariableInstanceQuery 中的 orderByVariableName

getProcessInstanceId

public String getProcessInstanceId()

getTaskId

public String getTaskId()

getActivityInstanceId

public String getActivityInstanceId()

getExcludeTaskRelated

public boolean getExcludeTaskRelated()

getVariableName

public String getVariableName()

getVariableNameLike

public String getVariableNameLike()

getQueryVariableValue

public QueryVariableValue getQueryVariableValue()


Copyright © 2013 Alfresco. All rights reserved.