public class

GetBooleanAction

extends Object
implements PrivilegedAction<T>
java.lang.Object
   ↳ sun.security.action.GetBooleanAction

Class Overview

A convenience class for retrieving the boolean value of a system property as a privileged action.

An instance of this class can be used as the argument of AccessController.doPrivileged.

The following code retrieves the boolean value of the system property named "prop" as a privileged action:

 boolean b = java.security.AccessController.doPrivileged
              (new GetBooleanAction("prop")).booleanValue();
 

Summary

Public Constructors
GetBooleanAction(String theProp)
Constructor that takes the name of the system property whose boolean value needs to be determined.
Public Methods
Boolean run()
Determines the boolean value of the system property whose name was specified in the constructor.
[Expand]
Inherited Methods
From class java.lang.Object
From interface java.security.PrivilegedAction

Public Constructors

public GetBooleanAction (String theProp)

Constructor that takes the name of the system property whose boolean value needs to be determined.

Parameters
theProp the name of the system property.

Public Methods

public Boolean run ()

Determines the boolean value of the system property whose name was specified in the constructor.

Returns
  • the Boolean value of the system property.