Package org.apache.shiro.web.filter.mgt


package org.apache.shiro.web.filter.mgt
The filter 'mgt' (management) package contains components used in managing Filters that are available for filter chain construction, the filter chains themselves, as well as resolving filter chains based by name.
See Also:
  • Class
    Description
    Enum representing all of the default Shiro Filter instances available to web applications.
    Default FilterChainManager implementation maintaining a map of Filter instances (key: filter name, value: Filter) as well as a map of NamedFilterLists created from these Filters (key: filter chain name, value: NamedFilterList).
    A FilterChainManager manages the creation and modification of Filter chains from an available pool of Filter instances.
    A FilterChainResolver can resolve an appropriate FilterChain to execute during a ServletRequest.
    A NamedFilterList is a List of Filter instances that is uniquely identified by a name.
    A FilterChainResolver that resolves FilterChains based on url path matching, as determined by a configurable PathMatcher.
    Simple NamedFilterList implementation that is supported by a backing List instance and a simple name property.