Class RequestMatcherDelegatingAccessDeniedHandler
- java.lang.Object
-
- org.springframework.security.web.access.RequestMatcherDelegatingAccessDeniedHandler
-
- All Implemented Interfaces:
AccessDeniedHandler
public final class RequestMatcherDelegatingAccessDeniedHandler extends java.lang.Object implements AccessDeniedHandler
AnAccessDeniedHandler
that delegates to otherAccessDeniedHandler
instances based upon the type ofHttpServletRequest
passed intohandle(HttpServletRequest, HttpServletResponse, AccessDeniedException)
.- Since:
- 5.1
-
-
Constructor Summary
Constructors Constructor Description RequestMatcherDelegatingAccessDeniedHandler(java.util.LinkedHashMap<RequestMatcher,AccessDeniedHandler> handlers, AccessDeniedHandler defaultHandler)
Creates a new instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
handle(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, AccessDeniedException accessDeniedException)
Handles an access denied failure.
-
-
-
Constructor Detail
-
RequestMatcherDelegatingAccessDeniedHandler
public RequestMatcherDelegatingAccessDeniedHandler(java.util.LinkedHashMap<RequestMatcher,AccessDeniedHandler> handlers, AccessDeniedHandler defaultHandler)
Creates a new instance- Parameters:
handlers
- a map ofRequestMatcher
s toAccessDeniedHandler
s that should be used. Each is considered in the order they are specified and only the firstAccessDeniedHandler
is used.defaultHandler
- the defaultAccessDeniedHandler
that should be used if none of the matchers match.
-
-
Method Detail
-
handle
public void handle(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, AccessDeniedException accessDeniedException) throws java.io.IOException, javax.servlet.ServletException
Description copied from interface:AccessDeniedHandler
Handles an access denied failure.- Specified by:
handle
in interfaceAccessDeniedHandler
- Parameters:
request
- that resulted in anAccessDeniedException
response
- so that the user agent can be advised of the failureaccessDeniedException
- that caused the invocation- Throws:
java.io.IOException
- in the event of an IOExceptionjavax.servlet.ServletException
- in the event of a ServletException
-
-