Package org.camunda.bpm.engine.history
Interface CleanableHistoricCaseInstanceReportResult
-
- All Known Implementing Classes:
CleanableHistoricCaseInstanceReportResultEntity
public interface CleanableHistoricCaseInstanceReportResultThis interface defines the result of Historic finished case instance report.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCaseDefinitionId()Returns the case definition id for the selected definition.StringgetCaseDefinitionKey()Returns the case definition key for the selected definition.StringgetCaseDefinitionName()Returns the case definition name for the selected definition.intgetCaseDefinitionVersion()Returns the case definition version for the selected definition.longgetCleanableCaseInstanceCount()Returns the amount of cleanable historic case instances.longgetFinishedCaseInstanceCount()Returns the amount of finished historic case instances.IntegergetHistoryTimeToLive()Returns the history time to live for the selected definition.StringgetTenantId()Returns the tenant id of the current case instances.
-
-
-
Method Detail
-
getCaseDefinitionId
String getCaseDefinitionId()
Returns the case definition id for the selected definition.
-
getCaseDefinitionKey
String getCaseDefinitionKey()
Returns the case definition key for the selected definition.
-
getCaseDefinitionName
String getCaseDefinitionName()
Returns the case definition name for the selected definition.
-
getCaseDefinitionVersion
int getCaseDefinitionVersion()
Returns the case definition version for the selected definition.
-
getHistoryTimeToLive
Integer getHistoryTimeToLive()
Returns the history time to live for the selected definition.
-
getFinishedCaseInstanceCount
long getFinishedCaseInstanceCount()
Returns the amount of finished historic case instances.
-
getCleanableCaseInstanceCount
long getCleanableCaseInstanceCount()
Returns the amount of cleanable historic case instances.
-
getTenantId
String getTenantId()
Returns the tenant id of the current case instances.
-
-