Package org.camunda.bpm.engine.cdi.impl
Class ProcessEngineServicesProducer
java.lang.Object
org.camunda.bpm.engine.cdi.impl.ProcessEngineServicesProducer
Makes the managed process engine and the provided services available for injection
- Author:
- Daniel Meyer, Falko Menge
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.camunda.bpm.engine.AuthorizationServiceorg.camunda.bpm.engine.CaseServiceorg.camunda.bpm.engine.DecisionServiceorg.camunda.bpm.engine.ExternalTaskServiceorg.camunda.bpm.engine.FilterServiceorg.camunda.bpm.engine.FormServiceorg.camunda.bpm.engine.HistoryServiceorg.camunda.bpm.engine.IdentityServiceorg.camunda.bpm.engine.ManagementServiceorg.camunda.bpm.engine.ProcessEngineorg.camunda.bpm.engine.RepositoryServiceorg.camunda.bpm.engine.RuntimeServiceorg.camunda.bpm.engine.TaskService
-
Constructor Details
-
ProcessEngineServicesProducer
public ProcessEngineServicesProducer()
-
-
Method Details
-
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()
-