Package org.camunda.bpm.engine.cdi.impl
Class ProcessEngineServicesProducer
- java.lang.Object
-
- org.camunda.bpm.engine.cdi.impl.ProcessEngineServicesProducer
-
public class ProcessEngineServicesProducer extends Object
Makes the managed process engine and the provided services available for injection- Author:
- Daniel Meyer, Falko Menge
-
-
Constructor Summary
Constructors Constructor Description ProcessEngineServicesProducer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.camunda.bpm.engine.AuthorizationServiceauthorizationService()org.camunda.bpm.engine.CaseServicecaseService()org.camunda.bpm.engine.DecisionServicedecisionService()org.camunda.bpm.engine.ExternalTaskServiceexternalTaskService()org.camunda.bpm.engine.FilterServicefilterService()org.camunda.bpm.engine.FormServiceformService()org.camunda.bpm.engine.HistoryServicehistoryService()org.camunda.bpm.engine.IdentityServiceidentityService()org.camunda.bpm.engine.ManagementServicemanagementService()org.camunda.bpm.engine.ProcessEngineprocessEngine()org.camunda.bpm.engine.RepositoryServicerepositoryService()org.camunda.bpm.engine.RuntimeServiceruntimeService()org.camunda.bpm.engine.TaskServicetaskService()
-
-
-
Method Detail
-
processEngine
@Produces @Named @ApplicationScoped public org.camunda.bpm.engine.ProcessEngine processEngine()
-
runtimeService
@Produces @Named @ApplicationScoped public org.camunda.bpm.engine.RuntimeService runtimeService()
-
taskService
@Produces @Named @ApplicationScoped public org.camunda.bpm.engine.TaskService taskService()
-
repositoryService
@Produces @Named @ApplicationScoped public org.camunda.bpm.engine.RepositoryService repositoryService()
-
formService
@Produces @Named @ApplicationScoped public org.camunda.bpm.engine.FormService formService()
-
historyService
@Produces @Named @ApplicationScoped public org.camunda.bpm.engine.HistoryService historyService()
-
identityService
@Produces @Named @ApplicationScoped public org.camunda.bpm.engine.IdentityService identityService()
-
managementService
@Produces @Named @ApplicationScoped public org.camunda.bpm.engine.ManagementService managementService()
-
authorizationService
@Produces @Named @ApplicationScoped public org.camunda.bpm.engine.AuthorizationService authorizationService()
-
filterService
@Produces @Named @ApplicationScoped public org.camunda.bpm.engine.FilterService filterService()
-
externalTaskService
@Produces @Named @ApplicationScoped public org.camunda.bpm.engine.ExternalTaskService externalTaskService()
-
caseService
@Produces @Named @ApplicationScoped public org.camunda.bpm.engine.CaseService caseService()
-
decisionService
@Produces @Named @ApplicationScoped public org.camunda.bpm.engine.DecisionService decisionService()
-
-