Contents | Package | Class | Tree | Deprecated | Index | Help | Java 1.2 Beta 3 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |
java.lang.Object | +----java.security.Permission | +----java.security.BasicPermission | +----java.security.SecurityPermission
Name is the name of a security configuration parameter. Currently the SecurityPermission object is used to guard access to the Identity object, and to the Security object. The Identity object is used to implement the digital signature identity database.
To request permission to make changes in the Identity object, create a SecurityPermission with the name of the directive. Directives known by the base JDK are "set.public.key", "set.info", "add.certificate", "remove.certificate", "print".
Constructor Summary | |
SecurityPermission(String name)
|
|
SecurityPermission(String name,
String actions)
|
Methods inherited from class java.security.BasicPermission |
equals, getActions, hashCode, implies, newPermissionCollection |
Methods inherited from class java.security.Permission |
checkGuard, equals, getActions, getName, hashCode, implies, newPermissionCollection, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public SecurityPermission(String name)
name
- the name of the SecurityPermission
public SecurityPermission(String name, String actions)
Policy
object
to instantiate new Permission objects.
name
- the name of the SecurityPermission
actions
- should be null.
Contents | Package | Class | Tree | Deprecated | Index | Help | Java 1.2 Beta 3 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |