public class GetPropertyAction
extends java.lang.Object
implements java.security.PrivilegedAction<java.lang.String>
An instance of this class can be used as the argument of
AccessController.doPrivileged.
The following code retrieves the value of the system
property named "prop" as a privileged action:
String s = java.security.AccessController.doPrivileged
(new GetPropertyAction("prop"));
PrivilegedAction,
AccessController| Constructor and Description |
|---|
GetPropertyAction(java.lang.String theProp)
Constructor that takes the name of the system property whose
string value needs to be determined.
|
GetPropertyAction(java.lang.String theProp,
java.lang.String defaultVal)
Constructor that takes the name of the system property and the default
value of that property.
|
| Modifier and Type | Method and Description |
|---|---|
static java.util.Properties |
privilegedGetProperties()
Convenience method to call
System.getProperties without
having to go through doPrivileged if no security manager is present. |
static java.lang.String |
privilegedGetProperty(java.lang.String theProp)
Convenience method to get a property without going through doPrivileged
if no security manager is present.
|
static java.lang.String |
privilegedGetProperty(java.lang.String theProp,
java.lang.String defaultVal)
Convenience method to get a property without going through doPrivileged
if no security manager is present.
|
java.lang.String |
run()
Determines the string value of the system property whose
name was specified in the constructor.
|
public GetPropertyAction(java.lang.String theProp)
theProp - the name of the system property.public GetPropertyAction(java.lang.String theProp,
java.lang.String defaultVal)
theProp - the name of the system property.defaultVal - the default value.public java.lang.String run()
run in interface java.security.PrivilegedAction<java.lang.String>public static java.lang.String privilegedGetProperty(java.lang.String theProp)
theProp - the name of the system property.public static java.lang.String privilegedGetProperty(java.lang.String theProp,
java.lang.String defaultVal)
theProp - the name of the system property.defaultVal - the default value.public static java.util.Properties privilegedGetProperties()
System.getProperties without
having to go through doPrivileged if no security manager is present.
This is unsafe for inclusion in a public API but allowable here since
this class is now encapsulated.
Note that this method performs a privileged action, and callers of
this method should take care to ensure that the returned properties
are not made accessible to untrusted code since it may contain
sensitive information.