Class AbstractStateModel

java.lang.Object
org.springframework.webflow.engine.model.AbstractModel
org.springframework.webflow.engine.model.AbstractStateModel
All Implemented Interfaces:
Model
Direct Known Subclasses:
AbstractTransitionableStateModel, DecisionStateModel, EndStateModel

public abstract class AbstractStateModel extends AbstractModel
Model support for states.
Author:
Scott Andrews
  • Constructor Details

    • AbstractStateModel

      public AbstractStateModel(String id)
  • Method Details

    • fillCopy

      protected void fillCopy(AbstractStateModel copy)
    • getId

      public String getId()
      Returns:
      the id
    • setId

      public void setId(String id)
      Parameters:
      id - the id to set
    • getParent

      public String getParent()
      Returns:
      the parent
    • setParent

      public void setParent(String parent)
      Parameters:
      parent - the parent to set
    • getAttributes

      public LinkedList<AttributeModel> getAttributes()
      Returns:
      the attributes
    • setAttributes

      public void setAttributes(LinkedList<AttributeModel> attributes)
      Parameters:
      attributes - the attributes to set
    • getSecured

      public SecuredModel getSecured()
      Returns:
      the secured
    • setSecured

      public void setSecured(SecuredModel secured)
      Parameters:
      secured - the secured to set
    • getOnEntryActions

      public LinkedList<AbstractActionModel> getOnEntryActions()
      Returns:
      the on entry actions
    • setOnEntryActions

      public void setOnEntryActions(LinkedList<AbstractActionModel> onEntryActions)
      Parameters:
      onEntryActions - the on entry actions to set
    • getExceptionHandlers

      public LinkedList<ExceptionHandlerModel> getExceptionHandlers()
      Returns:
      the exception handlers
    • setExceptionHandlers

      public void setExceptionHandlers(LinkedList<ExceptionHandlerModel> exceptionHandlers)
      Parameters:
      exceptionHandlers - the exception handlers to set