Interface PageRequest


public interface PageRequest
Represents a page's HTTP request.
  • Method Summary

    Modifier and Type
    Method
    Description
    Retrieves a java.util.Map of the parameters of this request.
    Retrieves the path information associated with the URL the client sent when it made this request.
  • Method Details

    • getPathInfo

      String getPathInfo()
      Retrieves the path information associated with the URL the client sent when it made this request. The path information follows the servlet path but precedes the query string and will start with a "/" character.
      Returns:
      a String containing the extra path information. For example, "/ui/#custom/my-page/resource/1/thing/3".
    • getParameterMap

      Map<String,List<String>> getParameterMap()
      Retrieves a java.util.Map of the parameters of this request.

      Excludes system UI parameters (any parameters with prefix ui).

      Request parameters are extra information sent with the request. For HTTP requests, parameters are contained in the query string or posted form data.

      Returns:
      an immutable java.util.Map containing parameter names as keys and parameter values as map values