| public final class java.util PropertyPermission
|
Java SE 6 |
The name is the name of the property ("java.home", "os.name", 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: "java.*" or "*" is valid, "*java" or "a*b" is not valid.
The actions to be granted are passed to the constructor in a string containing a list of zero or more comma-separated keywords. The possible keywords are "read" and "write". Their meaning is defined as follows:
System.getProperty to
be called.
System.setProperty to
be called.
The actions string is converted to lowercase before processing.
Care should be taken before granting code permission to access certain system properties. For example, granting permission to access the "java.home" system property gives potentially malevolent code sensitive information about the system environment (the Java installation directory). Also, granting permission to access the "user.name" and "user.home" system properties gives potentially malevolent code sensitive information about the user environment (the user's account name and home directory).
| version | 1.35 06/04/21 |
| since | 1.2 |
| serial | exclude |
| See also | java.security.BasicPermission, java.security.Permission, java.security.Permissions, java.security.PermissionCollection, java.lang.SecurityManager |
| Constructors | |||||||||
|---|---|---|---|---|---|---|---|---|---|
| public | PropertyPermission(String name, String actions) Creates a new PropertyPermission object with the specified name. The name is the name of the system property, and actions contains a comma-separated list of the desired actions granted on the property. Possible actions are "read" and "write".
| ||||||||
| Methods | |||||
|---|---|---|---|---|---|
| public boolean | equals(Object obj) Checks two PropertyPermission objects for equality. Checks that obj is a PropertyPermission, and has the same name and actions as this object.
| ||||
| public int | hashCode() Returns the hash code value for this object. The hash code used is the hash code of this permissions name, that is, getName().hashCode(), where getName is
from the Permission superclass.
| ||||
| public boolean | implies(Permission p) Checks if this PropertyPermission object "implies" the specified permission. More specifically, this method returns true if:
| ||||
| public PermissionCollection | newPermissionCollection() Returns a new PermissionCollection object for storing PropertyPermission objects.
| ||||
| Properties | |||
|---|---|---|---|
| public String | getActions() Returns the "canonical string representation" of the actions. That is, this method always returns present actions in the following order: read, write. For example, if this PropertyPermission object allows both write and read actions, a call to getActions
will return the string "read,write".
| ||
| About DocWeb · Bundles · Export · Export All | Top 10 · Statistics · Login |
| About Sun · Contact · Privacy · Terms of Use · Trademarks | Java SE 6 · Copyright © 1994-2009 Sun Microsystems, Inc.All rights reserved. Use is subject to license terms |
![]() |
![]() |
|