Package org.camunda.bpm.engine.runtime
Interface Incident
-
- All Known Implementing Classes:
IncidentEntity
public interface IncidentAnIncidentrepresents a failure in the execution of a process instance.A possible failure could be for example a failed
Jobduring the execution, so that the job retry is equal zero (job.retries == 0). In that case an incident will be created an theincidentTypewill be set tofailedJobs.Furthermore, it is possible to create custom incidents with an individually
incidentTypeto indicate a failure in the execution.- Author:
- roman.smirnov
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringEXTERNAL_TASK_HANDLER_TYPEHandler type for incidents created on external task failurestatic java.lang.StringFAILED_JOB_HANDLER_TYPEHandler type for incidents created on job execution failure
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetActivityId()Returns the id of the activity of the process instance on which this incident has happened.java.lang.StringgetAnnotation()Returns the annotation of this incidentjava.lang.StringgetCauseIncidentId()Returns the id of the incident on which this incident has been triggered.java.lang.StringgetConfiguration()Returns the payload of this incident.java.lang.StringgetExecutionId()Returns the specific execution on which this incident has happened.java.lang.StringgetFailedActivityId()Returns the id of the activity on which the last exception occurred.java.lang.StringgetHistoryConfiguration()Returns the history payload of this incident.java.lang.StringgetId()Returns the unique identifier for this incident.java.lang.StringgetIncidentMessage()Returns the incident message.java.util.DategetIncidentTimestamp()Time when the incident happened.java.lang.StringgetIncidentType()Returns the type of this incident to identify the kind of incident.java.lang.StringgetJobDefinitionId()Returns the id of the job definition the incident belongs to.java.lang.StringgetProcessDefinitionId()Returns the id of the process definition of this process instance on which the incident has happened.java.lang.StringgetProcessInstanceId()Returns the specific process instance on which this incident has happened.java.lang.StringgetRootCauseIncidentId()Returns the id of the root incident on which this transitive incident has been triggered.java.lang.StringgetTenantId()Returns the id of the tenant this incident belongs to.
-
-
-
Field Detail
-
FAILED_JOB_HANDLER_TYPE
static final java.lang.String FAILED_JOB_HANDLER_TYPE
Handler type for incidents created on job execution failure- See Also:
- Constant Field Values
-
EXTERNAL_TASK_HANDLER_TYPE
static final java.lang.String EXTERNAL_TASK_HANDLER_TYPE
Handler type for incidents created on external task failure- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
java.lang.String getId()
Returns the unique identifier for this incident.
-
getIncidentTimestamp
java.util.Date getIncidentTimestamp()
Time when the incident happened.
-
getIncidentType
java.lang.String getIncidentType()
Returns the type of this incident to identify the kind of incident.For example:
failedJobswill be returned in the case of an incident, which identify failed job during the execution of a process instance.
-
getIncidentMessage
java.lang.String getIncidentMessage()
Returns the incident message.
-
getExecutionId
java.lang.String getExecutionId()
Returns the specific execution on which this incident has happened.
-
getActivityId
java.lang.String getActivityId()
Returns the id of the activity of the process instance on which this incident has happened.
-
getFailedActivityId
java.lang.String getFailedActivityId()
Returns the id of the activity on which the last exception occurred.
-
getProcessInstanceId
java.lang.String getProcessInstanceId()
Returns the specific process instance on which this incident has happened.
-
getProcessDefinitionId
java.lang.String getProcessDefinitionId()
Returns the id of the process definition of this process instance on which the incident has happened.
-
getCauseIncidentId
java.lang.String getCauseIncidentId()
Returns the id of the incident on which this incident has been triggered.
-
getRootCauseIncidentId
java.lang.String getRootCauseIncidentId()
Returns the id of the root incident on which this transitive incident has been triggered.
-
getConfiguration
java.lang.String getConfiguration()
Returns the payload of this incident.
-
getTenantId
java.lang.String getTenantId()
Returns the id of the tenant this incident belongs to. Can benullif the incident belongs to no single tenant.
-
getJobDefinitionId
java.lang.String getJobDefinitionId()
Returns the id of the job definition the incident belongs to. Can benullif the incident belongs to no job definition.
-
getHistoryConfiguration
java.lang.String getHistoryConfiguration()
Returns the history payload of this incident.
-
getAnnotation
java.lang.String getAnnotation()
Returns the annotation of this incident
-
-