Package org.springframework.security.web
Interface SecurityFilterChain
-
- All Known Implementing Classes:
DefaultSecurityFilterChain
public interface SecurityFilterChain
Defines a filter chain which is capable of being matched against anHttpServletRequest
. in order to decide whether it applies to that request.Used to configure a
FilterChainProxy
.- Since:
- 3.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<javax.servlet.Filter>
getFilters()
boolean
matches(javax.servlet.http.HttpServletRequest request)
-