jdk/test/sun/rmi/transport/tcp/blockAccept/security.policy
author dcubed
Thu, 27 Mar 2008 14:15:59 -0700
changeset 286 2a80925bf7ac
parent 2 90ce3da70b43
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
grant {
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
    // Take this out once we can specify -Djava.security.debug on
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
    // the run line and figure out what else is needed
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
    permission java.security.AllPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
    permission java.net.SocketPermission "*:1024-65535", "connect,listen";
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
    permission java.util.PropertyPermission "http.proxyHost", "write";
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
    permission java.util.PropertyPermission "http.proxyPort", "write";
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
    permission java.lang.RuntimePermission "setFactory";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
};