Package org.camunda.bpm.engine.history
Interface CleanableHistoricDecisionInstanceReportResult
-
- All Known Implementing Classes:
CleanableHistoricDecisionInstanceReportResultEntity
public interface CleanableHistoricDecisionInstanceReportResult
This interface defines the result of Cleanable historic decision instance report.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCleanableDecisionInstanceCount()
Returns the amount of cleanable historic decision instances.String
getDecisionDefinitionId()
Returns the decision definition id for the selected definition.String
getDecisionDefinitionKey()
Returns the decision definition key for the selected definition.String
getDecisionDefinitionName()
Returns the decision definition name for the selected definition.int
getDecisionDefinitionVersion()
Returns the decision definition version for the selected definition.long
getFinishedDecisionInstanceCount()
Returns the amount of finished historic decision instances.Integer
getHistoryTimeToLive()
Returns the history time to live for the selected definition.String
getTenantId()
Returns the tenant id of the current decision instances.
-
-
-
Method Detail
-
getDecisionDefinitionId
String getDecisionDefinitionId()
Returns the decision definition id for the selected definition.
-
getDecisionDefinitionKey
String getDecisionDefinitionKey()
Returns the decision definition key for the selected definition.
-
getDecisionDefinitionName
String getDecisionDefinitionName()
Returns the decision definition name for the selected definition.
-
getDecisionDefinitionVersion
int getDecisionDefinitionVersion()
Returns the decision definition version for the selected definition.
-
getHistoryTimeToLive
Integer getHistoryTimeToLive()
Returns the history time to live for the selected definition.
-
getFinishedDecisionInstanceCount
long getFinishedDecisionInstanceCount()
Returns the amount of finished historic decision instances.
-
getCleanableDecisionInstanceCount
long getCleanableDecisionInstanceCount()
Returns the amount of cleanable historic decision instances.
-
getTenantId
String getTenantId()
Returns the tenant id of the current decision instances.
-
-