Interface RequestRejectedHandler
-
- All Known Implementing Classes:
CompositeRequestRejectedHandler
,DefaultRequestRejectedHandler
,HttpStatusRequestRejectedHandler
public interface RequestRejectedHandler
Used byFilterChainProxy
to handle anRequestRejectedException
.- Since:
- 5.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handle(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, RequestRejectedException requestRejectedException)
Handles an request rejected failure.
-
-
-
Method Detail
-
handle
void handle(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, RequestRejectedException requestRejectedException) throws java.io.IOException, javax.servlet.ServletException
Handles an request rejected failure.- Parameters:
request
- that resulted in anRequestRejectedException
response
- so that the user agent can be advised of the failurerequestRejectedException
- that caused the invocation- Throws:
java.io.IOException
- in the event of an IOExceptionjavax.servlet.ServletException
- in the event of a ServletException
-
-