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

@ -10,4 +10,10 @@
package java.security;
public class AllPermission extends Permission { }
public class AllPermission extends Permission {
public AllPermission() {
super("<all>");
}
}