Changes between Version 1 and Version 2 of APP_RESOURCE_PROPERTIES_SECURITY_R0
- Timestamp:
- 01/30/09 18:02:41 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
APP_RESOURCE_PROPERTIES_SECURITY_R0
v1 v2 4 4 5 5 = Analysis = 6 ^(Give as much as possible of the needed information for designing and implementing the task in the following sections.)^7 6 8 7 == 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.)^ 8 Every 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. 10 9 11 10 == 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). 13 13 14 14 == Task result == … … 16 16 17 17 == 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). 19 19 20 20 == Related == 21 ^(Add links to related tasks that could be useful or helpful.)^ 21 * [wiki:BASE_SECURITY_MODEL_COMMONS_R0] 22 22 23 23 == 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. 25 25 26 26 = Design =