| Package | Description | 
|---|---|
| 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 | |
| org.camunda.bpm.engine.rest.dto.runtime | 
| Modifier and Type | Method and Description | 
|---|---|
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 
 | 
| Modifier and Type | Method and Description | 
|---|---|
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 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Incident | 
RuntimeServiceImpl.createIncident(String incidentType,
              String executionId,
              String configuration)  | 
Incident | 
RuntimeServiceImpl.createIncident(String incidentType,
              String executionId,
              String configuration,
              String message)  | 
| Modifier and Type | Method and Description | 
|---|---|
List<Incident> | 
IncidentQueryImpl.executeList(CommandContext commandContext,
           Page page)  | 
| Modifier and Type | Method and Description | 
|---|---|
Incident | 
CreateIncidentCmd.execute(CommandContext commandContext)  | 
| Modifier and Type | Method and Description | 
|---|---|
Incident | 
DefaultIncidentHandler.createIncident(IncidentContext context,
              String message)  | 
Incident | 
DefaultIncidentHandler.handleIncident(IncidentContext context,
              String message)  | 
Incident | 
IncidentHandler.handleIncident(IncidentContext context,
              String message)
Handle an incident that arose in the context of an execution. 
 | 
| Constructor and Description | 
|---|
IncidentContext(Incident incident)  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
IncidentEntity  | 
| Modifier and Type | Method and Description | 
|---|---|
Incident | 
IncidentManager.findIncidentById(String id)  | 
| Modifier and Type | Method and Description | 
|---|---|
List<Incident> | 
IncidentManager.findIncidentByConfiguration(String configuration)  | 
List<Incident> | 
IncidentManager.findIncidentByConfigurationAndIncidentType(String configuration,
                                          String incidentType)  | 
List<Incident> | 
IncidentManager.findIncidentByQueryCriteria(IncidentQueryImpl incidentQuery,
                           Page page)  | 
| Modifier and Type | Method and Description | 
|---|---|
Incident | 
PvmExecutionImpl.createIncident(String incidentType,
              String configuration)
Returns the newest incident in this execution 
 | 
Incident | 
PvmExecutionImpl.createIncident(String incidentType,
              String configuration,
              String message)  | 
| Modifier and Type | Method and Description | 
|---|---|
static IncidentDto | 
IncidentDto.fromIncident(Incident incident)  | 
Copyright © 2019. All rights reserved.