Package org.flowable.engine.history
Interface HistoricDetailQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<HistoricDetailQuery,
HistoricDetail>
- All Known Implementing Classes:
HistoricDetailQueryImpl
public interface HistoricDetailQuery
extends org.flowable.common.engine.api.query.Query<HistoricDetailQuery,HistoricDetail>
Programmatic querying for
HistoricDetail
s.- Author:
- Tom Baeyens
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
org.flowable.common.engine.api.query.Query.NullHandlingOnOrder
-
Method Summary
Modifier and TypeMethodDescriptionactivityInstanceId
(String activityInstanceId) Only select historic variable updates associated to the givenactivity instance
.Exclude all task-relatedHistoricDetail
s, so only items which have no task-id set will be selected.executionId
(String executionId) Only select historic variable updates with the given execution.Only selectHistoricFormProperty
s.Only select historic info with the given id.processInstanceId
(String processInstanceId) Only select historic variable updates with the given process instance.Only select historic variable updates associated to the givenhistoric task instance
.Only selectHistoricVariableUpdate
s.Methods inherited from interface org.flowable.common.engine.api.query.Query
asc, count, desc, list, listPage, orderBy, orderBy, singleResult
-
Method Details
-
id
Only select historic info with the given id. -
processInstanceId
Only select historic variable updates with the given process instance.ProcessInstance
ids andHistoricProcessInstance
ids match. -
executionId
Only select historic variable updates with the given execution. Note thatExecution
ids are not stored in the history as first class citizen, only process instances are. -
activityInstanceId
Only select historic variable updates associated to the givenactivity instance
. -
taskId
Only select historic variable updates associated to the givenhistoric task instance
. -
formProperties
HistoricDetailQuery formProperties()Only selectHistoricFormProperty
s. -
variableUpdates
HistoricDetailQuery variableUpdates()Only selectHistoricVariableUpdate
s. -
excludeTaskDetails
HistoricDetailQuery excludeTaskDetails()Exclude all task-relatedHistoricDetail
s, so only items which have no task-id set will be selected. When used together withtaskId(String)
, this call is ignored task details are NOT excluded. -
orderByProcessInstanceId
HistoricDetailQuery orderByProcessInstanceId() -
orderByVariableName
HistoricDetailQuery orderByVariableName() -
orderByFormPropertyId
HistoricDetailQuery orderByFormPropertyId() -
orderByVariableType
HistoricDetailQuery orderByVariableType() -
orderByVariableRevision
HistoricDetailQuery orderByVariableRevision() -
orderByTime
HistoricDetailQuery orderByTime()
-