public class

GetBooleanSecurityPropertyAction

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

Class Overview

A convenience class for retrieving the boolean value of a security 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 security property named "prop" as a privileged action:

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

Summary

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

Public Constructors

public GetBooleanSecurityPropertyAction (String theProp)

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

Parameters
theProp the name of the security property

Public Methods

public Boolean run ()

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

Returns
  • the Boolean value of the security property.