| Package | Description |
|---|---|
| webwork.action |
This package contains the API that Actions implement.
|
| webwork.action.client |
Remote clients wanting to execute Actions in a server should use this package.
|
| webwork.action.factory |
Actions are instantiated by using classes in this package.
|
| webwork.action.standard |
This package contains standard Actions that are always available.
|
| webwork.dispatcher |
This package contains the various Action dispatchers.
|
| webwork.interceptor | |
| webwork.util |
This package contains various utility classes and JavaBeans.
|
| webwork.view.velocity |
This package contains the Velocity integration support.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ActionSupport
This is a useful base class for WebWork Action implementations.
|
| Modifier and Type | Method and Description |
|---|---|
Action |
ActionResult.getAction() |
| Modifier and Type | Method and Description |
|---|---|
ActionResult |
ClientDispatcher.execute(Action anAction)
Execute the action on the server.
|
void |
ActionResult.setAction(Action aAction) |
| Constructor and Description |
|---|
ActionResult(Action aAction,
String aResult) |
| Modifier and Type | Method and Description |
|---|---|
static Action |
ActionFactory.getAction(String aName)
Returns the matching action found as the result of traversing the action factory delegation chain.
|
Action |
ContextActionFactoryProxy.getActionImpl(String aName) |
Action |
XMLActionFactoryProxy.getActionImpl(String aName)
If the suffix of the action is
".xml", get the XML action. |
Action |
ReloadingJavaActionFactory.getActionImpl(String name)
Returns a loaded and instantiated action class instance using a fully qualified classname.
|
Action |
ScriptActionFactoryProxy.getActionImpl(String aName)
If the suffix of the action is a scripting extension, get the Script action and then load the script.
|
Action |
PrefixActionFactoryProxy.getActionImpl(String aName)
Returns an action class instance after searching through a list of package prefixes from the configuration
properties.
|
Action |
ReloadHelperActionFactoryProxy.getActionImpl(String aName) |
Action |
JavaActionFactory.getActionImpl(String name)
Returns a loaded and instantiated action class instance using a fully qualified classname.
|
Action |
AliasingActionFactoryProxy.getActionImpl(String aName)
Searches for the action from the configuration properties substituting the alias with the associated action and
then returns the matching action from the action factory proxy chain.
|
Action |
ChainingActionFactoryProxy.getActionImpl(String aName) |
Action |
JspActionFactoryProxy.getActionImpl(String aName)
If the suffix of the action is
".jsp", return the JSP action. |
Action |
SpringActionFactoryProxy.getActionImpl(String aName) |
abstract Action |
ActionFactory.getActionImpl(String aName)
Returns the action object for the specified action or a matching action on the action factory delegation chain.
|
Action |
ParametersActionFactoryProxy.getActionImpl(String aName)
Sets properties on the obtained action from the parameters.
|
Action |
DefaultActionFactory.getActionImpl(String name)
Get an action object.
|
Action |
PrepareActionFactoryProxy.getActionImpl(String aName) |
Action |
CommandActionFactoryProxy.getActionImpl(String aName)
Locates the matching action object from the action factory proxy chain and then executes a command on it if the
CommandDriven interface is implemented. |
| Modifier and Type | Class and Description |
|---|---|
class |
CardPane
Implement functionality similar to how java.awt.CardLayout works for templating web pages.
|
class |
ClientInfo
A utility class for extracting browser information from the client.
|
class |
JSP
JSP execution wrapper.
|
class |
NoContent
Set the response status to 204 NO_CONTENT.
|
class |
Redirect
Redirect to a given URL.
|
class |
Referrer
Redirect to the page that referred this action invocation.
|
class |
Script
Script execution wrapper.
|
class |
XML
XML "execution" wrapper.
|
| Modifier and Type | Method and Description |
|---|---|
Action |
TestDispatcher.getAction(String aName) |
Action |
TestDispatcher.getAction(String aName,
Map parameters) |
Action |
ActionResult.getFirstAction() |
Action |
ActionResult.getLastAction() |
| Modifier and Type | Method and Description |
|---|---|
List<Action> |
GenericDispatcher.getActions() |
| Constructor and Description |
|---|
GenericDispatcher.LazyValueHolder(Action action) |
| Modifier and Type | Method and Description |
|---|---|
Interceptor |
InterceptorFactory.createInterceptorFor(Action action) |
Interceptor |
ChainedInterceptorFactory.createInterceptorFor(Action action) |
| Constructor and Description |
|---|
DefaultInterceptorChain(Action action,
Interceptor... interceptors) |
DefaultInterceptorChain(Action action,
List<Interceptor> iteratorList) |
| Modifier and Type | Class and Description |
|---|---|
class |
AppendIteratorFilter
A bean that takes several iterators and outputs them in sequence
|
class |
IteratorGenerator
A bean that generates an iterator filled with a given object
|
class |
MergeIteratorFilter
A bean that takes several iterators and outputs the merge of them.
|
class |
SortIteratorFilter
A bean that takes an iterator and outputs a subset of it.
|
class |
SubsetIteratorFilter
A bean that takes an iterator and outputs a subset of it.
|
| Modifier and Type | Method and Description |
|---|---|
Action |
WebWorkUtil.action(Object aName) |
| Modifier and Type | Method and Description |
|---|---|
String |
WebWorkUtil.execute(Action anAction) |
Copyright © 2013 Atlassian. All Rights Reserved.