org.flowable.engine.FormService Java Examples

The following examples show how to use org.flowable.engine.FormService. 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: FormResource.java    From plumdo-work with Apache License 2.0 4 votes vote down vote up
@Autowired
public FormResource(FormService formService) {
    this.formService = formService;
}
 
Example #2
Source File: ActivitiRule.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
public FormService getFormService() {
    return formService;
}
 
Example #3
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 #4
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 #5
Source File: JPAFlowableEngineConfiguration.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@Bean
public org.flowable.form.api.FormService formEngineFormService(FormEngine formEngine) {
    return formEngine.getFormService();
}
 
Example #6
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();
}
 
Example #7
Source File: EngineConfiguration.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@Bean
public org.flowable.form.api.FormService formEngineFormService(FormEngine formEngine) {
    return formEngine.getFormService();
}
 
Example #8
Source File: ProcessEngineImpl.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@Override
public FormService getFormService() {
    return formService;
}
 
Example #9
Source File: FlowableRule.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
public FormService getFormService() {
    return formService;
}
 
Example #10
Source File: FlowableServices.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@Produces
@Named
@ApplicationScoped
public FormService formService() {
    return processEngine().getFormService();
}
 
Example #11
Source File: DomainProcessEngine.java    From syncope with Apache License 2.0 4 votes vote down vote up
@Override
public FormService getFormService() {
    return engines.get(AuthContextUtils.getDomain()).getFormService();
}