FileDocCategorySizeDatePackage
GetPropertyAction.javaAPI DocJava SE 6 API459Tue Jun 10 00:27:04 BST 2008javax.xml.bind

GetPropertyAction

public final class GetPropertyAction extends Object implements PrivilegedAction
{@link PrivilegedAction} that gets the system property value.
author
Kohsuke Kawaguchi

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

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

        return System.getProperty(propertyName);