A convenience class for loading a system library as a privileged action.
An instance of this class can be used as the argument of
AccessController.doPrivileged .
The following code attempts to load the system library named
"lib" as a privileged action:
java.security.AccessController.doPrivileged(new LoadLibraryAction("lib"));
author: Roland Schemers version: 1.6, 02/02/00 See Also: java.security.PrivilegedAction See Also: java.security.AccessController since: JDK1.2 |