Class LayoutFileDispatcher


  • public class LayoutFileDispatcher
    extends java.lang.Object
    Class that provides the operations for dispatching a request to the layout file processing system.
    Since:
    6.0.0
    Version:
    $Revision$ $Date$
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void forward​(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
      Forwards the request to this application.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • LayoutFileDispatcher

        public LayoutFileDispatcher​(IPageRenderer pageRenderer)
        Creates a dispatcher to the LayoutFileApplication.
        Parameters:
        pageRenderer - the layout file renderer to be used during the processing of this request.
    • Method Detail

      • forward

        public void forward​(javax.servlet.http.HttpServletRequest request,
                            javax.servlet.http.HttpServletResponse response)
                     throws javax.servlet.ServletException,
                            java.io.IOException
        Forwards the request to this application.
        Parameters:
        request - the request.
        response - the response.
        Throws:
        javax.servlet.ServletException - if thrown by RequestDispatcher.forward(javax.servlet.ServletRequest, javax.servlet.ServletResponse).
        java.io.IOException - if thrown by RequestDispatcher.forward(javax.servlet.ServletRequest, javax.servlet.ServletResponse).
        Since:
        6.0.0