Team LiB
Previous Section Next Section

PrivilegedExceptionAction<T>java.security

Java 1.2

This interface is like PrivilegedAction, except that its run( ) method may throw an exception. See PrivilegedAction for details.

public interface PrivilegedExceptionAction<T> {
// Public Instance Methods
     T run( ) throws Exception;  
}

Passed To

AccessController.doPrivileged( ), java.util.concurrent.Executors.callable( ), javax.security.auth.Subject.{doAs( ), doAsPrivileged( )}

    Team LiB
    Previous Section Next Section