Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
1.2.0, 1.2.1, 1.2.2
-
None
-
None
Description
in CasRealm.doGetAuthorizationInfo(...):
// retrieve user information
SimplePrincipalCollection principalCollection = (SimplePrincipalCollection) principals;
List<Object> listPrincipals = principalCollection.asList();
Map<String, String> attributes = (Map<String, String>) listPrincipals.get(1);
But if I use multiple realms of course the principal could stem from one of the other realms and therefore of course be without parameters and causes an IndexOutOfBoundsException in line 182:
Map<String, String> attributes = (Map<String, String>) listPrincipals.get(1);
Workaround: Override doGetAuthorizationInfo in own subclass and fix.