Package jadex.extension.rs.publish
Interface IRequestHandler
-
- All Known Subinterfaces:
IPathHandler
- All Known Implementing Classes:
PathHandler
,PathHandler2
public interface IRequestHandler
Interface for handling http requests.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleRequest(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, java.lang.Object args)
Handle the request.
-
-
-
Method Detail
-
handleRequest
void handleRequest(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, java.lang.Object args) throws java.lang.Exception
Handle the request.- Parameters:
request
- The request.response
- The response.args
- Container specific args.- Throws:
java.lang.Exception
-
-