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 
RuntimeServiceobject. 
 - 
getRepositoryService
RepositoryService getRepositoryService()Returns the process engine'sRepositoryService.- Returns:
 - the 
RepositoryServiceobject. 
 - 
getFormService
FormService getFormService()Returns the process engine'sFormService.- Returns:
 - the 
FormServiceobject. 
 - 
getTaskService
TaskService getTaskService()Returns the process engine'sTaskService.- Returns:
 - the 
TaskServiceobject. 
 - 
getHistoryService
HistoryService getHistoryService()Returns the process engine'sHistoryService.- Returns:
 - the 
HistoryServiceobject. 
 - 
getIdentityService
IdentityService getIdentityService()Returns the process engine'sIdentityService.- Returns:
 - the 
IdentityServiceobject. 
 - 
getManagementService
ManagementService getManagementService()Returns the process engine'sManagementService.- Returns:
 - the 
ManagementServiceobject. 
 - 
getAuthorizationService
AuthorizationService getAuthorizationService()Returns the process engine'sAuthorizationService.- Returns:
 - the 
AuthorizationServiceobject. 
 - 
getCaseService
CaseService getCaseService()Returns the engine'sCaseService.- Returns:
 - the 
CaseServiceobject. 
 - 
getFilterService
FilterService getFilterService()Returns the engine'sFilterService.- Returns:
 - the 
FilterServiceobject. 
 - 
getExternalTaskService
ExternalTaskService getExternalTaskService()Returns the engine'sExternalTaskService.- Returns:
 - the 
ExternalTaskServiceobject. 
 - 
getDecisionService
DecisionService getDecisionService()Returns the engine'sDecisionService.- Returns:
 - the 
DecisionServiceobject. 
 
 -