public class IncidentEntity extends Object implements Incident, DbEntity, HasDbRevision, HasDbReferences
Modifier and Type | Field and Description |
---|---|
protected String |
activityId |
protected String |
annotation |
protected String |
causeIncidentId |
protected String |
configuration |
protected String |
executionId |
protected String |
failedActivityId |
protected String |
historyConfiguration |
protected String |
id |
protected String |
incidentMessage |
protected Date |
incidentTimestamp |
protected String |
incidentType |
protected String |
jobDefinitionId |
protected static IncidentLogger |
LOG |
protected String |
processDefinitionId |
protected String |
processInstanceId |
protected int |
revision |
protected String |
rootCauseIncidentId |
protected String |
tenantId |
EXTERNAL_TASK_HANDLER_TYPE, FAILED_JOB_HANDLER_TYPE
Constructor and Description |
---|
IncidentEntity() |
Modifier and Type | Method and Description |
---|---|
protected static IncidentEntity |
create(String incidentType) |
static IncidentEntity |
createAndInsertIncident(String incidentType,
IncidentContext context,
String message) |
List<IncidentEntity> |
createRecursiveIncidents() |
protected void |
createRecursiveIncidents(String rootCauseIncidentId,
List<IncidentEntity> createdIncidents)
Instantiate recursive a new incident a super execution
(i.e.
|
void |
delete() |
boolean |
equals(Object obj) |
protected void |
fireHistoricIncidentEvent(HistoryEventType eventType) |
String |
getActivityId()
Returns the id of the activity of the process instance
on which this incident has happened.
|
String |
getAnnotation()
Returns the annotation of this incident
|
String |
getCauseIncidentId()
Returns the id of the incident on which this incident
has been triggered.
|
String |
getConfiguration()
Returns the payload of this incident.
|
ExecutionEntity |
getExecution() |
String |
getExecutionId()
Returns the specific execution on which this
incident has happened.
|
String |
getFailedActivityId()
Returns the id of the activity on which the last exception occurred.
|
String |
getHistoryConfiguration()
Returns the history payload of this incident.
|
String |
getId()
Returns the unique identifier for this incident.
|
String |
getIncidentMessage()
Returns the incident message.
|
Date |
getIncidentTimestamp()
Time when the incident happened.
|
String |
getIncidentType()
Returns the type of this incident to identify the
kind of incident.
|
String |
getJobDefinitionId()
Returns the id of the job definition the incident belongs to.
|
Object |
getPersistentState()
Returns a representation of the object,
as would be stored in the database.
|
ProcessDefinitionEntity |
getProcessDefinition() |
String |
getProcessDefinitionId()
Returns the id of the process definition of this
process instance on which the incident has happened.
|
String |
getProcessInstanceId()
Returns the specific process instance on which this
incident has happened.
|
Map<String,Class> |
getReferencedEntitiesIdAndClass()
Scope: IN-MEMORY references
|
Set<String> |
getReferencedEntityIds()
Scope: IN-MEMORY references
|
int |
getRevision() |
int |
getRevisionNext() |
String |
getRootCauseIncidentId()
Returns the id of the root incident on which
this transitive incident has been triggered.
|
String |
getTenantId()
Returns the id of the tenant this incident belongs to.
|
int |
hashCode() |
protected static void |
insert(IncidentEntity incident) |
protected void |
remove(boolean resolved) |
void |
resolve() |
void |
setActivityId(String activityId) |
void |
setAnnotation(String annotation) |
void |
setCauseIncidentId(String causeIncidentId) |
void |
setConfiguration(String configuration) |
void |
setExecution(ExecutionEntity execution) |
void |
setExecutionId(String executionId) |
void |
setFailedActivityId(String failedActivityId) |
void |
setHistoryConfiguration(String historyConfiguration) |
void |
setId(String id) |
void |
setIncidentMessage(String incidentMessage) |
void |
setIncidentTimestamp(Date incidentTimestamp) |
void |
setIncidentType(String incidentType) |
void |
setJobDefinitionId(String jobDefinitionId) |
void |
setProcessDefinitionId(String processDefinitionId) |
void |
setProcessInstanceId(String processInstanceId) |
void |
setRevision(int revision) |
void |
setRootCauseIncidentId(String rootCauseIncidentId) |
void |
setTenantId(String tenantId) |
String |
toString() |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
getDependentEntities
protected static final IncidentLogger LOG
protected int revision
protected String id
protected Date incidentTimestamp
protected String incidentType
protected String executionId
protected String activityId
protected String processInstanceId
protected String processDefinitionId
protected String causeIncidentId
protected String rootCauseIncidentId
protected String configuration
protected String incidentMessage
protected String tenantId
protected String jobDefinitionId
protected String historyConfiguration
protected String failedActivityId
protected String annotation
public List<IncidentEntity> createRecursiveIncidents()
protected void createRecursiveIncidents(String rootCauseIncidentId, List<IncidentEntity> createdIncidents)
public static IncidentEntity createAndInsertIncident(String incidentType, IncidentContext context, String message)
protected static IncidentEntity create(String incidentType)
protected static void insert(IncidentEntity incident)
public void delete()
public void resolve()
protected void remove(boolean resolved)
protected void fireHistoricIncidentEvent(HistoryEventType eventType)
public Set<String> getReferencedEntityIds()
HasDbReferences
Scope: IN-MEMORY references
getReferencedEntityIds
in interface HasDbReferences
public Map<String,Class> getReferencedEntitiesIdAndClass()
HasDbReferences
Scope: IN-MEMORY references
getReferencedEntitiesIdAndClass
in interface HasDbReferences
public String getId()
Incident
public Date getIncidentTimestamp()
Incident
getIncidentTimestamp
in interface Incident
public void setIncidentTimestamp(Date incidentTimestamp)
public String getIncidentType()
Incident
For example: failedJobs
will be returned
in the case of an incident, which identify failed job
during the execution of a process instance.
getIncidentType
in interface Incident
Incident.FAILED_JOB_HANDLER_TYPE
,
Incident.EXTERNAL_TASK_HANDLER_TYPE
public void setIncidentType(String incidentType)
public String getIncidentMessage()
Incident
getIncidentMessage
in interface Incident
public void setIncidentMessage(String incidentMessage)
public String getExecutionId()
Incident
getExecutionId
in interface Incident
public void setExecutionId(String executionId)
public String getActivityId()
Incident
getActivityId
in interface Incident
public void setActivityId(String activityId)
public String getProcessInstanceId()
Incident
getProcessInstanceId
in interface Incident
public void setProcessInstanceId(String processInstanceId)
public ProcessDefinitionEntity getProcessDefinition()
public String getProcessDefinitionId()
Incident
getProcessDefinitionId
in interface Incident
public void setProcessDefinitionId(String processDefinitionId)
public String getCauseIncidentId()
Incident
getCauseIncidentId
in interface Incident
public void setCauseIncidentId(String causeIncidentId)
public String getRootCauseIncidentId()
Incident
getRootCauseIncidentId
in interface Incident
public void setRootCauseIncidentId(String rootCauseIncidentId)
public String getConfiguration()
Incident
getConfiguration
in interface Incident
public void setConfiguration(String configuration)
public String getTenantId()
Incident
null
if the incident belongs to no single tenant.getTenantId
in interface Incident
public void setTenantId(String tenantId)
public void setJobDefinitionId(String jobDefinitionId)
public String getJobDefinitionId()
Incident
null
if the incident belongs to no job definition.getJobDefinitionId
in interface Incident
public void setExecution(ExecutionEntity execution)
public ExecutionEntity getExecution()
public Object getPersistentState()
DbEntity
getPersistentState
in interface DbEntity
public void setRevision(int revision)
setRevision
in interface HasDbRevision
public int getRevision()
getRevision
in interface HasDbRevision
public int getRevisionNext()
getRevisionNext
in interface HasDbRevision
public String getHistoryConfiguration()
Incident
getHistoryConfiguration
in interface Incident
public void setHistoryConfiguration(String historyConfiguration)
public String getFailedActivityId()
Incident
getFailedActivityId
in interface Incident
public void setFailedActivityId(String failedActivityId)
public String getAnnotation()
Incident
getAnnotation
in interface Incident
public void setAnnotation(String annotation)
Copyright © 2022. All rights reserved.