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

/*
 * security policy used by MarshalForeignStub test
 */

grant {

    // used by TestLibrary to determine test environment
    permission java.util.PropertyPermission "test.*", "read";
    permission java.util.PropertyPermission "user.dir", "read";
    permission java.util.PropertyPermission "java.home", "read";

    // allow exporting of remote objects on an arbitrary port
    permission java.net.SocketPermission "*:1024-", "connect,accept,listen";
};