com.opensymphony.xwork2
public interface: Result [javadoc |
source]
All Implemented Interfaces:
Serializable
All Known Implementing Classes:
MockResult, ActionChainResult
All results (except for
Action.NONE
) of an
Action are mapped to a View implementation.
Examples of Views might be:
- SwingPanelView - pops up a new Swing panel
- ActionChainView - executes another action
- SerlvetRedirectView - redirects the HTTP response to a URL
- ServletDispatcherView - dispatches the HTTP response to a URL
Method from com.opensymphony.xwork2.Result Summary: |
---|
execute |
Method from com.opensymphony.xwork2.Result Detail: |
public void execute(ActionInvocation invocation) throws Exception
Represents a generic interface for all action execution results.
Whether that be displaying a webpage, generating an email, sending a JMS message, etc. |