Package org.springframework.webflow.engine.impl

Examples of org.springframework.webflow.engine.impl.FlowExecutionImpl.start()


    factory = new SerializedFlowExecutionSnapshotFactory(executionFactory, locator);
  }

  public void testCreateSnapshot() {
    FlowExecutionImpl flowExecution = (FlowExecutionImpl) executionFactory.createFlowExecution(flow);
    flowExecution.start(null, new MockExternalContext());
    flowExecution.getActiveSession().getScope().put("foo", "bar");
    FlowExecutionSnapshot snapshot = factory.createSnapshot(flowExecution);
    FlowExecutionImpl flowExecution2 = (FlowExecutionImpl) factory.restoreExecution(snapshot, "myFlow", null,
        flowExecution.getConversationScope(), executionKeyFactory);
    assertNotSame(flowExecution, flowExecution2);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.