On Oct 31, 2007, at 9:14 AM, prasana wrote:
It looks like that Security Mapping only Feature exist for User
Principal but
not for Group Principal.
Is there any reason behind not implementing this for Group Principal.
Not that I am aware of, probably just no requirement up until now
I am looking at the UserManager:
getUser(String username)
...
principals.add(userPrincipal);
principals.addAll(securityMappingHandler.getRolePrincipals
(username));
principals.addAll(securityMappingHandler.getGroupPrincipals
(username));
Is this what you are saying is missing with groups?