| com.opensymphony.xwork.Result
All known Subclasses: com.opensymphony.webwork.views.jsp.ui.AbstractRichtexteditorResult, com.opensymphony.webwork.TestResult, com.opensymphony.webwork.views.xslt.XSLTResult, com.opensymphony.webwork.dispatcher.ChartResult, com.opensymphony.webwork.TestActionTagResult, com.opensymphony.webwork.dispatcher.WebWorkResultSupport, com.opensymphony.xwork.mock.MockResult, com.opensymphony.xwork.ActionChainResult, com.opensymphony.webwork.dispatcher.HttpHeaderResult,
Result | public interface Result extends Serializable(Code) | | All results (except for 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
author: plightbo version: $Revision: 861 $ |
Method Summary | |
public void | execute(ActionInvocation invocation) Represents a generic interface for all action execution results, whether that be displaying a webpage, generating
an email, sending a JMS message, etc. |
execute | public void execute(ActionInvocation invocation) throws Exception(Code) | | Represents a generic interface for all action execution results, whether that be displaying a webpage, generating
an email, sending a JMS message, etc.
|
|
|