jdk/test/javax/swing/JFileChooser/7036025/security.policy
author goetz
Tue, 09 Dec 2014 11:57:46 +0100
changeset 28187 fc19df82d6ee
parent 9486 20a70b3d09c1
permissions -rw-r--r--
8066964: ppc64: argument and return type profiling, fix problem with popframe Reviewed-by: roland, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9486
20a70b3d09c1 7036025: java.security.AccessControlException when creating JFileChooser in signed applet
rupashka
parents:
diff changeset
     1
grant {
20a70b3d09c1 7036025: java.security.AccessControlException when creating JFileChooser in signed applet
rupashka
parents:
diff changeset
     2
    permission java.io.FilePermission "C:\\temp\\*", "read";
20a70b3d09c1 7036025: java.security.AccessControlException when creating JFileChooser in signed applet
rupashka
parents:
diff changeset
     3
    permission java.io.FilePermission "C:\\temp", "read,write,delete";
20a70b3d09c1 7036025: java.security.AccessControlException when creating JFileChooser in signed applet
rupashka
parents:
diff changeset
     4
    permission java.util.PropertyPermission "*", "read";
20a70b3d09c1 7036025: java.security.AccessControlException when creating JFileChooser in signed applet
rupashka
parents:
diff changeset
     5
};