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