jdk/test/sun/rmi/server/MarshalOutputStream/marshalForeignStub/security.policy
author ant
Wed, 19 Mar 2008 16:23:50 +0300
changeset 131 fe5ccd4774b4
parent 2 90ce3da70b43
child 23064 e16d4c844e76
permissions -rw-r--r--
6567410: PIT : java/awt/Focus/AutoRequestFocusTest/AutoRequestFocusSetVisibleTest.java fails Summary: A filter flag has been added to the HCBT focus hook. Reviewed-by: dcherepanov
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 codeBase "file:${java.home}/lib/ext/*" {
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
    permission java.security.AllPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
};
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
grant {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
    // used by TestLibrary to determine test environment
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
    permission java.util.PropertyPermission "test.classes", "read";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
    permission java.util.PropertyPermission "test.src", "read";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
    permission java.util.PropertyPermission "user.dir", "read";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
    permission java.util.PropertyPermission "java.home", "read";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
    // allow exporting of remote objects on an arbitrary port
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
    permission java.net.SocketPermission "*:1024-", "connect,accept,listen";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
};