Package | Description |
---|---|
org.camunda.bpm.engine |
Public API of the Camunda Platform 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 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. |
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
JavaDelegate s. |
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 | |
org.camunda.bpm.engine.runtime |
Classes related to the
RuntimeService . |
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 |
---|---|
protected List<Incident> |
GetActivityInstanceCmd.getIncidents(Map<String,List<Incident>> incidents,
PvmExecutionImpl execution) |
protected Map<String,List<Incident>> |
GetActivityInstanceCmd.groupIncidentIdsByExecutionId(CommandContext commandContext) |
Modifier and Type | Method and Description |
---|---|
protected 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) |
protected List<String> |
GetActivityInstanceCmd.getIncidentIds(Map<String,List<Incident>> incidents,
PvmExecutionImpl execution) |
protected List<Incident> |
GetActivityInstanceCmd.getIncidents(Map<String,List<Incident>> incidents,
PvmExecutionImpl execution) |
Modifier and Type | Method and Description |
---|---|
Incident |
DefaultIncidentHandler.createIncident(IncidentContext context,
String message) |
static Incident |
IncidentHandling.createIncident(String incidentType,
IncidentContext context,
String message) |
Incident |
IncidentHandler.handleIncident(IncidentContext context,
String message)
Handle an incident that arose in the context of an execution.
|
Incident |
DefaultIncidentHandler.handleIncident(IncidentContext context,
String message) |
Constructor and Description |
---|
IncidentContext(Incident incident) |
Modifier and Type | Class and Description |
---|---|
class |
IncidentEntity |
Modifier and Type | Field and Description |
---|---|
protected Incident[] |
ActivityInstanceImpl.incidents |
protected Incident[] |
TransitionInstanceImpl.incidents |
Modifier and Type | Method and Description |
---|---|
Incident |
IncidentManager.findIncidentById(String id) |
Incident[] |
ActivityInstanceImpl.getIncidents() |
Incident[] |
TransitionInstanceImpl.getIncidents() |
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 |
---|---|
void |
ActivityInstanceImpl.setIncidents(Incident[] incidents) |
void |
TransitionInstanceImpl.setIncidents(Incident[] incidents) |
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) |
static ActivityInstanceIncidentDto |
ActivityInstanceIncidentDto.fromIncident(Incident incident) |
protected static ActivityInstanceIncidentDto[] |
ActivityInstanceIncidentDto.fromIncidents(Incident[] incidents) |
Modifier and Type | Method and Description |
---|---|
Incident[] |
ActivityInstance.getIncidents()
the list of currently open incidents
|
Incident[] |
TransitionInstance.getIncidents()
the list of currently open incidents
|
Copyright © 2022. All rights reserved.