FileDocCategorySizeDatePackage
GetPropertyAction.javaAPI DocJava SE 6 API626Tue Jun 10 00:22:02 BST 2008com.sun.jmx.mbeanserver

GetPropertyAction

public class GetPropertyAction extends Object implements PrivilegedAction
Utility class to be used by the method AccessControler.doPrivileged to get a system property.
since
1.5

Fields Summary
private final String
key
Constructors Summary
public GetPropertyAction(String key)

	this.key = key;
    
Methods Summary
public java.lang.Stringrun()

	return System.getProperty(key);