Package org.springframework.extensions.webscripts

Examples of org.springframework.extensions.webscripts.WebScriptResponse


   * @return
   */
  public static HttpServletResponse extractHttpServletResponse(final WebScriptResponse request) {
    HttpServletResponse servletResponse = null;
    if (request instanceof WrappingWebScriptResponse) {
      final WebScriptResponse nextResponse = ((WrappingWebScriptResponse) request).getNext();
      if (nextResponse instanceof WebScriptServletResponse) {
        servletResponse = ((WebScriptServletResponse) nextResponse).getHttpServletResponse();
      } else if (nextResponse != null) {
        servletResponse = extractHttpServletResponse(nextResponse);
      }
View Full Code Here

TOP

Related Classes of org.springframework.extensions.webscripts.WebScriptResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.