Package com.flowable.core.app.api
Interface AppIncident
-
- All Known Subinterfaces:
AppIncidentEntity
- All Known Implementing Classes:
AppIncidentEntityImpl
public interface AppIncident
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAppDefinitionKey()reference to the app definition keyDategetCreateTime()the create timestamp of this incidentStringgetId()unique identifierMap<String,Object>getIncidentInfo()Returns the incident info as a MapStringgetScopeDefinitionId()reference to the scope definition id for the incidentStringgetScopeId()reference to the scope id for the incidentStringgetScopeType()reference to the scope type for the incidentStringgetSubScopeId()reference to the sub scope id for the incidentStringgetSubType()reference to the incident sub typeStringgetTenantId()the tenant identifier of this app variableStringgetType()reference to the incident type
-
-
-
Method Detail
-
getId
String getId()
unique identifier
-
getType
String getType()
reference to the incident type
-
getSubType
String getSubType()
reference to the incident sub type
-
getAppDefinitionKey
String getAppDefinitionKey()
reference to the app definition key
-
getScopeDefinitionId
String getScopeDefinitionId()
reference to the scope definition id for the incident
-
getScopeId
String getScopeId()
reference to the scope id for the incident
-
getSubScopeId
String getSubScopeId()
reference to the sub scope id for the incident
-
getScopeType
String getScopeType()
reference to the scope type for the incident
-
getTenantId
String getTenantId()
the tenant identifier of this app variable
-
getCreateTime
Date getCreateTime()
the create timestamp of this incident
-
-