Interface RequestContextProvider
public interface RequestContextProvider
Provide access to the actual servlet request/response.
- Author:
- Jakub Podlesak
-
Method Summary
Modifier and TypeMethodDescriptionjakarta.servlet.http.HttpServletRequest
Get me the actual HTTP Servlet request.jakarta.servlet.http.HttpServletResponse
Get me the actual HTTP Servlet response.
-
Method Details
-
getHttpServletRequest
jakarta.servlet.http.HttpServletRequest getHttpServletRequest()Get me the actual HTTP Servlet request.- Returns:
- actual HTTP Servlet request.
-
getHttpServletResponse
jakarta.servlet.http.HttpServletResponse getHttpServletResponse()Get me the actual HTTP Servlet response.- Returns:
- actual HTTP Servlet response.
-