Uses of Interface
org.camunda.bpm.engine.history.HistoricIncidentQuery
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine
can be obtained.Through the services obtained from such a
ProcessEngine
, BPM and workflow operation
can be executed:RepositoryService
:
Manages Deployment
sRuntimeService
:
For starting and searching ProcessInstance
sTaskService
:
Exposes operations to manage human (standalone) Task
s,
such as claiming, completing and assigning tasksIdentityService
:
Used for managing User
s,
Group
s and the relations between themManagementService
:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService
:
Exposes information about ongoing and past process instances.FormService
:
Access to form data and rendered forms for starting new process instances and completing tasks.Classes related to the
HistoryService
.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of HistoricIncidentQuery in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionHistoryService.createHistoricIncidentQuery()
Creates a new programmatic query to search forhistoric incidents
. -
Uses of HistoricIncidentQuery in org.camunda.bpm.engine.history
Modifier and TypeMethodDescriptionHistoricIncidentQuery.activityId
(String activityId) Only select historic incidents which contain an activity with the given id.HistoricIncidentQuery.causeIncidentId
(String causeIncidentId) Only select historic incidents which contain the id of the cause incident.HistoricIncidentQuery.configuration
(String configuration) Only select incidents which contain the configuration.HistoricIncidentQuery.createTimeAfter
(Date createTimeAfter) Only select historic incidents which have a createTime date after the given dateHistoricIncidentQuery.createTimeBefore
(Date createTimeBefore) Only select historic incidents which have a createTime date before the given dateHistoricIncidentQuery.deleted()
Only select historic incidents which are deleted.HistoricIncidentQuery.endTimeAfter
(Date endTimeAfter) Only select historic incidents which have an endTimeAfter date after the given dateHistoricIncidentQuery.endTimeBefore
(Date endTimeBefore) Only select historic incidents which have an endTimeBefore date before the given dateHistoricIncidentQuery.executionId
(String executionId) Only select historic incidents with the given id.HistoricIncidentQuery.failedActivityId
(String activityId) Only select historic incidents which were created due to a failure at an activity with the given id.HistoricIncidentQuery.historyConfiguration
(String historyConfiguration) Only select incidents which contain the historyConfiguration.HistoricIncidentQuery.incidentId
(String incidentId) Only select historic incidents which have the given id.HistoricIncidentQuery.incidentMessage
(String incidentMessage) Only select historic incidents which have the given incident message.HistoricIncidentQuery.incidentMessageLike
(String incidentMessageLike) Only select historic incidents which incident message is like the given valueHistoricIncidentQuery.incidentType
(String incidentType) Only select historic incidents which have the given incident type.HistoricIncidentQuery.jobDefinitionIdIn
(String... jobDefinitionIds) Only select incidents that belong to one of the given job definition ids.HistoricIncidentQuery.open()
Only select historic incidents which are open.HistoricIncidentQuery.orderByActivityId()
Order by activityId (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByCauseIncidentId()
Order by causeIncidentId (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByConfiguration()
Order by configuration (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByCreateTime()
Order by create time (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByEndTime()
Order by end time (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByExecutionId()
Order by executionId (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByHistoryConfiguration()
Order by historyConfiguration (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByIncidentId()
Order by id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByIncidentMessage()
Order by message (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByIncidentState()
Order by incidentState (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByIncidentType()
Order by incidentType (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByProcessDefinitionId()
Order by processDefinitionId (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByProcessDefinitionKey()
Order by processDefinitionKey (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByProcessInstanceId()
Order by processInstanceId (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByRootCauseIncidentId()
Order by rootCauseIncidentId (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIncidentQuery.processDefinitionId
(String processDefinitionId) Only select historic incidents which have the given process definition id.HistoricIncidentQuery.processDefinitionKey
(String processDefinitionKey) Only select historic incidents which have the given processDefinitionKey.HistoricIncidentQuery.processDefinitionKeyIn
(String... processDefinitionKeys) Only select historic incidents which have one of the given process definition keys.HistoricIncidentQuery.processInstanceId
(String processInstanceId) Only select historic incidents which have the given process instance id.HistoricIncidentQuery.resolved()
Only select historic incidents which are resolved.HistoricIncidentQuery.rootCauseIncidentId
(String rootCauseIncidentId) Only select historic incidents which contain the id of the root cause incident.HistoricIncidentQuery.tenantIdIn
(String... tenantIds) Only select historic incidents that belong to one of the given tenant ids.HistoricIncidentQuery.withoutTenantId()
Only selects historic incidents that have no tenant id. -
Uses of HistoricIncidentQuery in org.camunda.bpm.engine.impl
Modifier and TypeMethodDescriptionHistoricIncidentQueryImpl.activityId
(String activityId) HistoricIncidentQueryImpl.causeIncidentId
(String causeIncidentId) HistoricIncidentQueryImpl.configuration
(String configuration) HistoryServiceImpl.createHistoricIncidentQuery()
HistoricIncidentQueryImpl.createTimeAfter
(Date createTimeAfter) HistoricIncidentQueryImpl.createTimeBefore
(Date createTimeBefore) HistoricIncidentQueryImpl.deleted()
HistoricIncidentQueryImpl.endTimeAfter
(Date endTimeAfter) HistoricIncidentQueryImpl.endTimeBefore
(Date endTimeBefore) HistoricIncidentQueryImpl.executionId
(String executionId) HistoricIncidentQueryImpl.failedActivityId
(String activityId) HistoricIncidentQueryImpl.historyConfiguration
(String historyConfiguration) HistoricIncidentQueryImpl.incidentId
(String incidentId) HistoricIncidentQueryImpl.incidentMessage
(String incidentMessage) HistoricIncidentQueryImpl.incidentMessageLike
(String incidentMessageLike) HistoricIncidentQueryImpl.incidentType
(String incidentType) HistoricIncidentQueryImpl.jobDefinitionIdIn
(String... jobDefinitionIds) HistoricIncidentQueryImpl.open()
HistoricIncidentQueryImpl.orderByActivityId()
HistoricIncidentQueryImpl.orderByCauseIncidentId()
HistoricIncidentQueryImpl.orderByConfiguration()
HistoricIncidentQueryImpl.orderByCreateTime()
HistoricIncidentQueryImpl.orderByEndTime()
HistoricIncidentQueryImpl.orderByExecutionId()
HistoricIncidentQueryImpl.orderByHistoryConfiguration()
HistoricIncidentQueryImpl.orderByIncidentId()
HistoricIncidentQueryImpl.orderByIncidentMessage()
HistoricIncidentQueryImpl.orderByIncidentState()
HistoricIncidentQueryImpl.orderByIncidentType()
HistoricIncidentQueryImpl.orderByProcessDefinitionId()
HistoricIncidentQueryImpl.orderByProcessDefinitionKey()
HistoricIncidentQueryImpl.orderByProcessInstanceId()
HistoricIncidentQueryImpl.orderByRootCauseIncidentId()
HistoricIncidentQueryImpl.orderByTenantId()
HistoricIncidentQueryImpl.processDefinitionId
(String processDefinitionId) HistoricIncidentQueryImpl.processDefinitionKey
(String processDefinitionKey) HistoricIncidentQueryImpl.processDefinitionKeyIn
(String... processDefinitionKeys) HistoricIncidentQueryImpl.processInstanceId
(String processInstanceId) HistoricIncidentQueryImpl.resolved()
HistoricIncidentQueryImpl.rootCauseIncidentId
(String rootCauseIncidentId) HistoricIncidentQueryImpl.tenantIdIn
(String... tenantIds) HistoricIncidentQueryImpl.withoutTenantId()
-
Uses of HistoricIncidentQuery in org.camunda.bpm.engine.rest.dto.history
Modifier and TypeMethodDescriptionprotected HistoricIncidentQuery
HistoricIncidentQueryDto.createNewQuery
(ProcessEngine engine) Modifier and TypeMethodDescriptionprotected void
HistoricIncidentQueryDto.applyFilters
(HistoricIncidentQuery query) protected void
HistoricIncidentQueryDto.applySortBy
(HistoricIncidentQuery query, String sortBy, Map<String, Object> parameters, ProcessEngine engine) -
Uses of HistoricIncidentQuery in org.camunda.bpm.qa.upgrade