Interface AuExtensionRequest


  • public interface AuExtensionRequest
    Represents a request for an AU extension (AuExtension).
    Since:
    5.0.0
    Author:
    tomyeh
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getPathInfo()
      Returns the path info of the request.
      javax.servlet.http.HttpServletRequest getRequest()
      Returns the request (never null).
      javax.servlet.http.HttpServletResponse getResponse()
      Returns the response (never null).
      Session getSession​(boolean create)
      Returns the session, or null if no session and create is false.
    • Method Detail

      • getSession

        Session getSession​(boolean create)
        Returns the session, or null if no session and create is false.
        Parameters:
        create - whether to create one if not available.
      • getRequest

        javax.servlet.http.HttpServletRequest getRequest()
        Returns the request (never null).
      • getResponse

        javax.servlet.http.HttpServletResponse getResponse()
        Returns the response (never null).