java.lang.Object | |
↳ | webwork.action.factory.ActionFactory |
![]() |
Base action factory implementation that initializes the action factory delegation, establishes the ActionContext and
provides access to the action factory. Upon instantiation, this class will initialize the action factory specified
by the configuration property webwork.action.factory.
If this property is not configured or the
specified class cannot be instantiated, the DefaultActionFactory
class will be instantiated.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Called if the configuration has been modified.
| |||||||||||
Returns the matching action found as the result of traversing the action factory delegation chain.
| |||||||||||
Returns the action factory implementation or the default action factory if not available.
| |||||||||||
Returns the action object for the specified action or a matching action on the action factory delegation chain.
| |||||||||||
Set the action factory implementation.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Called if the configuration has been modified. If an ActionFactory does any caching of results, it should override this method and flush its internal caches in it.
Returns the matching action found as the result of traversing the action factory delegation chain.
aName | name of action to return |
---|
Exception |
---|
Returns the action factory implementation or the default action factory if not available.
Returns the action object for the specified action or a matching action on the action factory delegation chain.
aName | name of action to check for a match |
---|
Exception |
---|
Set the action factory implementation. Can only be called once.
IllegalStateException |
---|