Package org.camunda.bpm.engine
Interface ProcessEngineServices
- All Known Subinterfaces:
ProcessEngine
- All Known Implementing Classes:
ProcessEngineExtension
,ProcessEngineImpl
,ProcessEngineRule
,SpringProcessEngineServicesConfiguration
,UpgradeTestRule
public interface ProcessEngineServices
Base interface providing access to the process engine's public API services.
- Author:
- Daniel Meyer
-
Method Summary
Modifier and TypeMethodDescriptionReturns the process engine'sAuthorizationService
.Returns the engine'sCaseService
.Returns the engine'sDecisionService
.Returns the engine'sExternalTaskService
.Returns the engine'sFilterService
.Returns the process engine'sFormService
.Returns the process engine'sHistoryService
.Returns the process engine'sIdentityService
.Returns the process engine'sManagementService
.Returns the process engine'sRepositoryService
.Returns the process engine'sRuntimeService
.Returns the process engine'sTaskService
.
-
Method Details
-
getRuntimeService
RuntimeService getRuntimeService()Returns the process engine'sRuntimeService
.- Returns:
- the
RuntimeService
object.
-
getRepositoryService
RepositoryService getRepositoryService()Returns the process engine'sRepositoryService
.- Returns:
- the
RepositoryService
object.
-
getFormService
FormService getFormService()Returns the process engine'sFormService
.- Returns:
- the
FormService
object.
-
getTaskService
TaskService getTaskService()Returns the process engine'sTaskService
.- Returns:
- the
TaskService
object.
-
getHistoryService
HistoryService getHistoryService()Returns the process engine'sHistoryService
.- Returns:
- the
HistoryService
object.
-
getIdentityService
IdentityService getIdentityService()Returns the process engine'sIdentityService
.- Returns:
- the
IdentityService
object.
-
getManagementService
ManagementService getManagementService()Returns the process engine'sManagementService
.- Returns:
- the
ManagementService
object.
-
getAuthorizationService
AuthorizationService getAuthorizationService()Returns the process engine'sAuthorizationService
.- Returns:
- the
AuthorizationService
object.
-
getCaseService
CaseService getCaseService()Returns the engine'sCaseService
.- Returns:
- the
CaseService
object.
-
getFilterService
FilterService getFilterService()Returns the engine'sFilterService
.- Returns:
- the
FilterService
object.
-
getExternalTaskService
ExternalTaskService getExternalTaskService()Returns the engine'sExternalTaskService
.- Returns:
- the
ExternalTaskService
object.
-
getDecisionService
DecisionService getDecisionService()Returns the engine'sDecisionService
.- Returns:
- the
DecisionService
object.
-