Interface RequestInfo

  • All Known Implementing Classes:
    RequestInfoImpl

    public interface RequestInfo
    The request information used with UiFactory.
    Author:
    tomyeh
    • Method Detail

      • getWebApp

        WebApp getWebApp()
        Returns the Web application; never null.
      • getSession

        Session getSession()
        Returns the session, or null if not available.
      • getNativeRequest

        java.lang.Object getNativeRequest()
        Returns the native request. For HTTP, it is javax.servlet.http.HttpServletRequest.
      • getLocator

        Locator getLocator()
        Returns the locator used to retrieve resources, such as taglib and zscript files, or null if getWebApp() will be used as the locator.
      • setLocator

        void setLocator​(Locator locator)
        Sets the locator used to retrieve resources, such as taglib and zscript files.
        Parameters:
        locator - the locator used to locate taglib and other resources. If null, getWebApp() is used.