Uses of Interface
org.camunda.bpm.engine.impl.incident.IncidentHandler
-
Packages that use IncidentHandler Package Description org.camunda.bpm.engine.impl.cfg org.camunda.bpm.engine.impl.incident org.camunda.bpm.engine.impl.pvm.runtime -
-
Uses of IncidentHandler in org.camunda.bpm.engine.impl.cfg
Fields in org.camunda.bpm.engine.impl.cfg with type parameters of type IncidentHandler Modifier and Type Field Description protected List<IncidentHandler>
ProcessEngineConfigurationImpl. customIncidentHandlers
protected Map<String,IncidentHandler>
ProcessEngineConfigurationImpl. incidentHandlers
Methods in org.camunda.bpm.engine.impl.cfg that return IncidentHandler Modifier and Type Method Description IncidentHandler
ProcessEngineConfigurationImpl. getIncidentHandler(String incidentType)
Methods in org.camunda.bpm.engine.impl.cfg that return types with arguments of type IncidentHandler Modifier and Type Method Description List<IncidentHandler>
ProcessEngineConfigurationImpl. getCustomIncidentHandlers()
Map<String,IncidentHandler>
ProcessEngineConfigurationImpl. getIncidentHandlers()
Methods in org.camunda.bpm.engine.impl.cfg with parameters of type IncidentHandler Modifier and Type Method Description void
ProcessEngineConfigurationImpl. addIncidentHandler(IncidentHandler incidentHandler)
Method parameters in org.camunda.bpm.engine.impl.cfg with type arguments of type IncidentHandler Modifier and Type Method Description void
ProcessEngineConfigurationImpl. setCustomIncidentHandlers(List<IncidentHandler> customIncidentHandlers)
void
ProcessEngineConfigurationImpl. setIncidentHandlers(Map<String,IncidentHandler> incidentHandlers)
-
Uses of IncidentHandler in org.camunda.bpm.engine.impl.incident
Classes in org.camunda.bpm.engine.impl.incident that implement IncidentHandler Modifier and Type Class Description class
CompositeIncidentHandler
A composite incident handler that handles incidents of a certain type by the multiple handlers.class
DefaultIncidentHandler
An incident handler that logs incidents of a certain type as instances ofIncident
to the engine database.Fields in org.camunda.bpm.engine.impl.incident declared as IncidentHandler Modifier and Type Field Description protected IncidentHandler
CompositeIncidentHandler. mainIncidentHandler
Fields in org.camunda.bpm.engine.impl.incident with type parameters of type IncidentHandler Modifier and Type Field Description protected List<IncidentHandler>
CompositeIncidentHandler. incidentHandlers
Methods in org.camunda.bpm.engine.impl.incident with parameters of type IncidentHandler Modifier and Type Method Description void
CompositeIncidentHandler. add(IncidentHandler incidentHandler)
Adds theIncidentHandler
to the list ofIncidentHandler
that consume the incident.protected void
CompositeIncidentHandler. initializeIncidentsHandlers(IncidentHandler mainIncidentHandler, List<IncidentHandler> incidentHandlers)
InitializeCompositeIncidentHandler.incidentHandlers
with data transfered from constructorMethod parameters in org.camunda.bpm.engine.impl.incident with type arguments of type IncidentHandler Modifier and Type Method Description protected void
CompositeIncidentHandler. initializeIncidentsHandlers(IncidentHandler mainIncidentHandler, List<IncidentHandler> incidentHandlers)
InitializeCompositeIncidentHandler.incidentHandlers
with data transfered from constructorConstructors in org.camunda.bpm.engine.impl.incident with parameters of type IncidentHandler Constructor Description CompositeIncidentHandler(IncidentHandler mainIncidentHandler, List<IncidentHandler> incidentHandlers)
Constructor that takes a list ofIncidentHandler
that consume the incident.CompositeIncidentHandler(IncidentHandler mainIncidentHandler, IncidentHandler... incidentHandlers)
Constructor that takes a varargs parameterIncidentHandler
that consume the incident.Constructor parameters in org.camunda.bpm.engine.impl.incident with type arguments of type IncidentHandler Constructor Description CompositeIncidentHandler(IncidentHandler mainIncidentHandler, List<IncidentHandler> incidentHandlers)
Constructor that takes a list ofIncidentHandler
that consume the incident. -
Uses of IncidentHandler in org.camunda.bpm.engine.impl.pvm.runtime
Methods in org.camunda.bpm.engine.impl.pvm.runtime that return IncidentHandler Modifier and Type Method Description IncidentHandler
PvmExecutionImpl. findIncidentHandler(String incidentType)
-