Changes between Version 1 and Version 2 of S2S_CORE_SECURITY_R0


Ignore:
Timestamp:
11/20/08 17:21:39 (16 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S2S_CORE_SECURITY_R0

    v1 v2  
    88 
    99== 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.)^ 
     10Users and the groups they belong to, must be represented by objects. There must be a service or services that provide API to manage the 
     11users and the groups, their attributes and permissions. This API will use the persistence layer to persist the data to the database and will 
     12be used by the web services and the client and web views. 
    1113 
    1214== Task requirements == 
    13 ^(Necessary requirements that the task must fulfill.)^ 
     15Object model for the security logic and services that will manage it. 
    1416 
    1517== 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.))^ 
     18User and Group classes with their required properties. 
     19Security service or services. 
     20Exceptions thrown by the security logic. 
    1721 
    1822== Implementation idea == 
    19 ^(It is advisable to include some rough implementations ideas.)^ 
     23The user and group classes will be simple java beans. The service will have methods like: 
     24{{{ 
     25public User login(String username, String password) {...} 
     26public void register(user newUser) throws SecurityException  {...} 
     27}}} 
     28 
     29... and etc. 
    2030 
    2131== Related == 
    22 ^(Here you can add related tasks that could be useful or helpful.)^ 
     32The service in the security logic will communicate with the daos from the persistence layer created in S2S_PERSISTENCE_COMMONS_R0. 
    2333 
    2434== How to demo == 
    25 ^(In this section you must add instructions for the demo of the task.)^ 
     35There will be JUnit tests for the security logic. 
     36In future the web services and the web view will use this logic. 
    2637 
    2738= Design = 
     
    3445= Comments = 
    3546^(Write comments for this or later revisions here.) 
     47