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
Model support for states.
- Author:
- Scott Andrews
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
fillCopy
(AbstractStateModel copy) getId()
void
setAttributes
(LinkedList<AttributeModel> attributes) void
setExceptionHandlers
(LinkedList<ExceptionHandlerModel> exceptionHandlers) void
void
setOnEntryActions
(LinkedList<AbstractActionModel> onEntryActions) void
void
setSecured
(SecuredModel secured) Methods inherited from class org.springframework.webflow.engine.model.AbstractModel
copy, copyList, merge, merge, merge, merge, merge
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.webflow.engine.model.Model
createCopy, isMergeableWith, merge
-
Constructor Details
-
AbstractStateModel
-
-
Method Details
-
fillCopy
-
getId
- Returns:
- the id
-
setId
- Parameters:
id
- the id to set
-
getParent
- Returns:
- the parent
-
setParent
- Parameters:
parent
- the parent to set
-
getAttributes
- Returns:
- the attributes
-
setAttributes
- Parameters:
attributes
- the attributes to set
-
getSecured
- Returns:
- the secured
-
setSecured
- Parameters:
secured
- the secured to set
-
getOnEntryActions
- Returns:
- the on entry actions
-
setOnEntryActions
- Parameters:
onEntryActions
- the on entry actions to set
-
getExceptionHandlers
- Returns:
- the exception handlers
-
setExceptionHandlers
- Parameters:
exceptionHandlers
- the exception handlers to set
-