The default SecurityManager
checks whether the caller of a particular method has sufficient permissions to proceed with an action. An action is a level of access; for instance, the actions for java.io.FilePermission
are read, write, execute, and delete [API 2011]. The "Permission Descriptions and Risks" guide [Oracle 2008b] enumerates the default permissions and the risks associated with granting these permissions to Java code.
...
Bibliography
[API 2011] | Class FilePermission Class SecurityManager | |||
[Oaks 2001] | Chapter 5, "The Access Controller," "Permissions" | |||
[Oracle | 2012c2008b] | Permissions in | Javathe Java™ SE | 76 Development Kit (JDK) |
[Oracle | 2008b2012c] | Permissions in | the Java™Java SE | 67 Development Kit (JDK) |
[Policy 2002] | "Permission Descriptions and Risks" |
...