Interface RequestContextProvider
-
public interface RequestContextProvider
Provide access to the actual servlet request/response.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.servlet.http.HttpServletRequest
getHttpServletRequest()
Get me the actual HTTP Servlet request.javax.servlet.http.HttpServletResponse
getHttpServletResponse()
Get me the actual HTTP Servlet response.
-
-
-
Method Detail
-
getHttpServletRequest
javax.servlet.http.HttpServletRequest getHttpServletRequest()
Get me the actual HTTP Servlet request.- Returns:
- actual HTTP Servlet request.
-
getHttpServletResponse
javax.servlet.http.HttpServletResponse getHttpServletResponse()
Get me the actual HTTP Servlet response.- Returns:
- actual HTTP Servlet response.
-
-