Uses of Class
java.security.AccessControlContext
Package
Description
Provides the classes and interfaces for the security framework.
This package provides a framework for authentication and
authorization.
-
Uses of AccessControlContext in java.security
Modifier and TypeMethodDescriptionstatic AccessControlContext
AccessController.getContext()
Deprecated, for removal: This API element is subject to removal in a future version.Returns anAccessControlContext
where thecheckPermission
method always throws anAccessControlException
and thegetDomainCombiner
method always returnsnull
.Modifier and TypeMethodDescriptionstatic <T> T
AccessController.doPrivileged
(PrivilegedAction<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
(PrivilegedAction<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.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
(PrivilegedAction<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, AccessControlContext context, Permission... perms) Deprecated, for removal: This API element is subject to removal in a future version.Performs the specified action.ModifierConstructorDescriptionAccessControlContext
(AccessControlContext acc, DomainCombiner combiner) Deprecated, for removal: This API element is subject to removal in a future version.Create a newAccessControlContext
with the givenAccessControlContext
andDomainCombiner
. -
Uses of AccessControlContext in javax.security.auth
Modifier and TypeMethodDescriptionstatic <T> T
Subject.doAsPrivileged
(Subject subject, PrivilegedAction<T> action, AccessControlContext acc) 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
.static Subject
Subject.getSubject
(AccessControlContext acc) Deprecated, for removal: This API element is subject to removal in a future version.This method used to get the subject associated with the providedAccessControlContext
, which was only useful in conjunction with the Security Manager, which is no longer supported.
PrivilegedAction
with privileges enabled and restricted by the specifiedAccessControlContext
.