Package org.camunda.bpm.engine.history
Interface CleanableHistoricDecisionInstanceReportResult
-
- All Known Implementing Classes:
CleanableHistoricDecisionInstanceReportResultEntity
public interface CleanableHistoricDecisionInstanceReportResultThis interface defines the result of Cleanable historic decision instance report.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetCleanableDecisionInstanceCount()Returns the amount of cleanable historic decision instances.java.lang.StringgetDecisionDefinitionId()Returns the decision definition id for the selected definition.java.lang.StringgetDecisionDefinitionKey()Returns the decision definition key for the selected definition.java.lang.StringgetDecisionDefinitionName()Returns the decision definition name for the selected definition.intgetDecisionDefinitionVersion()Returns the decision definition version for the selected definition.longgetFinishedDecisionInstanceCount()Returns the amount of finished historic decision instances.java.lang.IntegergetHistoryTimeToLive()Returns the history time to live for the selected definition.java.lang.StringgetTenantId()Returns the tenant id of the current decision instances.
-
-
-
Method Detail
-
getDecisionDefinitionId
java.lang.String getDecisionDefinitionId()
Returns the decision definition id for the selected definition.
-
getDecisionDefinitionKey
java.lang.String getDecisionDefinitionKey()
Returns the decision definition key for the selected definition.
-
getDecisionDefinitionName
java.lang.String getDecisionDefinitionName()
Returns the decision definition name for the selected definition.
-
getDecisionDefinitionVersion
int getDecisionDefinitionVersion()
Returns the decision definition version for the selected definition.
-
getHistoryTimeToLive
java.lang.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
java.lang.String getTenantId()
Returns the tenant id of the current decision instances.
-
-