1 16 package org.springframework.webflow.executor; 17 18 import org.springframework.webflow.context.ExternalContext; 19 import org.springframework.webflow.core.FlowException; 20 21 33 public interface FlowExecutor { 34 35 45 public ResponseInstruction launch(String flowDefinitionId, ExternalContext context) throws FlowException; 46 47 59 public ResponseInstruction resume(String flowExecutionKey, String eventId, ExternalContext context) 60 throws FlowException; 61 62 75 public ResponseInstruction refresh(String flowExecutionKey, ExternalContext context) throws FlowException; 76 } | Popular Tags |