1 /*
   2  * security policy used by activation groups.
   3  */
   4 
   5 grant {
   6   permission java.io.FilePermission "..${/}..${/}test.props", "read";
   7 
   8   // give the group permission to create a class that the main test process can not create
   9   permission java.lang.RuntimePermission "accessClassInPackage.sun.security.provider";
  10 
  11   // test needs to communicate with the activation system
  12   permission java.net.SocketPermission "*:1024-", "connect,accept,listen";
  13 };