Hello,
I want to use Spring Security to manage user, group and permissions.
I want to use ACL to secure my domain objects but I can't find a way to assign a group to an acl.
For example: I've got users and groups. Each group can have the following securities: - manage forums (can be a role like ROLE____FORUM____MANAGER) - edit a specific forum (acl on the specific forum).
How can I do it ?
Moreover, Groups are defined by users which have role ROLE____PERMISSION____MANAGER. BUT all groups defined by this user can only be edited and managed by this user. So group are attached to a user. Exactly, imagine that user creates a google group: this user can manage right permission groups only for the group he has created. And so he can create group to manage specific forum of its own google group.
How can I do ?
I read the spring security docs and the following tutorials (so please don't send me to these links): http://grzegorzborkowski.blogspot.com/2008/10/spring-security-acl-very-basic-tutorial.html http://server.denksoft.com/wordpress/web-development/spring-security/
thanks ;)