Uses of Interface
org.camunda.bpm.engine.runtime.Incident
Packages that use Incident
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.Interfaces used to include Java code in a process as the behavior of an activity
or as a listener to process events with
JavaDelegate
s.API implementation classes, which shouldn't directly be used by end-users.
Classes related to the
RuntimeService
.-
Uses of Incident in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return Incident -
Uses of Incident in org.camunda.bpm.engine.delegate
Methods in org.camunda.bpm.engine.delegate that return IncidentModifier and TypeMethodDescriptionDelegateExecution.createIncident
(String incidentType, String configuration) Create an incident associated with this executionDelegateExecution.createIncident
(String incidentType, String configuration, String message) Create an incident associated with this execution -
Uses of Incident in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return IncidentModifier and TypeMethodDescriptionRuntimeServiceImpl.createIncident
(String incidentType, String executionId, String configuration) RuntimeServiceImpl.createIncident
(String incidentType, String executionId, String configuration, String message) Methods in org.camunda.bpm.engine.impl that return types with arguments of type IncidentModifier and TypeMethodDescriptionIncidentQueryImpl.executeList
(CommandContext commandContext, Page page) -
Uses of Incident in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd that return IncidentMethods in org.camunda.bpm.engine.impl.cmd that return types with arguments of type IncidentModifier and TypeMethodDescriptionGetActivityInstanceCmd.getIncidents
(Map<String, List<Incident>> incidents, PvmExecutionImpl execution) GetActivityInstanceCmd.groupIncidentIdsByExecutionId
(CommandContext commandContext) Method parameters in org.camunda.bpm.engine.impl.cmd with type arguments of type IncidentModifier and TypeMethodDescriptionprotected ActivityInstanceImpl
GetActivityInstanceCmd.createActivityInstance
(PvmExecutionImpl scopeExecution, ScopeImpl scope, String activityInstanceId, String parentActivityInstanceId, Map<String, List<Incident>> incidentsByExecution) protected TransitionInstanceImpl
GetActivityInstanceCmd.createTransitionInstance
(PvmExecutionImpl execution, Map<String, List<Incident>> incidentsByExecution) GetActivityInstanceCmd.getIncidentIds
(Map<String, List<Incident>> incidents, PvmExecutionImpl execution) GetActivityInstanceCmd.getIncidents
(Map<String, List<Incident>> incidents, PvmExecutionImpl execution) -
Uses of Incident in org.camunda.bpm.engine.impl.history.producer
Methods in org.camunda.bpm.engine.impl.history.producer with parameters of type IncidentModifier and TypeMethodDescriptionDefaultHistoryEventProducer.createHistoricIncidentCreateEvt
(Incident incident) HistoryEventProducer.createHistoricIncidentCreateEvt
(Incident incident) DefaultHistoryEventProducer.createHistoricIncidentDeleteEvt
(Incident incident) HistoryEventProducer.createHistoricIncidentDeleteEvt
(Incident incident) protected HistoryEvent
DefaultHistoryEventProducer.createHistoricIncidentEvt
(Incident incident, HistoryEventTypes eventType) DefaultHistoryEventProducer.createHistoricIncidentMigrateEvt
(Incident incident) HistoryEventProducer.createHistoricIncidentMigrateEvt
(Incident incident) DefaultHistoryEventProducer.createHistoricIncidentResolveEvt
(Incident incident) HistoryEventProducer.createHistoricIncidentResolveEvt
(Incident incident) DefaultHistoryEventProducer.createHistoricIncidentUpdateEvt
(Incident incident) HistoryEventProducer.createHistoricIncidentUpdateEvt
(Incident incident) protected void
DefaultHistoryEventProducer.initHistoricIncidentEvent
(HistoricIncidentEventEntity evt, Incident incident, HistoryEventType eventType) protected HistoricIncidentEventEntity
CacheAwareHistoryEventProducer.loadIncidentEvent
(Incident incident) protected HistoricIncidentEventEntity
DefaultHistoryEventProducer.loadIncidentEvent
(Incident incident) protected HistoricIncidentEventEntity
DefaultHistoryEventProducer.newIncidentEventEntity
(Incident incident) -
Uses of Incident in org.camunda.bpm.engine.impl.incident
Methods in org.camunda.bpm.engine.impl.incident that return IncidentModifier and TypeMethodDescriptionDefaultIncidentHandler.createIncident
(IncidentContext context, String message) static Incident
IncidentHandling.createIncident
(String incidentType, IncidentContext context, String message) CompositeIncidentHandler.handleIncident
(IncidentContext context, String message) DefaultIncidentHandler.handleIncident
(IncidentContext context, String message) IncidentHandler.handleIncident
(IncidentContext context, String message) Handle an incident that arose in the context of an execution.Constructors in org.camunda.bpm.engine.impl.incident with parameters of type Incident -
Uses of Incident in org.camunda.bpm.engine.impl.persistence.entity
Classes in org.camunda.bpm.engine.impl.persistence.entity that implement IncidentFields in org.camunda.bpm.engine.impl.persistence.entity declared as IncidentModifier and TypeFieldDescriptionprotected Incident[]
ActivityInstanceImpl.incidents
protected Incident[]
TransitionInstanceImpl.incidents
Methods in org.camunda.bpm.engine.impl.persistence.entity that return IncidentModifier and TypeMethodDescriptionIncidentManager.findIncidentById
(String id) Incident[]
ActivityInstanceImpl.getIncidents()
Incident[]
TransitionInstanceImpl.getIncidents()
Methods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type IncidentModifier and TypeMethodDescriptionIncidentManager.findIncidentByConfiguration
(String configuration) IncidentManager.findIncidentByConfigurationAndIncidentType
(String configuration, String incidentType) IncidentManager.findIncidentByQueryCriteria
(IncidentQueryImpl incidentQuery, Page page) Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type IncidentModifier and TypeMethodDescriptionvoid
ActivityInstanceImpl.setIncidents
(Incident[] incidents) void
TransitionInstanceImpl.setIncidents
(Incident[] incidents) -
Uses of Incident in org.camunda.bpm.engine.impl.pvm.runtime
Methods in org.camunda.bpm.engine.impl.pvm.runtime that return IncidentModifier and TypeMethodDescriptionPvmExecutionImpl.createIncident
(String incidentType, String configuration) Returns the newest incident in this executionPvmExecutionImpl.createIncident
(String incidentType, String configuration, String message) -
Uses of Incident in org.camunda.bpm.engine.rest.dto.runtime
Methods in org.camunda.bpm.engine.rest.dto.runtime with parameters of type IncidentModifier and TypeMethodDescriptionstatic ActivityInstanceIncidentDto
ActivityInstanceIncidentDto.fromIncident
(Incident incident) static IncidentDto
IncidentDto.fromIncident
(Incident incident) protected static ActivityInstanceIncidentDto[]
ActivityInstanceIncidentDto.fromIncidents
(Incident[] incidents) -
Uses of Incident in org.camunda.bpm.engine.runtime
Methods in org.camunda.bpm.engine.runtime that return IncidentModifier and TypeMethodDescriptionIncident[]
ActivityInstance.getIncidents()
the list of currently open incidentsIncident[]
TransitionInstance.getIncidents()
the list of currently open incidents