Package org.camunda.bpm.engine.history
Interface CleanableHistoricProcessInstanceReportResult
- All Known Implementing Classes:
CleanableHistoricProcessInstanceReportResultEntity
public interface CleanableHistoricProcessInstanceReportResult
This interface defines the result of Cleanable historic process instance report.
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the amount of cleanable historic process instances.long
Returns the amount of finished historic process instances.Returns the history time to live for the selected definition.Returns the process definition id for the selected definition.Returns the process definition key for the selected definition.Returns the process definition name for the selected definition.int
Returns the process definition version for the selected definition.Returns the tenant id of the current process instances.
-
Method Details
-
getProcessDefinitionId
String getProcessDefinitionId()Returns the process definition id for the selected definition. -
getProcessDefinitionKey
String getProcessDefinitionKey()Returns the process definition key for the selected definition. -
getProcessDefinitionName
String getProcessDefinitionName()Returns the process definition name for the selected definition. -
getProcessDefinitionVersion
int getProcessDefinitionVersion()Returns the process definition version for the selected definition. -
getHistoryTimeToLive
Integer getHistoryTimeToLive()Returns the history time to live for the selected definition. -
getFinishedProcessInstanceCount
long getFinishedProcessInstanceCount()Returns the amount of finished historic process instances. -
getCleanableProcessInstanceCount
long getCleanableProcessInstanceCount()Returns the amount of cleanable historic process instances. -
getTenantId
String getTenantId()Returns the tenant id of the current process instances.
-