Package org.flowable.engine.history
Interface ProcessInstanceHistoryLogQuery
- All Known Implementing Classes:
ProcessInstanceHistoryLogQueryImpl
public interface ProcessInstanceHistoryLogQuery
Allows to fetch the
ProcessInstanceHistoryLog
for a process instance.
Note that every includeXXX() method below will lead to an additional query.
This class is actually a convenience on top of the other specific queries such as HistoricTaskInstanceQuery
, HistoricActivityInstanceQuery
, ... It will execute separate queries for
each included type, order the data according to the date (ascending) and wrap the results in the ProcessInstanceHistoryLog
.- Author:
- Joram Barrez
-
Method Summary
Modifier and TypeMethodDescriptionTheProcessInstanceHistoryLog
will contain theHistoricActivityInstance
instances.TheProcessInstanceHistoryLog
will contain theComment
instances.TheProcessInstanceHistoryLog
will contain theHistoricFormProperty
instances.TheProcessInstanceHistoryLog
will contain theHistoricTaskInstance
instances.TheProcessInstanceHistoryLog
will contain theHistoricVariableInstance
instances.TheProcessInstanceHistoryLog
will contain theHistoricVariableUpdate
instances.Executes the query.
-
Method Details
-
includeTasks
ProcessInstanceHistoryLogQuery includeTasks()TheProcessInstanceHistoryLog
will contain theHistoricTaskInstance
instances. -
includeActivities
ProcessInstanceHistoryLogQuery includeActivities()TheProcessInstanceHistoryLog
will contain theHistoricActivityInstance
instances. -
includeVariables
ProcessInstanceHistoryLogQuery includeVariables()TheProcessInstanceHistoryLog
will contain theHistoricVariableInstance
instances. -
includeComments
ProcessInstanceHistoryLogQuery includeComments()TheProcessInstanceHistoryLog
will contain theComment
instances. -
includeVariableUpdates
ProcessInstanceHistoryLogQuery includeVariableUpdates()TheProcessInstanceHistoryLog
will contain theHistoricVariableUpdate
instances. -
includeFormProperties
ProcessInstanceHistoryLogQuery includeFormProperties()TheProcessInstanceHistoryLog
will contain theHistoricFormProperty
instances. -
singleResult
ProcessInstanceHistoryLog singleResult()Executes the query.
-