com.opensymphony.xwork
Interface Result
- All Superinterfaces:
- Serializable
- All Known Implementing Classes:
- AbstractHttpHeaderPopulatingResult, AbstractRichtexteditorResult, ActionChainResult, ChartResult, FlashResult, FreemarkerResult, HttpHeaderResult, JasperReportsResult, JSONResult, MockResult, PlainTextResult, PortletFreemarkerResult, PortletResult, PortletVelocityResult, RichtexteditorCreateFolderResult, RichtexteditorFileUploadResult, RichtexteditorGetFoldersAndFilesResult, RichtexteditorGetFoldersResult, ServletActionRedirectResult, ServletDispatcherResult, ServletRedirectResult, StreamResult, TilesResult, VelocityResult, WebWorkResultSupport, XSLTResult
public interface Result - extends Serializable
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
- Version:
- $Revision: 861 $
- Author:
- plightbo
|
Method Summary |
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
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.
- Throws:
Exception
|