Uses of Class
org.springframework.webflow.engine.builder.FlowArtifactLookupException

Packages that use FlowArtifactLookupException
org.springframework.webflow.engine.builder The flow builder subsystem for building and assembling executable flow definitions. 
 

Uses of FlowArtifactLookupException in org.springframework.webflow.engine.builder
 

Methods in org.springframework.webflow.engine.builder that throw FlowArtifactLookupException
protected  Action AbstractFlowBuilder.action(java.lang.String id)
          Resolves the action with the specified id.
protected  Action AbstractFlowBuilder.action(java.lang.String beanId, org.springframework.binding.method.MethodSignature methodSignature)
          Creates a bean invoking action that invokes the method identified by the signature on the bean associated with the action identifier.
protected  Action AbstractFlowBuilder.action(java.lang.String beanId, org.springframework.binding.method.MethodSignature methodSignature, ActionResultExposer resultExposer)
          Creates a bean invoking action that invokes the method identified by the signature on the bean associated with the action identifier.
protected  FlowAttributeMapper AbstractFlowBuilder.attributeMapper(java.lang.String id)
          Request that the attribute mapper with the specified name be used to map attributes between a parent flow and a spawning subflow when the subflow state being constructed is entered.
 State FlowArtifactFactory.createActionState(java.lang.String id, Flow flow, Action[] entryActions, Action[] actions, Transition[] transitions, FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes)
          Factory method that creates a new action state, a state where a system action is executed.
 State FlowArtifactFactory.createDecisionState(java.lang.String id, Flow flow, Action[] entryActions, Transition[] transitions, FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes)
          Factory method that creates a new decision state, a state where a flow routing decision is made.
 State FlowArtifactFactory.createEndState(java.lang.String id, Flow flow, Action[] entryActions, ViewSelector viewSelector, org.springframework.binding.mapping.AttributeMapper outputMapper, FlowExecutionExceptionHandler[] exceptionHandlers, AttributeMap attributes)
          Factory method that creates a new end state, a state where an executing flow session terminates.
 Flow FlowArtifactFactory.createFlow(java.lang.String id, AttributeMap attributes)
          Factory method that creates a new Flow definition object.
 State FlowArtifactFactory.createSubflowState(java.lang.String id, Flow flow, Action[] entryActions, Flow subflow, FlowAttributeMapper attributeMapper, Transition[] transitions, FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes)
          Factory method that creates a new subflow state, a state where a parent flow spawns another flow as a subflow.
 Transition FlowArtifactFactory.createTransition(TargetStateResolver targetStateResolver, TransitionCriteria matchingCriteria, TransitionCriteria executionCriteria, AttributeMap attributes)
          Factory method that creates a new transition, a path from one step in a flow to another.
 State FlowArtifactFactory.createViewState(java.lang.String id, Flow flow, Action[] entryActions, ViewSelector viewSelector, Action[] renderActions, Transition[] transitions, FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes)
          Factory method that creates a new view state, a state where a user is allowed to participate in the flow.
protected  Flow AbstractFlowBuilder.flow(java.lang.String id)
          Request that the Flow with the specified flowId be spawned as a subflow when the subflow state being built is entered.
 Action FlowServiceLocator.getAction(java.lang.String id)
          Retrieve an action to be executed within a flow with the assigned id.
 Action BaseFlowServiceLocator.getAction(java.lang.String id)
           
 FlowAttributeMapper FlowServiceLocator.getAttributeMapper(java.lang.String id)
          Returns the flow attribute mapper with the provided id.
 FlowAttributeMapper BaseFlowServiceLocator.getAttributeMapper(java.lang.String id)
           
protected  java.lang.Object BaseFlowServiceLocator.getBean(java.lang.String id, java.lang.Class artifactType)
          Helper method to lookup the bean representing a flow artifact of the specified type.
protected  java.lang.Class BaseFlowServiceLocator.getBeanType(java.lang.String id, java.lang.Class artifactType)
          Helper method to lookup the type of the bean with the provided id.
 FlowExecutionExceptionHandler FlowServiceLocator.getExceptionHandler(java.lang.String id)
          Returns the exception handler to handle flow execution exceptions with the provided id.
 FlowExecutionExceptionHandler BaseFlowServiceLocator.getExceptionHandler(java.lang.String id)
           
 Flow FlowServiceLocator.getSubflow(java.lang.String id)
          Returns the Flow to be used as a subflow with the provided id.
 Flow DefaultFlowServiceLocator.getSubflow(java.lang.String id)
           
 Flow BaseFlowServiceLocator.getSubflow(java.lang.String id)
           
 TargetStateResolver FlowServiceLocator.getTargetStateResolver(java.lang.String id)
          Returns the transition target state resolver with the specified id.
 TargetStateResolver BaseFlowServiceLocator.getTargetStateResolver(java.lang.String id)
           
 TransitionCriteria FlowServiceLocator.getTransitionCriteria(java.lang.String id)
          Returns the transition criteria to drive state transitions with the provided id.
 TransitionCriteria BaseFlowServiceLocator.getTransitionCriteria(java.lang.String id)
           
 ViewSelector FlowServiceLocator.getViewSelector(java.lang.String id)
          Returns the view selector to make view selections in view states with the provided id.
 ViewSelector BaseFlowServiceLocator.getViewSelector(java.lang.String id)
           
protected  AnnotatedAction AbstractFlowBuilder.invoke(java.lang.String methodName, MultiAction multiAction)
          Creates an annotated action decorator that instructs the specified method be invoked on the multi action when it is executed.
 



Copyright © 2009 Spring Framework. All Rights Reserved.