Search in sources :

Example 1 with StaticFlowExecutionListenerLoader

use of org.springframework.webflow.execution.factory.StaticFlowExecutionListenerLoader in project cas by apereo.

the class WebflowExecutorFactory method buildFlowExecutorViaServerSessionBindingExecution.

private FlowExecutor buildFlowExecutorViaServerSessionBindingExecution() {
    val conversationManager = new SessionBindingConversationManager();
    val session = webflowProperties.getSession();
    conversationManager.setLockTimeoutSeconds((int) Beans.newDuration(session.getLockTimeout()).getSeconds());
    conversationManager.setMaxConversations(session.getMaxConversations());
    val executionFactory = new FlowExecutionImplFactory();
    executionFactory.setExecutionListenerLoader(new StaticFlowExecutionListenerLoader(executionListeners));
    val flowExecutionSnapshotFactory = new SerializedFlowExecutionSnapshotFactory(executionFactory, this.flowDefinitionRegistry);
    flowExecutionSnapshotFactory.setCompress(session.isCompress());
    val repository = new DefaultFlowExecutionRepository(conversationManager, flowExecutionSnapshotFactory);
    executionFactory.setExecutionKeyFactory(repository);
    return new FlowExecutorImpl(this.flowDefinitionRegistry, executionFactory, repository);
}
Also used : lombok.val(lombok.val) DefaultFlowExecutionRepository(org.springframework.webflow.execution.repository.impl.DefaultFlowExecutionRepository) SessionBindingConversationManager(org.springframework.webflow.conversation.impl.SessionBindingConversationManager) SerializedFlowExecutionSnapshotFactory(org.springframework.webflow.execution.repository.snapshot.SerializedFlowExecutionSnapshotFactory) StaticFlowExecutionListenerLoader(org.springframework.webflow.execution.factory.StaticFlowExecutionListenerLoader) FlowExecutorImpl(org.springframework.webflow.executor.FlowExecutorImpl) FlowExecutionImplFactory(org.springframework.webflow.engine.impl.FlowExecutionImplFactory)

Example 2 with StaticFlowExecutionListenerLoader

use of org.springframework.webflow.execution.factory.StaticFlowExecutionListenerLoader in project cas by apereo.

the class WebflowExecutorFactory method buildFlowExecutorViaClientFlowExecution.

private FlowExecutor buildFlowExecutorViaClientFlowExecution() {
    val repository = new ClientFlowExecutionRepository();
    repository.setFlowDefinitionLocator(this.flowDefinitionRegistry);
    repository.setTranscoder(getWebflowStateTranscoder());
    val factory = new FlowExecutionImplFactory();
    factory.setExecutionKeyFactory(repository);
    factory.setExecutionListenerLoader(new StaticFlowExecutionListenerLoader());
    repository.setFlowExecutionFactory(factory);
    factory.setExecutionListenerLoader(new StaticFlowExecutionListenerLoader(executionListeners));
    return new FlowExecutorImpl(this.flowDefinitionRegistry, factory, repository);
}
Also used : lombok.val(lombok.val) StaticFlowExecutionListenerLoader(org.springframework.webflow.execution.factory.StaticFlowExecutionListenerLoader) FlowExecutorImpl(org.springframework.webflow.executor.FlowExecutorImpl) FlowExecutionImplFactory(org.springframework.webflow.engine.impl.FlowExecutionImplFactory)

Aggregations

lombok.val (lombok.val)2 FlowExecutionImplFactory (org.springframework.webflow.engine.impl.FlowExecutionImplFactory)2 StaticFlowExecutionListenerLoader (org.springframework.webflow.execution.factory.StaticFlowExecutionListenerLoader)2 FlowExecutorImpl (org.springframework.webflow.executor.FlowExecutorImpl)2 SessionBindingConversationManager (org.springframework.webflow.conversation.impl.SessionBindingConversationManager)1 DefaultFlowExecutionRepository (org.springframework.webflow.execution.repository.impl.DefaultFlowExecutionRepository)1 SerializedFlowExecutionSnapshotFactory (org.springframework.webflow.execution.repository.snapshot.SerializedFlowExecutionSnapshotFactory)1