Hello all,
Could anyone please let me know if there is a good article or book on implementing a robust EJB application with a Role Based architecture ? I need to develop a complex application where users in particular groups have distinct functionalities and I need to control those functions in the menus that I display to the user...We are using an LDAP server to maintain the user and group information and Weblogic App server.
Thanks...
-
Role based architecture for an EJB Application (1 messages)
- Posted by: Sonu Sharma
- Posted on: July 12 2003 16:32 EDT
Threaded Messages (1)
- Role based architecture for an EJB Application by Rafal Kedziorski on September 17 2003 04:42 EDT
-
Role based architecture for an EJB Application[ Go to top ]
- Posted by: Rafal Kedziorski
- Posted on: September 17 2003 04:42 EDT
- in response to Sonu Sharma
hi,
we have users in our system, but every can have all or a part of the rigts to use the business logic. for this we have an ACL (access control list) with permissions:
- ACL's
- module.media
- module.keywords
- module.category
- ...
- Permissions
- list
- modify
- remove
- create
- ..
Possible entries are defined in ACL_Entry table. In our system the admin can create groups. To each group are assigned acl_entries. And each user in our system can be add to one or more groups. By each call of each method in the session facade we checking for the nedded acl and permission for the given user.
Best Regards,
Rafal