Class HistoricIncidentDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.history.HistoricIncidentDto
-
public class HistoricIncidentDto extends Object
- Author:
- Roman Smirnov
-
-
Field Summary
Fields Modifier and Type Field Description protected StringactivityIdprotected Stringannotationprotected StringcauseIncidentIdprotected Stringconfigurationprotected DatecreateTimeprotected Booleandeletedprotected DateendTimeprotected StringexecutionIdprotected StringfailedActivityIdprotected StringhistoryConfigurationprotected Stringidprotected StringincidentMessageprotected StringincidentTypeprotected StringjobDefinitionIdprotected Booleanopenprotected StringprocessDefinitionIdprotected StringprocessDefinitionKeyprotected StringprocessInstanceIdprotected DateremovalTimeprotected Booleanresolvedprotected StringrootCauseIncidentIdprotected StringrootProcessInstanceIdprotected StringtenantId
-
Constructor Summary
Constructors Constructor Description HistoricIncidentDto()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HistoricIncidentDtofromHistoricIncident(org.camunda.bpm.engine.history.HistoricIncident historicIncident)StringgetActivityId()StringgetAnnotation()StringgetCauseIncidentId()StringgetConfiguration()DategetCreateTime()DategetEndTime()StringgetExecutionId()StringgetFailedActivityId()StringgetHistoryConfiguration()StringgetId()StringgetIncidentMessage()StringgetIncidentType()StringgetJobDefinitionId()StringgetProcessDefinitionId()StringgetProcessDefinitionKey()StringgetProcessInstanceId()DategetRemovalTime()StringgetRootCauseIncidentId()StringgetRootProcessInstanceId()StringgetTenantId()BooleanisDeleted()BooleanisOpen()BooleanisResolved()
-
-
-
Field Detail
-
id
protected String id
-
processDefinitionKey
protected String processDefinitionKey
-
processDefinitionId
protected String processDefinitionId
-
processInstanceId
protected String processInstanceId
-
executionId
protected String executionId
-
rootProcessInstanceId
protected String rootProcessInstanceId
-
createTime
protected Date createTime
-
endTime
protected Date endTime
-
removalTime
protected Date removalTime
-
incidentType
protected String incidentType
-
activityId
protected String activityId
-
failedActivityId
protected String failedActivityId
-
causeIncidentId
protected String causeIncidentId
-
rootCauseIncidentId
protected String rootCauseIncidentId
-
configuration
protected String configuration
-
historyConfiguration
protected String historyConfiguration
-
incidentMessage
protected String incidentMessage
-
tenantId
protected String tenantId
-
jobDefinitionId
protected String jobDefinitionId
-
open
protected Boolean open
-
deleted
protected Boolean deleted
-
resolved
protected Boolean resolved
-
annotation
protected String annotation
-
-
Method Detail
-
getId
public String getId()
-
getProcessDefinitionKey
public String getProcessDefinitionKey()
-
getProcessDefinitionId
public String getProcessDefinitionId()
-
getProcessInstanceId
public String getProcessInstanceId()
-
getExecutionId
public String getExecutionId()
-
getRootProcessInstanceId
public String getRootProcessInstanceId()
-
getCreateTime
public Date getCreateTime()
-
getEndTime
public Date getEndTime()
-
getRemovalTime
public Date getRemovalTime()
-
getIncidentType
public String getIncidentType()
-
getActivityId
public String getActivityId()
-
getFailedActivityId
public String getFailedActivityId()
-
getCauseIncidentId
public String getCauseIncidentId()
-
getRootCauseIncidentId
public String getRootCauseIncidentId()
-
getConfiguration
public String getConfiguration()
-
getHistoryConfiguration
public String getHistoryConfiguration()
-
getIncidentMessage
public String getIncidentMessage()
-
getTenantId
public String getTenantId()
-
getJobDefinitionId
public String getJobDefinitionId()
-
isOpen
public Boolean isOpen()
-
isDeleted
public Boolean isDeleted()
-
isResolved
public Boolean isResolved()
-
getAnnotation
public String getAnnotation()
-
fromHistoricIncident
public static HistoricIncidentDto fromHistoricIncident(org.camunda.bpm.engine.history.HistoricIncident historicIncident)
-
-