Interface RequestInterceptor

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void request​(Session sess, java.lang.Object request, java.lang.Object response)
      Called before a request is processed by ZK Loader or ZK Update Engine.
    • Method Detail

      • request

        void request​(Session sess,
                     java.lang.Object request,
                     java.lang.Object response)
        Called before a request is processed by ZK Loader or ZK Update Engine.
        Parameters:
        sess - the session (never null)
        request - the request (never null). It is javax.servlet.http.HttpServletRequest, if the application is HTTP based. A common use is to look for the cookies.
        response - the response (never null). It is javax.servlet.http.HttpServletResponse, if the application is HTTP based. A common use is to store the cookies.