dummy SecurityManager and related classes added

This commit is contained in:
Zsombor Gegesy
2010-08-15 14:47:45 +02:00
parent 6985e81503
commit 7376425b24
7 changed files with 105 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (c) 2008, Avian Contributors
/* Copyright (c) 2008, 2010 Avian Contributors
Permission to use, copy, modify, and/or distribute this software
for any purpose with or without fee is hereby granted, provided
@ -21,5 +21,9 @@ public class AccessController {
public static Object doPrivileged (PrivilegedAction action) {
return action.run();
}
public static void checkPermission(Permission perm) throws AccessControlException {
}
}