Package com.flowable.example
Class ExampleAppsAutoConfiguration.ExampleAppsConfiguration.VactionRequestLogicConfiguration
java.lang.Object
com.flowable.example.ExampleAppsAutoConfiguration.ExampleAppsConfiguration.VactionRequestLogicConfiguration
- Enclosing class:
- ExampleAppsAutoConfiguration.ExampleAppsConfiguration
@Configuration(proxyBeanMethods=false) @ConditionalOnClass(VacationRequestFunctions.class) public static class ExampleAppsAutoConfiguration.ExampleAppsConfiguration.VactionRequestLogicConfiguration extends java.lang.Object
-
Constructor Summary
Constructors Constructor Description VactionRequestLogicConfiguration()
-
Method Summary
Modifier and Type Method Description VacationRequestBot
vacationRequestBot(org.flowable.engine.RuntimeService processService, org.flowable.engine.HistoryService processHistoryService, org.flowable.cmmn.api.CmmnRuntimeService caseService, org.flowable.engine.TaskService taskService, com.flowable.core.idm.api.PlatformIdentityService identityService, ConversationService conversationService, MessageService messageService)
Create and expose the vacation request handling bot used for some action definitions to be executed.VacationRequestFunctions
vacationRequestFunctions(org.flowable.engine.RuntimeService processService, org.flowable.cmmn.api.CmmnRuntimeService caseService, com.flowable.core.idm.api.PlatformIdentityService identityService, ConversationService conversationService)
Create and expose the bean supporting the necessary functions for the vacation request sample app.
-
Constructor Details
-
VactionRequestLogicConfiguration
public VactionRequestLogicConfiguration()
-
-
Method Details
-
vacationRequestFunctions
@Bean public VacationRequestFunctions vacationRequestFunctions(org.flowable.engine.RuntimeService processService, org.flowable.cmmn.api.CmmnRuntimeService caseService, com.flowable.core.idm.api.PlatformIdentityService identityService, ConversationService conversationService)Create and expose the bean supporting the necessary functions for the vacation request sample app. -
vacationRequestBot
@Bean public VacationRequestBot vacationRequestBot(org.flowable.engine.RuntimeService processService, @Qualifier("historyService") org.flowable.engine.HistoryService processHistoryService, org.flowable.cmmn.api.CmmnRuntimeService caseService, org.flowable.engine.TaskService taskService, com.flowable.core.idm.api.PlatformIdentityService identityService, ConversationService conversationService, MessageService messageService)Create and expose the vacation request handling bot used for some action definitions to be executed.
-