Uses of Interface
org.camunda.bpm.engine.runtime.IncidentQuery
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.API implementation classes, which shouldn't directly be used by end-users.
Classes related to the
RuntimeService
.-
Uses of IncidentQuery in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionRuntimeService.createIncidentQuery()
Creates a newIncidentQuery
instance, that can be used to query incidents. -
Uses of IncidentQuery in org.camunda.bpm.engine.impl
Modifier and TypeMethodDescriptionIncidentQueryImpl.activityId
(String activityId) IncidentQueryImpl.causeIncidentId
(String causeIncidentId) IncidentQueryImpl.configuration
(String configuration) RuntimeServiceImpl.createIncidentQuery()
IncidentQueryImpl.executionId
(String executionId) IncidentQueryImpl.failedActivityId
(String activityId) IncidentQueryImpl.incidentId
(String incidentId) IncidentQueryImpl.incidentMessage
(String incidentMessage) IncidentQueryImpl.incidentMessageLike
(String incidentMessageLike) IncidentQueryImpl.incidentTimestampAfter
(Date incidentTimestampAfter) IncidentQueryImpl.incidentTimestampBefore
(Date incidentTimestampBefore) IncidentQueryImpl.incidentType
(String incidentType) IncidentQueryImpl.jobDefinitionIdIn
(String... jobDefinitionIds) IncidentQueryImpl.orderByActivityId()
IncidentQueryImpl.orderByCauseIncidentId()
IncidentQueryImpl.orderByConfiguration()
IncidentQueryImpl.orderByExecutionId()
IncidentQueryImpl.orderByIncidentId()
IncidentQueryImpl.orderByIncidentMessage()
IncidentQueryImpl.orderByIncidentTimestamp()
IncidentQueryImpl.orderByIncidentType()
IncidentQueryImpl.orderByProcessDefinitionId()
IncidentQueryImpl.orderByProcessInstanceId()
IncidentQueryImpl.orderByRootCauseIncidentId()
IncidentQueryImpl.orderByTenantId()
IncidentQueryImpl.processDefinitionId
(String processDefinitionId) IncidentQueryImpl.processDefinitionKeyIn
(String... processDefinitionKeys) IncidentQueryImpl.processInstanceId
(String processInstanceId) IncidentQueryImpl.rootCauseIncidentId
(String rootCauseIncidentId) IncidentQueryImpl.tenantIdIn
(String... tenantIds) -
Uses of IncidentQuery in org.camunda.bpm.engine.rest.dto.runtime
Modifier and TypeMethodDescriptionprotected IncidentQuery
IncidentQueryDto.createNewQuery
(ProcessEngine engine) Modifier and TypeMethodDescriptionprotected void
IncidentQueryDto.applyFilters
(IncidentQuery query) protected void
IncidentQueryDto.applySortBy
(IncidentQuery query, String sortBy, Map<String, Object> parameters, ProcessEngine engine) -
Uses of IncidentQuery in org.camunda.bpm.engine.runtime
Modifier and TypeMethodDescriptionIncidentQuery.activityId
(String activityId) Only select incidents which contain an activity with the given id.IncidentQuery.causeIncidentId
(String causeIncidentId) Only select incidents which contain the id of the cause incident.IncidentQuery.configuration
(String configuration) Only select incidents which contain the configuration.IncidentQuery.executionId
(String executionId) Only select incidents with the given id.IncidentQuery.failedActivityId
(String activityId) Only select incidents which were created due to a failure at an activity with the given id.IncidentQuery.incidentId
(String incidentId) Only select incidents which have the given id.IncidentQuery.incidentMessage
(String incidentMessage) Only select incidents which have the given incident message.IncidentQuery.incidentMessageLike
(String incidentMessageLike) Only select incidents which incident message is like the given value.IncidentQuery.incidentTimestampAfter
(Date incidentTimestampAfter) Only select incidents which have an incidentTimestamp date after the given dateIncidentQuery.incidentTimestampBefore
(Date incidentTimestampBefore) Only select incidents which have an incidentTimestamp date before the given dateIncidentQuery.incidentType
(String incidentType) Only select incidents which have the given incident type.IncidentQuery.jobDefinitionIdIn
(String... jobDefinitionIds) Only select incidents that belong to one of the given job definition ids.IncidentQuery.orderByActivityId()
Order by activityId (needs to be followed byQuery.asc()
orQuery.desc()
).IncidentQuery.orderByCauseIncidentId()
Order by causeIncidentId (needs to be followed byQuery.asc()
orQuery.desc()
).IncidentQuery.orderByConfiguration()
Order by configuration (needs to be followed byQuery.asc()
orQuery.desc()
).IncidentQuery.orderByExecutionId()
Order by executionId (needs to be followed byQuery.asc()
orQuery.desc()
).IncidentQuery.orderByIncidentId()
Order by id (needs to be followed byQuery.asc()
orQuery.desc()
).IncidentQuery.orderByIncidentMessage()
Order by incident message (needs to be followed byQuery.asc()
orQuery.desc()
).IncidentQuery.orderByIncidentTimestamp()
Order by incidentTimestamp (needs to be followed byQuery.asc()
orQuery.desc()
).IncidentQuery.orderByIncidentType()
Order by incidentType (needs to be followed byQuery.asc()
orQuery.desc()
).IncidentQuery.orderByProcessDefinitionId()
Order by processDefinitionId (needs to be followed byQuery.asc()
orQuery.desc()
).IncidentQuery.orderByProcessInstanceId()
Order by processInstanceId (needs to be followed byQuery.asc()
orQuery.desc()
).IncidentQuery.orderByRootCauseIncidentId()
Order by rootCauseIncidentId (needs to be followed byQuery.asc()
orQuery.desc()
).IncidentQuery.orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).IncidentQuery.processDefinitionId
(String processDefinitionId) Only select incidents which have the given process definition id.IncidentQuery.processDefinitionKeyIn
(String... processDefinitionKeys) Only select incidents which have one of the given process definition keys.IncidentQuery.processInstanceId
(String processInstanceId) Only select incidents which have the given process instance id.IncidentQuery.rootCauseIncidentId
(String rootCauseIncidentId) Only select incidents which contain the id of the root cause incident.IncidentQuery.tenantIdIn
(String... tenantIds) Only select incidents that belong to one of the given tenant ids. -
Uses of IncidentQuery in org.camunda.bpm.qa.upgrade