I have read thru the abstract docs. I see there is a lack of meaty specific 
modelings of real world multi-dimensional examples... 

Can anyone explain what this does ?

I am aware of the following filters

        /**
         * SHIRO FACTORY DEFAULT FILTERS 
         * 
         * anon - anonymous filter 
         * authc - forms authentication filter 
         * basic = basic http authentication filter
         * notfound - not found filter 
         * perms - permissions authorization filter
         * port - port filter 
         * roles - roles authorization filter 
         * user - user filter
         */

But I still dont understand what the implications of the statement below means ?
Can anyone offer me a tip?

SHIRO.INI version
/user/** = authc

JAVA LANGUAGE version
configuration.add("user-user", new FilterChainDefinition("/user/**", "authc"));
                                          
                                          

Reply via email to