Package com.opensymphony.xwork

Interface Summary
Action All actions may implement this interface, which exposes the execute() method.
ActionInvocation An ActionInvocation represents the execution state of an Action.
ActionProxy ActionProxy is an extra layer between XWork and the action so that different proxies are possible.
LocaleProvider Indicates that the implementing class can provide its own Locale.
ModelDriven ModelDriven Actions provide a model object to be pushed onto the ValueStack in addition to the Action itself, allowing a FormBean type approach like Struts.
NonCloningContinuableObject Implementing this interface indicates that the action should not be cloned, but instead should be re-used.
Preparable Preparable Actions will have their prepare() method called if the PrepareInterceptor is applied to the ActionConfig
Result All results (except for NONE) of an Action are mapped to a View implementation.
TextProvider Provides access to ResourceBundles and their underlying text messages.
Unchainable Simple marker interface to indicate an object should not have it's properties copied during chaining.
Validateable Provides an interface in which a call for a validation check can be done.
ValidationAware ValidationAware classes can accept Action (class level) or field level error messages.
XWorkMessages XworkMessages
 

Class Summary
ActionChainResult This result invokes an entire other action, complete with it's own interceptor stack and result.
ActionContext The ActionContext is the context in which an Action is executed.
ActionProxyFactory The ActionProxyFactory is used to create ActionProxies to be executed.
ActionSupport Provides a default implementation for the most common actions.
DefaultActionInvocation The Default ActionInvocation implementation
DefaultActionProxy The Default ActionProxy implementation
DefaultActionProxyFactory DefaultActionProxyFactory
DefaultTextProvider DefaultTextProvider gets texts from only the default resource bundles associated with the LocalizedTextUtil.
MockActionInvocation Deprecated. Please use @see com.opensymphony.xwork.mock.MockActionInvocation instead
ObjectFactory ObjectFactory is responsible for building the core framework objects.
TextProviderSupport Default TextProvider implementation.
ValidationAwareSupport Provides a default implementation of ValidationAware.
XWorkConstants Contains constants used in Configuration's parameters.
XWorkTestCase Base JUnit TestCase to extend for XWork specific unit tests.
 

Exception Summary
XworkException A generic runtime exception that optionally contains Location information
 


WebWork Project Page