org.camunda.bpm.engine.history
Interface HistoricIncidentQuery

All Superinterfaces:
Query<HistoricIncidentQuery,HistoricIncident>
All Known Implementing Classes:
HistoricIncidentQueryImpl

public interface HistoricIncidentQuery
extends Query<HistoricIncidentQuery,HistoricIncident>

Author:
Roman Smirnov

Method Summary
 HistoricIncidentQuery 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 deleted()
          Only select historic incidents which are deleted.
 HistoricIncidentQuery executionId(String executionId)
          Only select historic incidents with the given id.
 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 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 by Query.asc() or Query.desc()).
 HistoricIncidentQuery orderByCauseIncidentId()
          Order by causeIncidentId (needs to be followed by Query.asc() or Query.desc()).
 HistoricIncidentQuery orderByConfiguration()
          Order by configuration (needs to be followed by Query.asc() or Query.desc()).
 HistoricIncidentQuery orderByCreateTime()
          Order by create time (needs to be followed by Query.asc() or Query.desc()).
 HistoricIncidentQuery orderByEndTime()
          Order by end time (needs to be followed by Query.asc() or Query.desc()).
 HistoricIncidentQuery orderByExecutionId()
          Order by executionId (needs to be followed by Query.asc() or Query.desc()).
 HistoricIncidentQuery orderByIncidentId()
          Order by id (needs to be followed by Query.asc() or Query.desc()).
 HistoricIncidentQuery orderByIncidentState()
          Order by incidentState (needs to be followed by Query.asc() or Query.desc()).
 HistoricIncidentQuery orderByIncidentType()
          Order by incidentType (needs to be followed by Query.asc() or Query.desc()).
 HistoricIncidentQuery orderByProcessDefinitionId()
          Order by processDefinitionId (needs to be followed by Query.asc() or Query.desc()).
 HistoricIncidentQuery orderByProcessInstanceId()
          Order by processInstanceId (needs to be followed by Query.asc() or Query.desc()).
 HistoricIncidentQuery orderByRootCauseIncidentId()
          Order by rootCauseIncidentId (needs to be followed by Query.asc() or Query.desc()).
 HistoricIncidentQuery orderByTenantId()
          Order by tenant id (needs to be followed by Query.asc() or Query.desc()).
 HistoricIncidentQuery processDefinitionId(String processDefinitionId)
          Only select historic incidents which have the given process definition id.
 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.
 
Methods inherited from interface org.camunda.bpm.engine.query.Query
asc, count, desc, list, listPage, singleResult
 

Method Detail

incidentId

HistoricIncidentQuery incidentId(String incidentId)
Only select historic incidents which have the given id.


incidentType

HistoricIncidentQuery incidentType(String incidentType)
Only select historic incidents which have the given incident type.


incidentMessage

HistoricIncidentQuery incidentMessage(String incidentMessage)
Only select historic incidents which have the given incident message.


processDefinitionId

HistoricIncidentQuery processDefinitionId(String processDefinitionId)
Only select historic incidents which have the given process definition id.


processInstanceId

HistoricIncidentQuery processInstanceId(String processInstanceId)
Only select historic incidents which have the given process instance id.


executionId

HistoricIncidentQuery executionId(String executionId)
Only select historic incidents with the given id.


activityId

HistoricIncidentQuery activityId(String activityId)
Only select historic incidents which contain an activity with the given id.


causeIncidentId

HistoricIncidentQuery causeIncidentId(String causeIncidentId)
Only select historic incidents which contain the id of the cause incident.


rootCauseIncidentId

HistoricIncidentQuery rootCauseIncidentId(String rootCauseIncidentId)
Only select historic incidents which contain the id of the root cause incident.


tenantIdIn

HistoricIncidentQuery tenantIdIn(String... tenantIds)
Only select historic incidents that belong to one of the given tenant ids.


configuration

HistoricIncidentQuery configuration(String configuration)
Only select incidents which contain the configuration.


jobDefinitionIdIn

HistoricIncidentQuery jobDefinitionIdIn(String... jobDefinitionIds)
Only select incidents that belong to one of the given job definition ids.


open

HistoricIncidentQuery open()
Only select historic incidents which are open.


resolved

HistoricIncidentQuery resolved()
Only select historic incidents which are resolved.


deleted

HistoricIncidentQuery deleted()
Only select historic incidents which are deleted.


orderByIncidentId

HistoricIncidentQuery orderByIncidentId()
Order by id (needs to be followed by Query.asc() or Query.desc()).


orderByCreateTime

HistoricIncidentQuery orderByCreateTime()
Order by create time (needs to be followed by Query.asc() or Query.desc()).


orderByEndTime

HistoricIncidentQuery orderByEndTime()
Order by end time (needs to be followed by Query.asc() or Query.desc()).


orderByIncidentType

HistoricIncidentQuery orderByIncidentType()
Order by incidentType (needs to be followed by Query.asc() or Query.desc()).


orderByExecutionId

HistoricIncidentQuery orderByExecutionId()
Order by executionId (needs to be followed by Query.asc() or Query.desc()).


orderByActivityId

HistoricIncidentQuery orderByActivityId()
Order by activityId (needs to be followed by Query.asc() or Query.desc()).


orderByProcessInstanceId

HistoricIncidentQuery orderByProcessInstanceId()
Order by processInstanceId (needs to be followed by Query.asc() or Query.desc()).


orderByProcessDefinitionId

HistoricIncidentQuery orderByProcessDefinitionId()
Order by processDefinitionId (needs to be followed by Query.asc() or Query.desc()).


orderByCauseIncidentId

HistoricIncidentQuery orderByCauseIncidentId()
Order by causeIncidentId (needs to be followed by Query.asc() or Query.desc()).


orderByRootCauseIncidentId

HistoricIncidentQuery orderByRootCauseIncidentId()
Order by rootCauseIncidentId (needs to be followed by Query.asc() or Query.desc()).


orderByConfiguration

HistoricIncidentQuery orderByConfiguration()
Order by configuration (needs to be followed by Query.asc() or Query.desc()).


orderByIncidentState

HistoricIncidentQuery orderByIncidentState()
Order by incidentState (needs to be followed by Query.asc() or Query.desc()).


orderByTenantId

HistoricIncidentQuery orderByTenantId()
Order by tenant id (needs to be followed by Query.asc() or Query.desc()). Note that the ordering of incidents without tenant id is database-specific.



Copyright © 2017 camunda services GmbH. All rights reserved.