Package org.camunda.bpm.engine.history
Interface HistoricProcessInstanceQuery
-
- All Superinterfaces:
Query<HistoricProcessInstanceQuery,HistoricProcessInstance>
- All Known Implementing Classes:
HistoricProcessInstanceQueryImpl
public interface HistoricProcessInstanceQuery extends Query<HistoricProcessInstanceQuery,HistoricProcessInstance>
Allows programmatic querying ofHistoricProcessInstance
s.- Author:
- Tom Baeyens, Joram Barrez, Falko Menge
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description HistoricProcessInstanceQuery
active()
Only select historic process instances that are active.HistoricProcessInstanceQuery
activeActivityIdIn(String... ids)
Only select historic process instances that have active activities with given ids.HistoricProcessInstanceQuery
caseInstanceId(String caseInstanceId)
Only select historic process instances which are associated with the given case instance id.HistoricProcessInstanceQuery
completed()
Only select historic process instances that are completed.HistoricProcessInstanceQuery
endOr()
endOr() terminates an OR query on which an arbitrary amount of filter criteria were applied.HistoricProcessInstanceQuery
executedActivityAfter(Date date)
Only select historic process instances that executed an activity after the given date.HistoricProcessInstanceQuery
executedActivityBefore(Date date)
Only select historic process instances that executed an activity before the given date.HistoricProcessInstanceQuery
executedActivityIdIn(String... ids)
Only select historic process instances that executed activities with given ids.HistoricProcessInstanceQuery
executedJobAfter(Date date)
Only select historic process instances that executed an job after the given date.HistoricProcessInstanceQuery
executedJobBefore(Date date)
Only select historic process instances that executed an job before the given date.HistoricProcessInstanceQuery
externallyTerminated()
Only select historic process instances that are externallyTerminated.HistoricProcessInstanceQuery
finishDateBy(Date date)
Deprecated.usestartedAfter(Date)
andstartedBefore(Date)
insteadHistoricProcessInstanceQuery
finishDateOn(Date date)
Deprecated.usestartedAfter(Date)
andstartedBefore(Date)
insteadHistoricProcessInstanceQuery
finished()
Only select historic process instances that are completely finished.HistoricProcessInstanceQuery
finishedAfter(Date date)
Only select historic process instances that were started after the given date.HistoricProcessInstanceQuery
finishedBefore(Date date)
Only select historic process instances that were started before the given date.HistoricProcessInstanceQuery
incidentMessage(String incidentMessage)
Only select historic process instances with the given incident message.HistoricProcessInstanceQuery
incidentMessageLike(String incidentMessageLike)
Only select historic process instances which had an incident message like the given value.HistoricProcessInstanceQuery
incidentStatus(String status)
Only select historic process instances with incident status either 'open' or 'resolved'.HistoricProcessInstanceQuery
incidentType(String incidentType)
Only selects process instances with the given incident type.HistoricProcessInstanceQuery
internallyTerminated()
Only select historic process instances that are internallyTerminated.HistoricProcessInstanceQuery
matchVariableNamesIgnoreCase()
The query will match the names of variables in a case-insensitive way.HistoricProcessInstanceQuery
matchVariableValuesIgnoreCase()
The query will match the values of variables in a case-insensitive way.HistoricProcessInstanceQuery
or()
After calling or(), a chain of several filter criteria could follow.HistoricProcessInstanceQuery
orderByProcessDefinitionId()
Order by the process definition id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricProcessInstanceQuery
orderByProcessDefinitionKey()
Order by the process definition key (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricProcessInstanceQuery
orderByProcessDefinitionName()
Order by the process definition name (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricProcessInstanceQuery
orderByProcessDefinitionVersion()
Order by the process definition version (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricProcessInstanceQuery
orderByProcessInstanceBusinessKey()
Order by the business key (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricProcessInstanceQuery
orderByProcessInstanceDuration()
Order by the duration of the process instance (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricProcessInstanceQuery
orderByProcessInstanceEndTime()
Order by the end time (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricProcessInstanceQuery
orderByProcessInstanceId()
Order by the process instance id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricProcessInstanceQuery
orderByProcessInstanceStartTime()
Order by the start time (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricProcessInstanceQuery
orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricProcessInstanceQuery
processDefinitionId(String processDefinitionId)
Only select historic process instances for the given process definitionHistoricProcessInstanceQuery
processDefinitionKey(String processDefinitionKey)
Only select historic process instances that are defined by a process definition with the given key.HistoricProcessInstanceQuery
processDefinitionKeyIn(String... processDefinitionKeys)
Only select historic process instances that are defined by any given process definition key.HistoricProcessInstanceQuery
processDefinitionKeyNotIn(List<String> processDefinitionKeys)
Only select historic process instances that don't have a process-definition of which the key is present in the given listHistoricProcessInstanceQuery
processDefinitionName(String processDefinitionName)
Only select historic process instances that are defined by a process definition with the given name.HistoricProcessInstanceQuery
processDefinitionNameLike(String nameLike)
Only select historic process instances that are defined by process definition which name is like the given value.HistoricProcessInstanceQuery
processInstanceBusinessKey(String processInstanceBusinessKey)
Only select historic process instances with the given business keyHistoricProcessInstanceQuery
processInstanceBusinessKeyIn(String... processInstanceBusinessKeyIn)
Only select historic process instances whose business key is in the given set.HistoricProcessInstanceQuery
processInstanceBusinessKeyLike(String processInstanceBusinessKeyLike)
Only select historic process instances which had a business key like the given value.HistoricProcessInstanceQuery
processInstanceId(String processInstanceId)
Only select historic process instances with the given process instance.HistoricProcessInstanceQuery
processInstanceIds(Set<String> processInstanceIds)
Only select historic process instances whose id is in the given set of ids.HistoricProcessInstanceQuery
rootProcessInstances()
Only select historic process instances that are top level process instances.HistoricProcessInstanceQuery
startDateBy(Date date)
Deprecated.usestartedAfter(Date)
andstartedBefore(Date)
insteadHistoricProcessInstanceQuery
startDateOn(Date date)
Deprecated.usestartedAfter(Date)
andstartedBefore(Date)
insteadHistoricProcessInstanceQuery
startedAfter(Date date)
Only select historic process instances that were started after the given date.HistoricProcessInstanceQuery
startedBefore(Date date)
Only select historic process instances that were started before the given date.HistoricProcessInstanceQuery
startedBy(String userId)
Only select historic process instance that are started by the given user.HistoricProcessInstanceQuery
subCaseInstanceId(String subCaseInstanceId)
Only select historic process instances having a sub case instance with the given case instance id.HistoricProcessInstanceQuery
subProcessInstanceId(String subProcessInstanceId)
Only select historic process instances having a sub process instance with the given process instance id.HistoricProcessInstanceQuery
superCaseInstanceId(String superCaseInstanceId)
Only select historic process instances started by the given case instance.HistoricProcessInstanceQuery
superProcessInstanceId(String superProcessInstanceId)
Only select historic process instances started by the given process instance.HistoricProcessInstanceQuery
suspended()
Only select historic process instances that are suspended.HistoricProcessInstanceQuery
tenantIdIn(String... tenantIds)
Only select historic process instances with one of the given tenant ids.HistoricProcessInstanceQuery
unfinished()
Only select historic process instance that are not yet finished.HistoricProcessInstanceQuery
variableValueEquals(String name, Object value)
Only select process instances which had a global variable with the given value when they ended.HistoricProcessInstanceQuery
variableValueGreaterThan(String name, Object value)
Only select process instances which had a global variable value greater than the passed value when they ended.HistoricProcessInstanceQuery
variableValueGreaterThanOrEqual(String name, Object value)
Only select process instances which had a global variable value greater than or equal to the passed value when they ended.HistoricProcessInstanceQuery
variableValueLessThan(String name, Object value)
Only select process instances which had a global variable value less than the passed value when the ended.HistoricProcessInstanceQuery
variableValueLessThanOrEqual(String name, Object value)
Only select process instances which has a global variable value less than or equal to the passed value when they ended.HistoricProcessInstanceQuery
variableValueLike(String name, String value)
Only select process instances which had global variable value like the given value when they ended.HistoricProcessInstanceQuery
variableValueNotEquals(String name, Object value)
Only select process instances which had a global variable with the given name, but with a different value than the passed value when they ended.HistoricProcessInstanceQuery
withIncidents()
Only select historic process instances with incidentsHistoricProcessInstanceQuery
withoutTenantId()
Only selects historic process instances which have no tenant id.HistoricProcessInstanceQuery
withRootIncidents()
Only select historic process instances with root incidents-
Methods inherited from interface org.camunda.bpm.engine.query.Query
asc, count, desc, list, listPage, singleResult, unlimitedList
-
-
-
-
Method Detail
-
processInstanceId
HistoricProcessInstanceQuery processInstanceId(String processInstanceId)
Only select historic process instances with the given process instance. {@link ProcessInstance) ids and {@link HistoricProcessInstance} ids match.
-
processInstanceIds
HistoricProcessInstanceQuery processInstanceIds(Set<String> processInstanceIds)
Only select historic process instances whose id is in the given set of ids. {@link ProcessInstance) ids and {@link HistoricProcessInstance} ids match.
-
processDefinitionId
HistoricProcessInstanceQuery processDefinitionId(String processDefinitionId)
Only select historic process instances for the given process definition
-
processDefinitionKey
HistoricProcessInstanceQuery processDefinitionKey(String processDefinitionKey)
Only select historic process instances that are defined by a process definition with the given key.
-
processDefinitionKeyIn
HistoricProcessInstanceQuery processDefinitionKeyIn(String... processDefinitionKeys)
Only select historic process instances that are defined by any given process definition key.
-
processDefinitionKeyNotIn
HistoricProcessInstanceQuery processDefinitionKeyNotIn(List<String> processDefinitionKeys)
Only select historic process instances that don't have a process-definition of which the key is present in the given list
-
processDefinitionName
HistoricProcessInstanceQuery processDefinitionName(String processDefinitionName)
Only select historic process instances that are defined by a process definition with the given name.
-
processDefinitionNameLike
HistoricProcessInstanceQuery processDefinitionNameLike(String nameLike)
Only select historic process instances that are defined by process definition which name is like the given value.- Parameters:
nameLike
- The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).
-
processInstanceBusinessKey
HistoricProcessInstanceQuery processInstanceBusinessKey(String processInstanceBusinessKey)
Only select historic process instances with the given business key
-
processInstanceBusinessKeyIn
HistoricProcessInstanceQuery processInstanceBusinessKeyIn(String... processInstanceBusinessKeyIn)
Only select historic process instances whose business key is in the given set.
-
processInstanceBusinessKeyLike
HistoricProcessInstanceQuery processInstanceBusinessKeyLike(String processInstanceBusinessKeyLike)
Only select historic process instances which had a business key like the given value.- Parameters:
processInstanceBusinessKeyLike
- The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).
-
finished
HistoricProcessInstanceQuery finished()
Only select historic process instances that are completely finished.
-
unfinished
HistoricProcessInstanceQuery unfinished()
Only select historic process instance that are not yet finished.
-
withIncidents
HistoricProcessInstanceQuery withIncidents()
Only select historic process instances with incidents- Returns:
- HistoricProcessInstanceQuery
-
withRootIncidents
HistoricProcessInstanceQuery withRootIncidents()
Only select historic process instances with root incidents- Returns:
- HistoricProcessInstanceQuery
-
incidentStatus
HistoricProcessInstanceQuery incidentStatus(String status)
Only select historic process instances with incident status either 'open' or 'resolved'. To get all process instances with incidents, usewithIncidents()
.- Parameters:
status
- indicates the incident status, which is either 'open' or 'resolved'- Returns:
HistoricProcessInstanceQuery
-
incidentType
HistoricProcessInstanceQuery incidentType(String incidentType)
Only selects process instances with the given incident type.
-
incidentMessage
HistoricProcessInstanceQuery incidentMessage(String incidentMessage)
Only select historic process instances with the given incident message.- Parameters:
incidentMessage
- Incidents Message for which the historic process instances should be selected- Returns:
- HistoricProcessInstanceQuery
-
incidentMessageLike
HistoricProcessInstanceQuery incidentMessageLike(String incidentMessageLike)
Only select historic process instances which had an incident message like the given value.- Parameters:
incidentMessageLike
- The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).- Returns:
- HistoricProcessInstanceQuery
-
caseInstanceId
HistoricProcessInstanceQuery caseInstanceId(String caseInstanceId)
Only select historic process instances which are associated with the given case instance id.
-
matchVariableNamesIgnoreCase
HistoricProcessInstanceQuery matchVariableNamesIgnoreCase()
The query will match the names of variables in a case-insensitive way.
-
matchVariableValuesIgnoreCase
HistoricProcessInstanceQuery matchVariableValuesIgnoreCase()
The query will match the values of variables in a case-insensitive way.
-
variableValueEquals
HistoricProcessInstanceQuery variableValueEquals(String name, Object value)
Only select process instances which had a global variable with the given value when they ended. Only select process instances which have a variable value greater than the passed value. The type only applies to already ended process instances, otherwise use aProcessInstanceQuery
instead! of variable is determined based on the value, using types configured inProcessEngineConfiguration#getVariableSerializers()
. Byte-arrays andSerializable
objects (which are not primitive type wrappers) are not supported.- Parameters:
name
- of the variable, cannot be null.
-
variableValueNotEquals
HistoricProcessInstanceQuery variableValueNotEquals(String name, Object value)
Only select process instances which had a global variable with the given name, but with a different value than the passed value when they ended. Only select process instances which have a variable value greater than the passed value. Byte-arrays andSerializable
objects (which are not primitive type wrappers) are not supported.- Parameters:
name
- of the variable, cannot be null.
-
variableValueGreaterThan
HistoricProcessInstanceQuery variableValueGreaterThan(String name, Object value)
Only select process instances which had a global variable value greater than the passed value when they ended. Booleans, Byte-arrays andSerializable
objects (which are not primitive type wrappers) are not supported. Only select process instances which have a variable value greater than the passed value.- Parameters:
name
- cannot be null.value
- cannot be null.
-
variableValueGreaterThanOrEqual
HistoricProcessInstanceQuery variableValueGreaterThanOrEqual(String name, Object value)
Only select process instances which had a global variable value greater than or equal to the passed value when they ended. Booleans, Byte-arrays andSerializable
objects (which are not primitive type wrappers) are not supported. Only applies to already ended process instances, otherwise use aProcessInstanceQuery
instead!- Parameters:
name
- cannot be null.value
- cannot be null.
-
variableValueLessThan
HistoricProcessInstanceQuery variableValueLessThan(String name, Object value)
Only select process instances which had a global variable value less than the passed value when the ended. Only applies to already ended process instances, otherwise use aProcessInstanceQuery
instead! Booleans, Byte-arrays andSerializable
objects (which are not primitive type wrappers) are not supported.- Parameters:
name
- cannot be null.value
- cannot be null.
-
variableValueLessThanOrEqual
HistoricProcessInstanceQuery variableValueLessThanOrEqual(String name, Object value)
Only select process instances which has a global variable value less than or equal to the passed value when they ended. Only applies to already ended process instances, otherwise use aProcessInstanceQuery
instead! Booleans, Byte-arrays andSerializable
objects (which are not primitive type wrappers) are not supported.- Parameters:
name
- cannot be null.value
- cannot be null.
-
variableValueLike
HistoricProcessInstanceQuery variableValueLike(String name, String value)
Only select process instances which had global variable value like the given value when they ended. Only applies to already ended process instances, otherwise use aProcessInstanceQuery
instead! This can be used on string variables only.- Parameters:
name
- cannot be null.value
- cannot be null. The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).
-
startedBefore
HistoricProcessInstanceQuery startedBefore(Date date)
Only select historic process instances that were started before the given date.
-
startedAfter
HistoricProcessInstanceQuery startedAfter(Date date)
Only select historic process instances that were started after the given date.
-
finishedBefore
HistoricProcessInstanceQuery finishedBefore(Date date)
Only select historic process instances that were started before the given date.
-
finishedAfter
HistoricProcessInstanceQuery finishedAfter(Date date)
Only select historic process instances that were started after the given date.
-
startedBy
HistoricProcessInstanceQuery startedBy(String userId)
Only select historic process instance that are started by the given user.
-
orderByProcessInstanceId
HistoricProcessInstanceQuery orderByProcessInstanceId()
Order by the process instance id (needs to be followed byQuery.asc()
orQuery.desc()
).
-
orderByProcessDefinitionId
HistoricProcessInstanceQuery orderByProcessDefinitionId()
Order by the process definition id (needs to be followed byQuery.asc()
orQuery.desc()
).
-
orderByProcessDefinitionKey
HistoricProcessInstanceQuery orderByProcessDefinitionKey()
Order by the process definition key (needs to be followed byQuery.asc()
orQuery.desc()
).
-
orderByProcessDefinitionName
HistoricProcessInstanceQuery orderByProcessDefinitionName()
Order by the process definition name (needs to be followed byQuery.asc()
orQuery.desc()
).
-
orderByProcessDefinitionVersion
HistoricProcessInstanceQuery orderByProcessDefinitionVersion()
Order by the process definition version (needs to be followed byQuery.asc()
orQuery.desc()
).
-
orderByProcessInstanceBusinessKey
HistoricProcessInstanceQuery orderByProcessInstanceBusinessKey()
Order by the business key (needs to be followed byQuery.asc()
orQuery.desc()
).
-
orderByProcessInstanceStartTime
HistoricProcessInstanceQuery orderByProcessInstanceStartTime()
Order by the start time (needs to be followed byQuery.asc()
orQuery.desc()
).
-
orderByProcessInstanceEndTime
HistoricProcessInstanceQuery orderByProcessInstanceEndTime()
Order by the end time (needs to be followed byQuery.asc()
orQuery.desc()
).
-
orderByProcessInstanceDuration
HistoricProcessInstanceQuery orderByProcessInstanceDuration()
Order by the duration of the process instance (needs to be followed byQuery.asc()
orQuery.desc()
).
-
rootProcessInstances
HistoricProcessInstanceQuery rootProcessInstances()
Only select historic process instances that are top level process instances.
-
superProcessInstanceId
HistoricProcessInstanceQuery superProcessInstanceId(String superProcessInstanceId)
Only select historic process instances started by the given process instance. {@link ProcessInstance) ids and {@link HistoricProcessInstance} ids match.
-
subProcessInstanceId
HistoricProcessInstanceQuery subProcessInstanceId(String subProcessInstanceId)
Only select historic process instances having a sub process instance with the given process instance id. Note that there will always be maximum only one such process instance that can be the result of this query.
-
superCaseInstanceId
HistoricProcessInstanceQuery superCaseInstanceId(String superCaseInstanceId)
Only select historic process instances started by the given case instance.
-
subCaseInstanceId
HistoricProcessInstanceQuery subCaseInstanceId(String subCaseInstanceId)
Only select historic process instances having a sub case instance with the given case instance id. Note that there will always be maximum only one such process instance that can be the result of this query.
-
tenantIdIn
HistoricProcessInstanceQuery tenantIdIn(String... tenantIds)
Only select historic process instances with one of the given tenant ids.
-
withoutTenantId
HistoricProcessInstanceQuery withoutTenantId()
Only selects historic process instances which have no tenant id.
-
orderByTenantId
HistoricProcessInstanceQuery orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
). Note that the ordering of historic process instances without tenant id is database-specific.
-
startDateBy
@Deprecated HistoricProcessInstanceQuery startDateBy(Date date)
Deprecated.usestartedAfter(Date)
andstartedBefore(Date)
insteadOnly select historic process instances that were started as of the provided date. (Date will be adjusted to reflect midnight)
-
startDateOn
@Deprecated HistoricProcessInstanceQuery startDateOn(Date date)
Deprecated.usestartedAfter(Date)
andstartedBefore(Date)
insteadOnly select historic process instances that were started on the provided date.
-
finishDateBy
@Deprecated HistoricProcessInstanceQuery finishDateBy(Date date)
Deprecated.usestartedAfter(Date)
andstartedBefore(Date)
insteadOnly select historic process instances that were finished as of the provided date. (Date will be adjusted to reflect one second before midnight)
-
finishDateOn
@Deprecated HistoricProcessInstanceQuery finishDateOn(Date date)
Deprecated.usestartedAfter(Date)
andstartedBefore(Date)
insteadOnly select historic process instances that were finished on provided date.
-
executedActivityAfter
HistoricProcessInstanceQuery executedActivityAfter(Date date)
Only select historic process instances that executed an activity after the given date.
-
executedActivityBefore
HistoricProcessInstanceQuery executedActivityBefore(Date date)
Only select historic process instances that executed an activity before the given date.
-
executedActivityIdIn
HistoricProcessInstanceQuery executedActivityIdIn(String... ids)
Only select historic process instances that executed activities with given ids.
-
activeActivityIdIn
HistoricProcessInstanceQuery activeActivityIdIn(String... ids)
Only select historic process instances that have active activities with given ids.
-
executedJobAfter
HistoricProcessInstanceQuery executedJobAfter(Date date)
Only select historic process instances that executed an job after the given date.
-
executedJobBefore
HistoricProcessInstanceQuery executedJobBefore(Date date)
Only select historic process instances that executed an job before the given date.
-
active
HistoricProcessInstanceQuery active()
Only select historic process instances that are active.
-
suspended
HistoricProcessInstanceQuery suspended()
Only select historic process instances that are suspended.
-
completed
HistoricProcessInstanceQuery completed()
Only select historic process instances that are completed.
-
externallyTerminated
HistoricProcessInstanceQuery externallyTerminated()
Only select historic process instances that are externallyTerminated.
-
internallyTerminated
HistoricProcessInstanceQuery internallyTerminated()
Only select historic process instances that are internallyTerminated.
-
or
HistoricProcessInstanceQuery or()
After calling or(), a chain of several filter criteria could follow. Each filter criterion that follows or() will be linked together with an OR expression until the OR query is terminated. To terminate the OR query right after the last filter criterion was applied,
endOr()
must be invoked.- Returns:
- an object of the type
HistoricProcessInstanceQuery
on which an arbitrary amount of filter criteria could be applied. The several filter criteria will be linked together by an OR expression. - Throws:
ProcessEngineException
- when or() has been invoked directly after or() or after or() and trailing filter criteria. To prevent throwing this exception,endOr()
must be invoked after a chain of filter criteria to mark the end of the OR query.
-
endOr
HistoricProcessInstanceQuery endOr()
endOr() terminates an OR query on which an arbitrary amount of filter criteria were applied. To terminate the OR query which has been started by invoking
or()
, endOr() must be invoked. Filter criteria which are applied after calling endOr() are linked together by an AND expression.- Returns:
- an object of the type
HistoricProcessInstanceQuery
on which an arbitrary amount of filter criteria could be applied. The filter criteria will be linked together by an AND expression. - Throws:
ProcessEngineException
- when endOr() has been invoked beforeor()
was invoked. To prevent throwing this exception,or()
must be invoked first.
-
-