I am trying to get a Pentaho-BI server which uses spring security to support nested LDAP roles. My group structure is as follows:
- PentahoAdmins (group)
- Members: Domain Admins
- Domain Admins (group)
- Members: User1
- User1 (user)
I would like to verify that User1 is part of the PentahoAdmins group, without having to add the user to the group directly. From my research online, it doesn't seem like Spring's DefaultLdapAuthoritiesPopulator supports nested groups. I'm sure it's possible to create a subclass that supports group nesting, but has someone already gone to this trouble and published it in an open source project?