Changes between Version 1 and Version 2 of S2S_CORE_SECURITY_R0
- Timestamp:
- 11/20/08 17:21:39 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S2S_CORE_SECURITY_R0
v1 v2 8 8 9 9 == Overview == 10 ^(The analysis of the first revision of each task should contain a brief overview of the whole task. Stick to the current revision of the task, but keep an eye to the whole task progress, and stay alert for possible smells.)^ 10 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 11 users and the groups, their attributes and permissions. This API will use the persistence layer to persist the data to the database and will 12 be used by the web services and the client and web views. 11 13 12 14 == Task requirements == 13 ^(Necessary requirements that the task must fulfill.)^ 15 Object model for the security logic and services that will manage it. 14 16 15 17 == Task result == 16 ^(The Analysis should contain strict requirements about the end product of the task (for example the result must be source code, the result must be google doc, etc.))^ 18 User and Group classes with their required properties. 19 Security service or services. 20 Exceptions thrown by the security logic. 17 21 18 22 == Implementation idea == 19 ^(It is advisable to include some rough implementations ideas.)^ 23 The user and group classes will be simple java beans. The service will have methods like: 24 {{{ 25 public User login(String username, String password) {...} 26 public void register(user newUser) throws SecurityException {...} 27 }}} 28 29 ... and etc. 20 30 21 31 == Related == 22 ^(Here you can add related tasks that could be useful or helpful.)^ 32 The service in the security logic will communicate with the daos from the persistence layer created in S2S_PERSISTENCE_COMMONS_R0. 23 33 24 34 == How to demo == 25 ^(In this section you must add instructions for the demo of the task.)^ 35 There will be JUnit tests for the security logic. 36 In future the web services and the web view will use this logic. 26 37 27 38 = Design = … … 34 45 = Comments = 35 46 ^(Write comments for this or later revisions here.) 47