equal
deleted
inserted
replaced
|
1 # We would like to avoid references from anywhere outside nashorn |
|
2 # to codegen, IR and parser packages, in particular script generated classes. |
|
3 # We ensure that by overriding "package.access" security property. |
|
4 |
|
5 # The following "package.access" value was copied from default java.security |
|
6 # of jre/lib/security and appended with nashorn IR, Codegen and Parser packages. |
|
7 |
|
8 # |
|
9 # List of comma-separated packages that start with or equal this string |
|
10 # will cause a security exception to be thrown when |
|
11 # passed to checkPackageAccess unless the |
|
12 # corresponding RuntimePermission ("accessClassInPackage."+package) has |
|
13 # been granted. |
|
14 package.access=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,jdk.internal.,jdk.nashorn.internal.ir., jdk.nashorn.internal.codegen., jdk.nashorn.internal.parser. |