PrivilegedAction (Java SE 13 & JDK 13 )
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface PrivilegedAction<T>
A computation to be performed with privileges enabled. The computation is
performed by invoking AccessController.doPrivileged on the
PrivilegedAction object. This interface is used only for
computations that do not throw checked exceptions; computations that
throw checked exceptions must use PrivilegedExceptionAction
instead.
- Since:
- 1.2
- See Also:
AccessController,AccessController.doPrivileged(PrivilegedAction),PrivilegedExceptionAction
-
Method Details
-
run
T run()
Performs the computation. This method will be called by
AccessController.doPrivilegedafter enabling privileges.- Returns:
- a class-dependent value that may represent the results of the
computation. Each class that implements
PrivilegedActionshould document what (if anything) this value represents. - See Also:
AccessController.doPrivileged(PrivilegedAction),AccessController.doPrivileged(PrivilegedAction, AccessControlContext)
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2019, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.