MCPcopy Create free account
hub / github.com/ReadyTalk/avian / AccessController

Class AccessController

classpath/java/security/AccessController.java:19–29  ·  view source on GitHub ↗

No real access control is implemented here. @author zsombor

Source from the content-addressed store, hash-verified

17 *
18 */
19public class AccessController {
20
21 public static <T> T doPrivileged (PrivilegedAction<T> action) {
22 return action.run();
23 }
24
25 public static void checkPermission(Permission perm) throws AccessControlException {
26
27 }
28
29}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected