blob: 927b31143b616a7f39b59e3511f6e443292e4106 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * security policy used by the test process
3 */
4
5grant codeBase "file:${java.home}/lib/ext/*" {
6 permission java.security.AllPermission;
7};
8
9grant {
10 // so that synchronous DGC dirty call will succeed
11 permission java.net.SocketPermission "*:1024-", "accept,connect,listen";
12};