blob: a1539df552976eb306c25c944dd0dd6cd138b106 [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 // test needs to export rmid and communicate with objects on arbitrary ports
11 permission java.net.SocketPermission "*:1024-", "connect,accept,listen";
12};