jdk/test/sun/rmi/server/MarshalOutputStream/marshalForeignStub/security.policy
author stefank
Mon, 25 Aug 2014 09:10:13 +0200
changeset 26314 f8bc1966fb30
parent 25408 27563093d2d2
permissions -rw-r--r--
8055416: Several vm/gc/heap/summary "After GC" events emitted for the same GC ID Reviewed-by: brutisso, ehelin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * security policy used by MarshalForeignStub test
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
grant {
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
    // used by TestLibrary to determine test environment
23064
e16d4c844e76 8036095: RMI tests using testlibrary.RMID and testlibrary.JavaVM do not pass through vmoptions
smarks
parents: 2
diff changeset
     8
    permission java.util.PropertyPermission "test.*", "read";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
    permission java.util.PropertyPermission "user.dir", "read";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
    permission java.util.PropertyPermission "java.home", "read";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
    // allow exporting of remote objects on an arbitrary port
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
    permission java.net.SocketPermission "*:1024-", "connect,accept,listen";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
};