Uses of Interface
com.opensymphony.xwork.Result

Packages that use Result
com.opensymphony.webwork.dispatcher Classes for action dispatching in WebWork (the Controller part of MVC). 
com.opensymphony.webwork.dispatcher.json   
com.opensymphony.webwork.dispatcher.mapper   
com.opensymphony.webwork.pico   
com.opensymphony.webwork.portlet.result   
com.opensymphony.webwork.views   
com.opensymphony.webwork.views.freemarker Classes for views using FreeMarker. 
com.opensymphony.webwork.views.jasperreports Classes for views using Jasper Reports. 
com.opensymphony.webwork.views.jsp.ui WebWorks's JSP UI tags. 
com.opensymphony.webwork.views.tiles   
com.opensymphony.webwork.views.xslt The new xslt view supports an extensible Java XML adapter framework that makes it easy to customize the XML rendering of objects and to incorporate structured XML text and arbitarary DOM fragments into the output. 
com.opensymphony.xwork   
com.opensymphony.xwork.mock   
 

Uses of Result in com.opensymphony.webwork.dispatcher
 

Classes in com.opensymphony.webwork.dispatcher that implement Result
 class ChartResult
          A custom Result type for chart data.
 class FlashResult
          A flash result, that save the current action into the http session before invoking super.doExecute(...), which actually just do a redirect to a specific location just as a normal ServletRedirectResult would.
 class HttpHeaderResult
          A custom Result type for evaluating HTTP headers against the ValueStack.
 class PlainTextResult
          A result that send the content out as plain text.
 class ServletActionRedirectResult
          This result uses the ActionMapper provided by the ActionMapperFactory to redirect the browser to a URL that invokes the specified action and (optional) namespace.
 class ServletDispatcherResult
          Includes or forwards to a view (usually a jsp).
 class ServletRedirectResult
          Calls the sendRedirect method to the location specified.
 class StreamResult
          A custom Result type for send raw data (via an InputStream) directly to the HttpServletResponse.
 class VelocityResult
          Using the Servlet container's JspFactory, this result mocks a JSP execution environment and then displays a Velocity template that will be streamed directly to the servlet output.
 class WebWorkResultSupport
          A base class for all WebWork action execution results.
 

Uses of Result in com.opensymphony.webwork.dispatcher.json
 

Classes in com.opensymphony.webwork.dispatcher.json that implement Result
 class JSONResult
          Attempt to retrieve an instance of JSONObject from WebWork's ValueStack through property returned from JSONResult.getJSONObjectProperty() and write the String representation of the retrived JSONObject to HttpServletResponse's outputstream.
 

Uses of Result in com.opensymphony.webwork.dispatcher.mapper
 

Methods in com.opensymphony.webwork.dispatcher.mapper that return Result
 Result ActionMapping.getResult()
          Return the action's Result
 

Methods in com.opensymphony.webwork.dispatcher.mapper with parameters of type Result
 void ActionMapping.setResult(Result result)
          Set the action's Result.
 

Constructors in com.opensymphony.webwork.dispatcher.mapper with parameters of type Result
ActionMapping(Result result)
          Create an ActionMapping with result supplied as arguments with the remaining properties as null.
 

Uses of Result in com.opensymphony.webwork.pico
 

Methods in com.opensymphony.webwork.pico that return Result
 Result PicoObjectFactory.buildResult(ResultConfig resultConfig, Map extraContext)
           
 

Uses of Result in com.opensymphony.webwork.portlet.result
 

Classes in com.opensymphony.webwork.portlet.result that implement Result
 class PortletResult
          Result type that includes a JSP to render.
 class PortletVelocityResult
          Using the Servlet container's JspFactory, this result mocks a JSP execution environment and then displays a Velocity template that will be streamed directly to the servlet output.
 

Uses of Result in com.opensymphony.webwork.views
 

Classes in com.opensymphony.webwork.views that implement Result
 class AbstractHttpHeaderPopulatingResult
          An abstract class that will auto populate the http response header of the current http request.
 

Uses of Result in com.opensymphony.webwork.views.freemarker
 

Classes in com.opensymphony.webwork.views.freemarker that implement Result
 class FreemarkerResult
          Renders a view using the Freemarker template engine.
 class PortletFreemarkerResult
           
 

Uses of Result in com.opensymphony.webwork.views.jasperreports
 

Classes in com.opensymphony.webwork.views.jasperreports that implement Result
 class JasperReportsResult
          Generates a JasperReports report using the specified format or PDF if no format is specified.
 

Uses of Result in com.opensymphony.webwork.views.jsp.ui
 

Classes in com.opensymphony.webwork.views.jsp.ui that implement Result
 class AbstractRichtexteditorResult
          Abstract result for all Rich Text Editor results.
 class RichtexteditorCreateFolderResult
          WebWork's result, creating the apropriate result (in xml form) and write it out to the response stream corresponding to a 'CreateFolder' command from the Rich Text Editor.
 class RichtexteditorFileUploadResult
          WebWork's result, creating the appropriate result (in javascript form) and write to the response stream corresponding to a 'FileUpload' command from the Rich Text Editor.
 class RichtexteditorGetFoldersAndFilesResult
          WebWork's result, creating the appropriate result (in xml form) and write to the response stream corresponding to the Rich Text Editor's 'GetFoldersAndFiles' command

An example of the response would be as follows:

 class RichtexteditorGetFoldersResult
          WebWork's result, creating the appropriate result (in xml form) and write to the response stream corresponding the the Rich Text Editor's 'GetFolders' command.
 

Uses of Result in com.opensymphony.webwork.views.tiles
 

Classes in com.opensymphony.webwork.views.tiles that implement Result
 class TilesResult
          Renders a view using struts-tiles.
 

Uses of Result in com.opensymphony.webwork.views.xslt
 

Classes in com.opensymphony.webwork.views.xslt that implement Result
 class XSLTResult
          XSLTResult provides support for XSLT generated views of WebWork actions.
 

Uses of Result in com.opensymphony.xwork
 

Classes in com.opensymphony.xwork that implement Result
 class ActionChainResult
          This result invokes an entire other action, complete with it's own interceptor stack and result.
 

Fields in com.opensymphony.xwork declared as Result
protected  Result DefaultActionInvocation.result
           
 

Methods in com.opensymphony.xwork that return Result
 Result ObjectFactory.buildResult(ResultConfig resultConfig, Map extraContext)
          Build a Result using the type in the ResultConfig and set the parameters in the ResultConfig.
 Result DefaultActionInvocation.createResult()
           
 Result DefaultActionInvocation.getResult()
          If the DefaultActionInvocation has been executed before and the Result is an instance of ActionChainResult, this method will walk down the chain of ActionChainResults until it finds a non-chain result, which will be returned.
 Result ActionInvocation.getResult()
          If the ActionInvocation has been executed before and the Result is an instance of ActionChainResult, this method will walk down the chain of ActionChainResults until it finds a non-chain result, which will be returned.
 

Uses of Result in com.opensymphony.xwork.mock
 

Classes in com.opensymphony.xwork.mock that implement Result
 class MockResult
          Mock for a Result.
 

Methods in com.opensymphony.xwork.mock that return Result
 Result MockActionInvocation.getResult()
           
 

Methods in com.opensymphony.xwork.mock with parameters of type Result
 void MockActionInvocation.setResult(Result result)
           
 


WebWork Project Page