All Packages Class Hierarchy This Package Previous Next Index
Class java.lang.RuntimePermission
java.lang.Object
|
+----java.security.Permission
|
+----java.security.BasicPermission
|
+----java.lang.RuntimePermission
- public final class RuntimePermission
- extends BasicPermission
This class is for runtime permissions. A RuntimePermission
contains a name but
no actions list; you either have the named permission
or you don't.
The name is the name of the runtime permission ("exit",
"setFactory",
"print.queueJob", etc). The naming
convention follows the hierarchical property naming convention.
Also, an asterisk
may appear at the end of the name, following a ".", or by itself, to
signify a wildcard match. For example: "package.*" or "*" is valid,
"*package" or "a*b" is not valid.
- See Also:
- BasicPermission, Permission, Permissions, PermissionCollection, SecurityManager
RuntimePermission(String)
- Creates a new RuntimePermission with the specified name.
RuntimePermission(String, String)
- Creates a new RuntimePermission object with the specified name.
RuntimePermission
public RuntimePermission(String name)
- Creates a new RuntimePermission with the specified name.
The name is the symbolic name of the RuntimePermission, such as
"exit", "setFactory", etc. An asterisk
may appear at the end of the name, following a ".", or by itself, to
signify a wildcard match.
- Parameters:
- name - the name of the RuntimePermission.
RuntimePermission
public RuntimePermission(String name,
String actions)
- Creates a new RuntimePermission object with the specified name.
The name is the symbolic name of the RuntimePermission, and the
actions String is currently unused and should be null. This
constructor exists for use by the
Policy
object
to instantiate new Permission objects.
- Parameters:
- name - the name of the RuntimePermission.
- actions - should be null.
All Packages Class Hierarchy This Package Previous Next Index
Submit a bug or feature