Uses of Interface
org.camunda.bpm.engine.history.CleanableHistoricProcessInstanceReport
-
Packages that use CleanableHistoricProcessInstanceReport Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s and the relations between them
ManagementService
: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService
: Exposes information about ongoing and past process instances.
FormService
: Access to form data and rendered forms for starting new process instances and completing tasks.org.camunda.bpm.engine.history Classes related to theHistoryService
.org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.rest.dto.history -
-
Uses of CleanableHistoricProcessInstanceReport in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return CleanableHistoricProcessInstanceReport Modifier and Type Method Description CleanableHistoricProcessInstanceReport
HistoryService. createCleanableHistoricProcessInstanceReport()
Creates a new programmatic query to create a cleanable historic process instance report. -
Uses of CleanableHistoricProcessInstanceReport in org.camunda.bpm.engine.history
Methods in org.camunda.bpm.engine.history that return CleanableHistoricProcessInstanceReport Modifier and Type Method Description CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReport. compact()
Only selects historic process instances which have more than zero finished instances.CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReport. orderByFinished()
Order by finished process instances amount (needs to be followed byQuery.asc()
orQuery.desc()
).CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReport. processDefinitionIdIn(java.lang.String... processDefinitionIds)
Only takes historic process instances into account for the given process definition ids.CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReport. processDefinitionKeyIn(java.lang.String... processDefinitionKeys)
Only takes historic process instances into account for the given process definition keys.CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReport. tenantIdIn(java.lang.String... tenantIds)
Only select historic process instances with one of the given tenant ids.CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReport. withoutTenantId()
Only selects historic process instances which have no tenant id. -
Uses of CleanableHistoricProcessInstanceReport in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement CleanableHistoricProcessInstanceReport Modifier and Type Class Description class
CleanableHistoricProcessInstanceReportImpl
Methods in org.camunda.bpm.engine.impl that return CleanableHistoricProcessInstanceReport Modifier and Type Method Description CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReportImpl. compact()
CleanableHistoricProcessInstanceReport
HistoryServiceImpl. createCleanableHistoricProcessInstanceReport()
CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReportImpl. orderByFinished()
CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReportImpl. processDefinitionIdIn(java.lang.String... processDefinitionIds)
CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReportImpl. processDefinitionKeyIn(java.lang.String... processDefinitionKeys)
CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReportImpl. tenantIdIn(java.lang.String... tenantIds)
CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReportImpl. withoutTenantId()
-
Uses of CleanableHistoricProcessInstanceReport in org.camunda.bpm.engine.rest.dto.history
Methods in org.camunda.bpm.engine.rest.dto.history that return CleanableHistoricProcessInstanceReport Modifier and Type Method Description protected CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReportDto. createNewQuery(ProcessEngine engine)
protected CleanableHistoricProcessInstanceReport
CleanableHistoricProcessInstanceReportResultDto. createNewReportQuery(ProcessEngine engine)
Methods in org.camunda.bpm.engine.rest.dto.history with parameters of type CleanableHistoricProcessInstanceReport Modifier and Type Method Description protected void
CleanableHistoricProcessInstanceReportDto. applyFilters(CleanableHistoricProcessInstanceReport query)
protected void
CleanableHistoricProcessInstanceReportDto. applySortBy(CleanableHistoricProcessInstanceReport query, java.lang.String sortBy, java.util.Map<java.lang.String,java.lang.Object> parameters, ProcessEngine engine)
-