Changes between Version 1 and Version 2 of APP_RESOURCE_PROPERTIES_SECURITY_R0


Ignore:
Timestamp:
01/30/09 18:02:41 (16 years ago)
Author:
tanya
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • APP_RESOURCE_PROPERTIES_SECURITY_R0

    v1 v2  
    44 
    55= Analysis = 
    6 ^(Give as much as possible of the needed information for designing and implementing the task in the following sections.)^ 
    76 
    87== Overview == 
    9 ^(Provide a brief overview of the whole task in its first revision. Stick to the current revision of the task, but keep an eye to the whole task progress, and stay alert for possible smells.)^ 
     8Every resource has security ACL (access control list). Security permissions are in a list of couples (ID, permission). The permissions of a resource could be changed. 
    109 
    1110== Task requirements == 
    12 ^(List the necessary requirements that the task must fulfill.)^ 
     11 * Create basic and default permissions of the resources. 
     12 * Provide that the permissions of a resource could be changed (adding, deleting permissions). 
    1313 
    1414== Task result == 
     
    1616 
    1717== Implementation idea == 
    18 ^(Provide some rough implementation idea(s).)^ 
     18 * The security permissions of a resource could be a map <String, String> which is for example (UserID, read) or (GroupID, write). 
    1919 
    2020== Related == 
    21 ^(Add links to related tasks that could be useful or helpful.)^ 
     21 * [wiki:BASE_SECURITY_MODEL_COMMONS_R0] 
    2222 
    2323== How to demo == 
    24 ^(Provide instructions for demonstration of the task.)^ 
     24 * Create a demo unit test to demonstrate what is done for the R0. 
    2525 
    2626= Design =