1 16 package org.springframework.webflow.engine; 17 18 import org.springframework.webflow.execution.FlowExecutionException; 19 import org.springframework.webflow.execution.RequestContext; 20 import org.springframework.webflow.execution.ViewSelection; 21 22 32 public class DecisionState extends TransitionableState { 33 34 41 public DecisionState(Flow flow, String stateId) throws IllegalArgumentException { 42 super(flow, stateId); 43 } 44 45 57 protected ViewSelection doEnter(RequestControlContext context) throws FlowExecutionException { 58 return getRequiredTransition(context).execute(this, context); 59 } 60 } | Popular Tags |