Uses of Interface
java.security.PrivilegedExceptionAction Java DOCS
Packages that use PrivilegedExceptionAction
Package
Description
Provides the classes and interfaces for the security framework.
Utility classes commonly useful in concurrent programming.
This package provides a framework for authentication and
authorization.
-
Uses of PrivilegedExceptionAction in java.security
Methods in java.security with parameters of type PrivilegedExceptionActionModifier and TypeMethodDescriptionstatic <T> T
AccessController.doPrivileged
(PrivilegedExceptionAction<T> action) Deprecated, for removal: This API element is subject to removal in a future version.Performs the specified action.static <T> T
AccessController.doPrivileged
(PrivilegedExceptionAction<T> action, AccessControlContext context) Deprecated, for removal: This API element is subject to removal in a future version.Performs the specified action.static <T> T
AccessController.doPrivileged
(PrivilegedExceptionAction<T> action, AccessControlContext context, Permission... perms) Deprecated, for removal: This API element is subject to removal in a future version.Performs the specified action.static <T> T
AccessController.doPrivilegedWithCombiner
(PrivilegedExceptionAction<T> action) Deprecated, for removal: This API element is subject to removal in a future version.Performs the specified action.static <T> T
AccessController.doPrivilegedWithCombiner
(PrivilegedExceptionAction<T> action, AccessControlContext context, Permission... perms) Deprecated, for removal: This API element is subject to removal in a future version.Performs the specified action. -
Uses of PrivilegedExceptionAction in java.util.concurrent
Methods in java.util.concurrent with parameters of type PrivilegedExceptionActionModifier and TypeMethodDescriptionExecutors.callable
(PrivilegedExceptionAction<?> action) Returns aCallable
object 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 PrivilegedExceptionActionModifier and TypeMethodDescriptionstatic <T> T
Subject.doAs
(Subject subject, PrivilegedExceptionAction<T> action) Deprecated, for removal: This API element is subject to removal in a future version.static <T> T
Subject.doAsPrivileged
(Subject subject, PrivilegedExceptionAction<T> action, AccessControlContext acc) Deprecated, for removal: This API element is subject to removal in a future version.This method originally performed the specifiedPrivilegedExceptionAction
with privileges enabled and restricted by the specifiedAccessControlContext
.
PrivilegedExceptionAction
with privileges enabled.