0N/A/*
2362N/A * Copyright (c) 1998, 2004, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage java.security;
0N/A
0N/A
0N/A/**
0N/A * A computation to be performed with privileges enabled, that throws one or
0N/A * more checked exceptions. The computation is performed by invoking
0N/A * <code>AccessController.doPrivileged</code> on the
0N/A * <code>PrivilegedExceptionAction</code> object. This interface is
0N/A * used only for computations that throw checked exceptions;
0N/A * computations that do not throw
0N/A * checked exceptions should use <code>PrivilegedAction</code> instead.
0N/A *
0N/A * @see AccessController
0N/A * @see AccessController#doPrivileged(PrivilegedExceptionAction)
0N/A * @see AccessController#doPrivileged(PrivilegedExceptionAction,
0N/A * AccessControlContext)
0N/A * @see PrivilegedAction
0N/A */
0N/A
0N/Apublic interface PrivilegedExceptionAction<T> {
0N/A /**
0N/A * Performs the computation. This method will be called by
0N/A * <code>AccessController.doPrivileged</code> after enabling privileges.
0N/A *
0N/A * @return a class-dependent value that may represent the results of the
0N/A * computation. Each class that implements
0N/A * <code>PrivilegedExceptionAction</code> should document what
0N/A * (if anything) this value represents.
0N/A * @throws Exception an exceptional condition has occurred. Each class
0N/A * that implements <code>PrivilegedExceptionAction</code> should
0N/A * document the exceptions that its run method can throw.
0N/A * @see AccessController#doPrivileged(PrivilegedExceptionAction)
0N/A * @see AccessController#doPrivileged(PrivilegedExceptionAction,AccessControlContext)
0N/A */
0N/A
0N/A T run() throws Exception;
0N/A}