Uses of Class
org.apache.shiro.guice.web.ShiroWebModule.FilterConfig
-
Packages that use ShiroWebModule.FilterConfig Package Description org.apache.shiro.guice.web -
-
Uses of ShiroWebModule.FilterConfig in org.apache.shiro.guice.web
Methods in org.apache.shiro.guice.web that return ShiroWebModule.FilterConfig Modifier and Type Method Description protected static <T extends javax.servlet.Filter>
ShiroWebModule.FilterConfig<T>ShiroWebModule. filterConfig(com.google.inject.Key<T> baseKey)Builds a FilterConfig from a Filer and configuration Stringprotected static <T extends javax.servlet.Filter>
ShiroWebModule.FilterConfig<T>ShiroWebModule. filterConfig(com.google.inject.Key<T> baseKey, String configValue)Builds a FilterConfig from a Filer and configuration Stringprotected static <T extends javax.servlet.Filter>
ShiroWebModule.FilterConfig<T>ShiroWebModule. filterConfig(com.google.inject.TypeLiteral<T> typeLiteral, String configValue)Builds a FilterConfig from a Filer and configuration Stringprotected static <T extends javax.servlet.Filter>
ShiroWebModule.FilterConfig<T>ShiroWebModule. filterConfig(Class<T> type, String configValue)Builds a FilterConfig from a Filer and configuration StringMethods in org.apache.shiro.guice.web that return types with arguments of type ShiroWebModule.FilterConfig Modifier and Type Method Description List<ShiroWebModule.FilterConfig<? extends javax.servlet.Filter>>ShiroWebModule. globalFilters()Methods in org.apache.shiro.guice.web with parameters of type ShiroWebModule.FilterConfig Modifier and Type Method Description protected voidShiroWebModule. addFilterChain(String pattern, ShiroWebModule.FilterConfig<? extends javax.servlet.Filter>... filterConfigs)Maps 'n' number offilterConfigs to a specific path pattern.
For example, a path of '/my_private_resource/**' to 'filterConfig(AUTHC)' would require any resource under the path '/my_private_resource' would be processed through theFormAuthenticationFilter.
-