FileDocCategorySizeDatePackage
GetPropertyAction.javaAPI DocJava SE 5 API617Fri Aug 26 14:54:58 BST 2005com.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.Objectrun()

	return System.getProperty(key);