Package | Description |
---|---|
org.springframework.security.web |
Spring Security's web security module.
|
org.springframework.security.web.access.expression |
Implementation of web security expressions.
|
org.springframework.security.web.access.intercept |
Enforcement of security for HTTP requests, typically by the URL requested.
|
org.springframework.security.web.authentication |
Authentication processing mechanisms, which respond to the submission of authentication
credentials using various protocols (eg BASIC, CAS, form login etc).
|
org.springframework.security.web.savedrequest |
Classes related to the caching of an
HttpServletRequest which requires authentication. |
org.springframework.security.web.util |
Web utility classes.
|
Modifier and Type | Method and Description |
---|---|
RequestMatcher |
DefaultSecurityFilterChain.getRequestMatcher() |
Modifier and Type | Method and Description |
---|---|
Map<RequestMatcher,List<javax.servlet.Filter>> |
FilterChainProxy.getFilterChainMap()
Deprecated.
use the list of
SecurityFilterChain s instead |
Modifier and Type | Method and Description |
---|---|
void |
FilterChainProxy.setFilterChainMap(Map<RequestMatcher,List<javax.servlet.Filter>> filterChainMap)
Deprecated.
Use the constructor which takes a
List<SecurityFilterChain> instead. |
Constructor and Description |
---|
DefaultSecurityFilterChain(RequestMatcher requestMatcher,
javax.servlet.Filter... filters) |
DefaultSecurityFilterChain(RequestMatcher requestMatcher,
List<javax.servlet.Filter> filters) |
Constructor and Description |
---|
ExpressionBasedFilterInvocationSecurityMetadataSource(LinkedHashMap<RequestMatcher,Collection<ConfigAttribute>> requestMap,
SecurityExpressionHandler<FilterInvocation> expressionHandler) |
Constructor and Description |
---|
DefaultFilterInvocationSecurityMetadataSource(LinkedHashMap<RequestMatcher,Collection<ConfigAttribute>> requestMap)
Sets the internal request map from the supplied map.
|
Constructor and Description |
---|
DelegatingAuthenticationEntryPoint(LinkedHashMap<RequestMatcher,AuthenticationEntryPoint> entryPoints) |
Modifier and Type | Method and Description |
---|---|
void |
HttpSessionRequestCache.setRequestMatcher(RequestMatcher requestMatcher)
Allows selective use of saved requests for a subset of requests.
|
Modifier and Type | Class and Description |
---|---|
class |
AntPathRequestMatcher
Matcher which compares a pre-defined ant-style pattern against the URL
(
servletPath + pathInfo ) of an HttpServletRequest . |
class |
AnyRequestMatcher
Matches any supplied request.
|
class |
ELRequestMatcher
A RequestMatcher implementation which uses a SpEL expression
|
class |
IpAddressMatcher
Matches a request based on IP Address or subnet mask matching against the remote address.
|
class |
RegexRequestMatcher
Uses a regular expression to decide whether a supplied the URL of a supplied
HttpServletRequest . |
Copyright © 2015. All rights reserved.