All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.security.AccessController Maven / Gradle / Ivy

The newest version!
package java.security;

public final class AccessController {
    /**
     * @throws AccessControlException
     */
    public static void checkPermission(Permission perm) throws AccessControlException {}

    public static Object doPrivileged(PrivilegedAction action) {
        return null;
    }

    public static Object doPrivileged(PrivilegedAction action, AccessControlContext context) {
        return null;
    }

    /**
     * @throws PrivilegedActionException
     */
    public static Object doPrivileged(PrivilegedExceptionAction action) throws PrivilegedActionException {
        return null;
    }

    /**
     * @throws PrivilegedActionException
     */
    public static Object doPrivileged(PrivilegedExceptionAction action, AccessControlContext context) throws PrivilegedActionException {
        return null;
    }

    public static AccessControlContext getContext() {
        return null;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy