Uses of Interface
java.security.PrivilegedAction
| 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 PrivilegedAction in java.security
Methods in java.security with parameters of type PrivilegedAction Modifier and Type Method Description static <T> TAccessController. doPrivileged(PrivilegedAction<T> action)Callsaction.run().static <T> TAccessController. doPrivileged(PrivilegedAction<T> action, AccessControlContext context)Callsaction.run().static <T> TAccessController. doPrivilegedWithCombiner(PrivilegedAction<T> action)Callsaction.run(). -
Uses of PrivilegedAction in java.util.concurrent
Methods in java.util.concurrent with parameters of type PrivilegedAction Modifier and Type Method Description static Callable<Object>Executors. callable(PrivilegedAction<?> action)Returns aCallableobject that, when called, runs the given privileged action and returns its result. -
Uses of PrivilegedAction in javax.security.auth
Methods in javax.security.auth with parameters of type PrivilegedAction Modifier and Type Method Description static <T> TSubject. doAs(Subject subject, PrivilegedAction<T> action)Runs the code defined byactionusing the permissions granted to theSubjectitself and to the code as well.static <T> TSubject. doAsPrivileged(Subject subject, PrivilegedAction<T> action, AccessControlContext context)Run the code defined byactionusing the permissions granted to theSubjectand to the code itself, additionally providing a more specific context.