Uses of Interface
java.security.PrivilegedExceptionAction
| Package | Description |
|---|---|
| java.security |
Extensible cryptographic service provider infrastructure (SPI) for using
and defining services such as
Certificates,
Keys, KeyStores, MessageDigests, and Signatures. |
| java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
| javax.security.auth |
-
Uses of PrivilegedExceptionAction in java.security
Methods in java.security with parameters of type PrivilegedExceptionAction 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 PrivilegedExceptionAction in java.util.concurrent
Methods in java.util.concurrent with parameters of type PrivilegedExceptionAction Modifier and Type Method Description static Callable<Object>Executors. callable(PrivilegedExceptionAction<?> action)Returns aCallableobject that, when called, runs the given privileged exception action and returns its result. -
Uses of PrivilegedExceptionAction in javax.security.auth
Methods in javax.security.auth with parameters of type PrivilegedExceptionAction 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.