Package org.apache.shiro.web.filter
Interface PathConfigProcessor
-
- All Known Implementing Classes:
AccessControlFilter,AnonymousFilter,AuthenticatingFilter,AuthenticationFilter,AuthorizationFilter,BasicHttpAuthenticationFilter,BearerHttpAuthenticationFilter,FormAuthenticationFilter,HostFilter,HttpMethodPermissionFilter,InvalidRequestFilter,NoSessionCreationFilter,PassThruAuthenticationFilter,PathMatchingFilter,PermissionsAuthorizationFilter,PortFilter,RolesAuthorizationFilter,SslFilter,UserFilter
public interface PathConfigProcessorA PathConfigProcessor processes configuration entries on a per path (url) basis.- Since:
- 0.9
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.servlet.FilterprocessPathConfig(String path, String config)Processes the specifiedconfig, unique to the givenpath, and returns the Filter that should execute for that path/config combination.
-
-
-
Method Detail
-
processPathConfig
javax.servlet.Filter processPathConfig(String path, String config)
Processes the specifiedconfig, unique to the givenpath, and returns the Filter that should execute for that path/config combination.- Parameters:
path- the path for which theconfigshould be appliedconfig- the configuration for theFilterspecific to the givenpath- Returns:
- the
Filterthat should execute for the given path/config combination.
-
-