Uses of Interface
org.springframework.webflow.definition.Annotated

Packages that use Annotated
org.springframework.webflow.definition Core, stable abstractions for representing flow definitions. 
org.springframework.webflow.engine The implementation of the core flow definition artifacts that serve the basis of the flow execution engine. 
org.springframework.webflow.engine.support Support implementations for internal engine-specific types. 
 

Uses of Annotated in org.springframework.webflow.definition
 

Subinterfaces of Annotated in org.springframework.webflow.definition
 interface FlowDefinition
          The definition of a flow, a program that when executed carries out the orchestration of a task on behalf of a single client.
 interface StateDefinition
          A step within a flow definition where behavior is executed.
 interface TransitionableStateDefinition
          A state that can transition to another state.
 interface TransitionDefinition
          A transition takes a flow from one state to another.
 

Uses of Annotated in org.springframework.webflow.engine
 

Classes in org.springframework.webflow.engine that implement Annotated
 class ActionState
          A transitionable state that executes one or more actions when entered.
 class AnnotatedAction
          An action proxy/decorator that stores arbitrary properties about a target Action implementation for use within a specific Action execution context, for example an ActionState definition, a TransitionCriteria definition, or in a test environment.
 class AnnotatedObject
          A base class for all objects in the web flow system that support annotation using arbitrary properties.
 class DecisionState
          A simple transitionable state that when entered will execute the first transition whose matching criteria evaluates to true in the context of the current request.
 class EndState
          A state that ends a flow when entered.
 class Flow
          A single flow definition.
 class FlowVariable
          A value object that defines a specification for a flow variable.
 class State
          A point in a flow where something happens.
 class SubflowState
          A transitionable state that spawns a subflow when executed.
 class Transition
          A path from one state to another state.
 class TransitionableState
          Abstract superclass for states that can execute a transition in response to an event.
 class ViewState
          A view state is a state that issues a response to the user, for example, for soliciting form input.
 

Uses of Annotated in org.springframework.webflow.engine.support
 

Classes in org.springframework.webflow.engine.support that implement Annotated
 class BeanFactoryFlowVariable
          A concrete flow variable subclass that obtains variable values from a Spring BeanFactory.
 class SimpleFlowVariable
          A trivial concrete flow variable subclass that creates new variable values using Java reflection.
 



Copyright © 2009 Spring Framework. All Rights Reserved.