Java Code Examples for org.flowable.engine.ProcessEngine#getFormService()

The following examples show how to use org.flowable.engine.ProcessEngine#getFormService() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AbstractFlowableTestCase.java    From flowable-engine with Apache License 2.0 5 votes vote down vote up
@BeforeEach
public final void initializeServices(ProcessEngine processEngine) {
    processEngineConfiguration = ((ProcessEngineImpl) processEngine).getProcessEngineConfiguration();
    this.processEngine = processEngine;
    repositoryService = processEngine.getRepositoryService();
    runtimeService = processEngine.getRuntimeService();
    taskService = processEngine.getTaskService();
    formService = processEngine.getFormService();
    historyService = processEngine.getHistoryService();
    identityService = processEngine.getIdentityService();
    managementService = processEngine.getManagementService();
    dynamicBpmnService = processEngine.getDynamicBpmnService();
    processMigrationService = processEngine.getProcessMigrationService();
}
 
Example 2
Source File: ProcessEngineServicesAutoConfiguration.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@Bean
@ConditionalOnMissingBean
public FormService formServiceBean(ProcessEngine processEngine) {
    return processEngine.getFormService();
}
 
Example 3
Source File: JPAFlowableEngineConfiguration.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@Bean
public FormService formService(ProcessEngine processEngine) {
    return processEngine.getFormService();
}
 
Example 4
Source File: EngineConfiguration.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@Bean
public FormService formService(ProcessEngine processEngine) {
    return processEngine.getFormService();
}