Uses of Interface
org.camunda.bpm.engine.HistoryService
-
Packages that use HistoryService 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.cdi.impl org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.cfg org.camunda.bpm.engine.impl.test org.camunda.bpm.engine.spring org.camunda.bpm.engine.test Helper classes for testing processes.org.camunda.bpm.qa.performance.engine.framework.activitylog org.camunda.bpm.qa.performance.engine.junit -
-
Uses of HistoryService in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return HistoryService Modifier and Type Method Description HistoryService
ProcessEngineServices. getHistoryService()
Returns the process engine'sHistoryService
. -
Uses of HistoryService in org.camunda.bpm.engine.cdi.impl
Methods in org.camunda.bpm.engine.cdi.impl that return HistoryService Modifier and Type Method Description HistoryService
NamedProcessEngineServicesProducer. historyService(javax.enterprise.inject.spi.InjectionPoint ip)
HistoryService
ProcessEngineServicesProducer. historyService()
-
Uses of HistoryService in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement HistoryService Modifier and Type Class Description class
HistoryServiceImpl
Fields in org.camunda.bpm.engine.impl declared as HistoryService Modifier and Type Field Description protected HistoryService
ProcessEngineImpl. historicDataService
Methods in org.camunda.bpm.engine.impl that return HistoryService Modifier and Type Method Description HistoryService
ProcessEngineImpl. getHistoryService()
-
Uses of HistoryService in org.camunda.bpm.engine.impl.cfg
Fields in org.camunda.bpm.engine.impl.cfg declared as HistoryService Modifier and Type Field Description protected HistoryService
ProcessEngineConfigurationImpl. historyService
Methods in org.camunda.bpm.engine.impl.cfg that return HistoryService Modifier and Type Method Description HistoryService
ProcessEngineConfigurationImpl. getHistoryService()
Methods in org.camunda.bpm.engine.impl.cfg with parameters of type HistoryService Modifier and Type Method Description ProcessEngineConfigurationImpl
ProcessEngineConfigurationImpl. setHistoryService(HistoryService historyService)
-
Uses of HistoryService in org.camunda.bpm.engine.impl.test
Fields in org.camunda.bpm.engine.impl.test declared as HistoryService Modifier and Type Field Description protected HistoryService
AbstractProcessEngineTestCase. historyService
-
Uses of HistoryService in org.camunda.bpm.engine.spring
Methods in org.camunda.bpm.engine.spring that return HistoryService Modifier and Type Method Description HistoryService
SpringProcessEngineServicesConfiguration. getHistoryService()
-
Uses of HistoryService in org.camunda.bpm.engine.test
Fields in org.camunda.bpm.engine.test declared as HistoryService Modifier and Type Field Description protected HistoryService
ProcessEngineTestCase. historicDataService
Deprecated.protected HistoryService
ProcessEngineRule. historyService
protected HistoryService
ProcessEngineTestCase. historyService
Methods in org.camunda.bpm.engine.test that return HistoryService Modifier and Type Method Description HistoryService
ProcessEngineRule. getHistoryService()
Methods in org.camunda.bpm.engine.test with parameters of type HistoryService Modifier and Type Method Description void
ProcessEngineRule. setHistoricDataService(HistoryService historicService)
void
ProcessEngineRule. setHistoryService(HistoryService historyService)
-
Uses of HistoryService in org.camunda.bpm.qa.performance.engine.framework.activitylog
Methods in org.camunda.bpm.qa.performance.engine.framework.activitylog with parameters of type HistoryService Modifier and Type Method Description protected void
ActivityPerfTestWatcher. logActivityResults(PerfTestPass pass, PerfTestRun run, HistoryService historyService)
-
Uses of HistoryService in org.camunda.bpm.qa.performance.engine.junit
Fields in org.camunda.bpm.qa.performance.engine.junit declared as HistoryService Modifier and Type Field Description protected HistoryService
AuthorizationPerformanceTestCase. historyService
protected HistoryService
ProcessEnginePerformanceTestCase. historyService
-