Interface HttpFacade.Request

All Known Implementing Classes:
ServletHttpFacade.RequestFacade, UndertowHttpFacade.RequestFacade
Enclosing interface:
HttpFacade

public static interface HttpFacade.Request
  • Method Details

    • getMethod

      String getMethod()
    • getURI

      String getURI()
      Full request URI with query params
      Returns:
    • getRelativePath

      String getRelativePath()
      Get the request relative path.
      Returns:
      the request relative path
    • isSecure

      boolean isSecure()
      HTTPS?
      Returns:
    • getFirstParam

      String getFirstParam(String param)
      Get first query or form param
      Parameters:
      param -
      Returns:
    • getQueryParamValue

      String getQueryParamValue(String param)
    • getCookie

      HttpFacade.Cookie getCookie(String cookieName)
    • getHeader

      String getHeader(String name)
    • getHeaders

      List<String> getHeaders(String name)
    • getInputStream

      InputStream getInputStream()
    • getInputStream

      InputStream getInputStream(boolean buffered)
    • getRemoteAddr

      String getRemoteAddr()
    • setError

      void setError(AuthenticationError error)
    • setError

      void setError(LogoutError error)