Interface IRequestHandler

All Known Subinterfaces:
IPathHandler
All Known Implementing Classes:
PathHandler, PathHandler2

public interface IRequestHandler
Interface for handling http requests.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    handleRequest(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Object args)
    Handle the request.
  • Method Details

    • handleRequest

      void handleRequest(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Object args) throws Exception
      Handle the request.
      Parameters:
      request - The request.
      response - The response.
      args - Container specific args.
      Throws:
      Exception