Version 5 (modified by meddle, 16 years ago) (diff) |
---|
Analysis
(The purpose of the analysis is to give as much as possible of the needed information for designing and implementing the task.)
Overview
Users and the groups they belong to, must be represented by objects. There must be a service or services that provide API to manage the users and the groups, their attributes and permissions. This API will use the persistence layer to persist the data to the database and will be used by the web services and the client and web views.
Task requirements
Object model for the security logic and services that will manage it.
Task result
User and Group classes with their required properties. Security service or services. Exceptions thrown by the security logic.
Implementation idea
The user and group classes will be simple java beans. The service will have methods like:
public User login(String username, String password) {...} public void register(user newUser) throws SecurityException {...}
... and etc.
Related
The service in the security logic will communicate with the daos from the persistence layer created in S2S_PERSISTENCE_COMMONS_R0.
How to demo
There will be JUnit tests for the security logic. In future the web services and the web view will use this logic.
Design
Implementation
(Implementation results should be described and linked here (from the wiki or the repository))
Testing
Comments
(Write comments for this or later revisions here.)