Uses of Class
java.security.PrivilegedActionException
| Package | Description |
|---|---|
| java.security |
Extensible cryptographic service provider infrastructure (SPI) for using
and defining services such as
Certificates,
Keys, KeyStores, MessageDigests, and Signatures. |
| javax.security.auth |
-
Uses of PrivilegedActionException in java.security
Methods in java.security that throw PrivilegedActionException Modifier and Type Method Description static <T> TAccessController. doPrivileged(PrivilegedExceptionAction<T> action)Callsaction.run().static <T> TAccessController. doPrivileged(PrivilegedExceptionAction<T> action, AccessControlContext context)Callsaction.run().static <T> TAccessController. doPrivilegedWithCombiner(PrivilegedExceptionAction<T> action)Callsaction.run(). -
Uses of PrivilegedActionException in javax.security.auth
Methods in javax.security.auth that throw PrivilegedActionException Modifier and Type Method Description static <T> TSubject. doAs(Subject subject, PrivilegedExceptionAction<T> action)Runs the code defined byactionusing the permissions granted to the subject and to the code itself.static <T> TSubject. doAsPrivileged(Subject subject, PrivilegedExceptionAction<T> action, AccessControlContext context)Runs the code defined byactionusing the permissions granted to the subject and to the code itself, additionally providing a more specific context.