Package org.flowable.engine.history
Interface HistoricDetailQuery
- All Superinterfaces:
Query<HistoricDetailQuery,HistoricDetail>
- All Known Implementing Classes:
HistoricDetailQueryImpl
Programmatic querying for
HistoricDetails.- Author:
- Tom Baeyens
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder -
Method Summary
Modifier and TypeMethodDescriptionactivityInstanceId(String activityInstanceId) Only select historic variable updates associated to the givenactivity instance.Exclude all task-relatedHistoricDetails, 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 selectHistoricFormPropertys.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 selectHistoricVariableUpdates.
-
Method Details
-
id
Only select historic info with the given id. -
processInstanceId
Only select historic variable updates with the given process instance.ProcessInstanceids andHistoricProcessInstanceids match. -
executionId
Only select historic variable updates with the given execution. Note thatExecutionids 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 selectHistoricFormPropertys. -
variableUpdates
HistoricDetailQuery variableUpdates()Only selectHistoricVariableUpdates. -
excludeTaskDetails
HistoricDetailQuery excludeTaskDetails()Exclude all task-relatedHistoricDetails, 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()
-