1 grant { 
   2         // "standard" properies that can be read by anyone
   3         permission java.io.FilePermission "-","read,write,execute";
   4         permission java.io.SerializablePermission "enableSubstitution";
   5 
   6         // Needed to get access to private writeObjectMethod and
   7         // to be able to call it.
   8         permission java.lang.reflect.ReflectPermission "access";
   9 };