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 DeploymentsRuntimeService:
For starting and searching ProcessInstancesTaskService:
Exposes operations to manage human (standalone) Tasks,
such as claiming, completing and assigning tasksIdentityService:
Used for managing Users,
Groups 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
JavaDelegates.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 ActivityInstanceImplGetActivityInstanceCmd.createActivityInstance(PvmExecutionImpl scopeExecution, ScopeImpl scope, String activityInstanceId, String parentActivityInstanceId, Map<String, List<Incident>> incidentsByExecution) protected TransitionInstanceImplGetActivityInstanceCmd.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 HistoryEventDefaultHistoryEventProducer.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 voidDefaultHistoryEventProducer.initHistoricIncidentEvent(HistoricIncidentEventEntity evt, Incident incident, HistoryEventType eventType) protected HistoricIncidentEventEntityCacheAwareHistoryEventProducer.loadIncidentEvent(Incident incident) protected HistoricIncidentEventEntityDefaultHistoryEventProducer.loadIncidentEvent(Incident incident) protected HistoricIncidentEventEntityDefaultHistoryEventProducer.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 IncidentIncidentHandling.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.incidentsprotected Incident[]TransitionInstanceImpl.incidentsMethods 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 TypeMethodDescriptionvoidActivityInstanceImpl.setIncidents(Incident[] incidents) voidTransitionInstanceImpl.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 ActivityInstanceIncidentDtoActivityInstanceIncidentDto.fromIncident(Incident incident) static IncidentDtoIncidentDto.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