Class IncidentDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.runtime.IncidentDto
-
public class IncidentDto extends Object
- Author:
- Roman Smirnov
-
-
Field Summary
Fields Modifier and Type Field Description protected StringactivityIdprotected Stringannotationprotected StringcauseIncidentIdprotected Stringconfigurationprotected StringexecutionIdprotected StringfailedActivityIdprotected Stringidprotected StringincidentMessageprotected DateincidentTimestampprotected StringincidentTypeprotected StringjobDefinitionIdprotected StringprocessDefinitionIdprotected StringprocessInstanceIdprotected StringrootCauseIncidentIdprotected StringtenantId
-
Constructor Summary
Constructors Constructor Description IncidentDto()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IncidentDtofromIncident(Incident incident)StringgetActivityId()StringgetAnnotation()StringgetCauseIncidentId()StringgetConfiguration()StringgetExecutionId()StringgetFailedActivityId()StringgetId()StringgetIncidentMessage()DategetIncidentTimestamp()StringgetIncidentType()StringgetJobDefinitionId()StringgetProcessDefinitionId()StringgetProcessInstanceId()StringgetRootCauseIncidentId()StringgetTenantId()
-
-
-
Field Detail
-
id
protected String id
-
processDefinitionId
protected String processDefinitionId
-
processInstanceId
protected String processInstanceId
-
executionId
protected String executionId
-
incidentTimestamp
protected Date incidentTimestamp
-
incidentType
protected String incidentType
-
activityId
protected String activityId
-
failedActivityId
protected String failedActivityId
-
causeIncidentId
protected String causeIncidentId
-
rootCauseIncidentId
protected String rootCauseIncidentId
-
configuration
protected String configuration
-
incidentMessage
protected String incidentMessage
-
tenantId
protected String tenantId
-
jobDefinitionId
protected String jobDefinitionId
-
annotation
protected String annotation
-
-
Method Detail
-
getId
public String getId()
-
getProcessDefinitionId
public String getProcessDefinitionId()
-
getProcessInstanceId
public String getProcessInstanceId()
-
getExecutionId
public String getExecutionId()
-
getIncidentTimestamp
public Date getIncidentTimestamp()
-
getIncidentType
public String getIncidentType()
-
getActivityId
public String getActivityId()
-
getFailedActivityId
public String getFailedActivityId()
-
getCauseIncidentId
public String getCauseIncidentId()
-
getRootCauseIncidentId
public String getRootCauseIncidentId()
-
getConfiguration
public String getConfiguration()
-
getIncidentMessage
public String getIncidentMessage()
-
getTenantId
public String getTenantId()
-
getJobDefinitionId
public String getJobDefinitionId()
-
getAnnotation
public String getAnnotation()
-
fromIncident
public static IncidentDto fromIncident(Incident incident)
-
-