|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Incident | |
|---|---|
| org.camunda.bpm.engine | Public API of the camunda BPM engine. 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. |
| org.camunda.bpm.engine.delegate | Interfaces used to include Java code in a process as the behavior of an activity
or as a listener to process events with JavaDelegates. |
| org.camunda.bpm.engine.impl | API implementation classes, which shouldn't directly be used by end-users. |
| org.camunda.bpm.engine.impl.cmd | |
| org.camunda.bpm.engine.impl.history.producer | |
| org.camunda.bpm.engine.impl.incident | |
| org.camunda.bpm.engine.impl.persistence.entity | |
| org.camunda.bpm.engine.impl.pvm.runtime | |
| Uses of Incident in org.camunda.bpm.engine |
|---|
| Methods in org.camunda.bpm.engine that return Incident | |
|---|---|
Incident |
RuntimeService.createIncident(String incidentType,
String executionId,
String configuration)
Creates an incident |
Incident |
RuntimeService.createIncident(String incidentType,
String executionId,
String configuration,
String message)
Creates an incident |
| Uses of Incident in org.camunda.bpm.engine.delegate |
|---|
| Methods in org.camunda.bpm.engine.delegate that return Incident | |
|---|---|
Incident |
DelegateExecution.createIncident(String incidentType,
String configuration)
Create an incident associated with this execution |
Incident |
DelegateExecution.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 Incident | |
|---|---|
Incident |
RuntimeServiceImpl.createIncident(String incidentType,
String executionId,
String configuration)
|
Incident |
RuntimeServiceImpl.createIncident(String incidentType,
String executionId,
String configuration,
String message)
|
| Methods in org.camunda.bpm.engine.impl that return types with arguments of type Incident | |
|---|---|
List<Incident> |
IncidentQueryImpl.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 Incident | |
|---|---|
Incident |
CreateIncidentCmd.execute(CommandContext commandContext)
|
| Uses of Incident in org.camunda.bpm.engine.impl.history.producer |
|---|
| Uses of Incident in org.camunda.bpm.engine.impl.incident |
|---|
| Methods in org.camunda.bpm.engine.impl.incident that return Incident | |
|---|---|
Incident |
DefaultIncidentHandler.createIncident(IncidentContext context,
String message)
|
| Uses of Incident in org.camunda.bpm.engine.impl.persistence.entity |
|---|
| Classes in org.camunda.bpm.engine.impl.persistence.entity that implement Incident | |
|---|---|
class |
IncidentEntity
|
| Methods in org.camunda.bpm.engine.impl.persistence.entity that return Incident | |
|---|---|
Incident |
IncidentManager.findIncidentById(String id)
|
| Methods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type Incident | |
|---|---|
List<Incident> |
IncidentManager.findIncidentByConfiguration(String configuration)
|
List<Incident> |
IncidentManager.findIncidentByConfigurationAndIncidentType(String configuration,
String incidentType)
|
List<Incident> |
IncidentManager.findIncidentByQueryCriteria(IncidentQueryImpl incidentQuery,
Page page)
|
| Uses of Incident in org.camunda.bpm.engine.impl.pvm.runtime |
|---|
| Methods in org.camunda.bpm.engine.impl.pvm.runtime that return Incident | |
|---|---|
Incident |
PvmExecutionImpl.createIncident(String incidentType,
String configuration)
Returns a new incident. |
Incident |
PvmExecutionImpl.createIncident(String incidentType,
String configuration,
String message)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||