Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
Patch
Description
The isAllowed method of RolesInterceptor does not enforce the disallowedRoles when allowedRoles are configured. ex:
<interceptor-ref name="roles"> <param name="allowedRoles">authenticated</param> <param name="disallowedRoles">restrictedUser</param> </interceptor-ref>
With the above configuration a user with the roles "authenticated", and "restrictedUser" would be granted access.