Uses of Class
java.security.PrivilegedActionException
- 
Packages that use PrivilegedActionException Package Description java.security Provides the classes and interfaces for the security framework.javax.security.auth This package provides a framework for authentication and authorization.
- 
- 
Uses of PrivilegedActionException in java.securityMethods in java.security that throw PrivilegedActionException Modifier and Type Method Description static <T> TAccessController. doPrivileged(PrivilegedExceptionAction<T> action)Performs the specifiedPrivilegedExceptionActionwith privileges enabled.static <T> TAccessController. doPrivileged(PrivilegedExceptionAction<T> action, AccessControlContext context)Performs the specifiedPrivilegedExceptionActionwith privileges enabled and restricted by the specifiedAccessControlContext.static <T> TAccessController. doPrivileged(PrivilegedExceptionAction<T> action, AccessControlContext context, Permission... perms)Performs the specifiedPrivilegedExceptionActionwith privileges enabled and restricted by the specifiedAccessControlContextand with a privilege scope limited by specifiedPermissionarguments.static <T> TAccessController. doPrivilegedWithCombiner(PrivilegedExceptionAction<T> action)Performs the specifiedPrivilegedExceptionActionwith privileges enabled.static <T> TAccessController. doPrivilegedWithCombiner(PrivilegedExceptionAction<T> action, AccessControlContext context, Permission... perms)Performs the specifiedPrivilegedExceptionActionwith privileges enabled and restricted by the specifiedAccessControlContextand with a privilege scope limited by specifiedPermissionarguments.
- 
Uses of PrivilegedActionException in javax.security.authMethods in javax.security.auth that throw PrivilegedActionException Modifier and Type Method Description static <T> TSubject. doAs(Subject subject, PrivilegedExceptionAction<T> action)Perform work as a particularSubject.static <T> TSubject. doAsPrivileged(Subject subject, PrivilegedExceptionAction<T> action, AccessControlContext acc)Perform privileged work as a particularSubject.
 
-