author | jboes |
Fri, 08 Nov 2019 11:15:16 +0000 | |
changeset 59029 | 3786a0962570 |
parent 52121 | 934969c63223 |
permissions | -rw-r--r-- |
49765 | 1 |
// |
2 |
// Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. |
|
3 |
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
// |
|
5 |
// This code is free software; you can redistribute it and/or modify it |
|
6 |
// under the terms of the GNU General Public License version 2 only, as |
|
7 |
// published by the Free Software Foundation. |
|
8 |
// |
|
9 |
// This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
// version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
// accompanied this code). |
|
14 |
// |
|
15 |
// You should have received a copy of the GNU General Public License version |
|
16 |
// 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
// Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
// |
|
19 |
// Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
// or visit www.oracle.com if you need additional information or have any |
|
21 |
// questions. |
|
22 |
// |
|
23 |
||
52121
934969c63223
8211978: Move testlibrary/jdk/testlibrary/SimpleSSLContext.java and testkeys to network testlibrary
jjiang
parents:
49765
diff
changeset
|
24 |
// for JTwork/classes/0/test/lib/jdk/test/lib/net/SimpleSSLContext.class |
934969c63223
8211978: Move testlibrary/jdk/testlibrary/SimpleSSLContext.java and testkeys to network testlibrary
jjiang
parents:
49765
diff
changeset
|
25 |
grant codeBase "file:${test.classes}/../../../../test/lib/-" { |
49765 | 26 |
permission java.util.PropertyPermission "test.src.path", "read"; |
52121
934969c63223
8211978: Move testlibrary/jdk/testlibrary/SimpleSSLContext.java and testkeys to network testlibrary
jjiang
parents:
49765
diff
changeset
|
27 |
permission java.io.FilePermission "${test.src}/../../../../lib/jdk/test/lib/net/testkeys", "read"; |
49765 | 28 |
}; |
29 |
||
30 |
// for JTwork//classes/0/java/net/httpclient/http2/server/* |
|
31 |
grant codeBase "file:${test.classes}/../../../../java/net/httpclient/http2/server/*" { |
|
32 |
permission java.lang.RuntimePermission "accessClassInPackage.jdk.internal.net.http.common"; |
|
33 |
permission java.lang.RuntimePermission "accessClassInPackage.jdk.internal.net.http.frame"; |
|
34 |
permission java.lang.RuntimePermission "accessClassInPackage.jdk.internal.net.http.hpack"; |
|
35 |
permission java.lang.RuntimePermission "accessClassInPackage.sun.net.www.http"; |
|
36 |
||
37 |
permission java.net.SocketPermission "localhost:*", "listen,accept,resolve"; |
|
38 |
permission java.lang.RuntimePermission "modifyThread"; |
|
39 |
}; |
|
40 |
||
41 |
grant codeBase "file:${test.classes}/*" { |
|
42 |
permission java.io.FilePermission "${user.dir}${/}asFileDownloadTest.tmp.dir", "read,write"; |
|
43 |
permission java.io.FilePermission "${user.dir}${/}asFileDownloadTest.tmp.dir/-", "read,write"; |
|
44 |
||
45 |
permission java.net.URLPermission "http://localhost:*/http1/-", "GET,POST"; |
|
46 |
permission java.net.URLPermission "https://localhost:*/https1/-", "GET,POST"; |
|
47 |
permission java.net.URLPermission "http://localhost:*/http2/-", "GET,POST"; |
|
48 |
permission java.net.URLPermission "https://localhost:*/https2/-", "GET,POST"; |
|
49 |
||
50 |
||
51 |
// needed to grant permission to the HTTP/2 server |
|
52 |
permission java.lang.RuntimePermission "accessClassInPackage.jdk.internal.net.http.common"; |
|
53 |
permission java.lang.RuntimePermission "accessClassInPackage.jdk.internal.net.http.frame"; |
|
54 |
permission java.lang.RuntimePermission "accessClassInPackage.jdk.internal.net.http.hpack"; |
|
55 |
permission java.lang.RuntimePermission "accessClassInPackage.sun.net.www.http"; |
|
56 |
||
57 |
// for HTTP/1.1 server logging |
|
58 |
permission java.util.logging.LoggingPermission "control"; |
|
59 |
||
60 |
// needed to grant the HTTP servers |
|
61 |
permission java.net.SocketPermission "localhost:*", "listen,accept,resolve"; |
|
62 |
||
63 |
permission java.util.PropertyPermission "*", "read"; |
|
64 |
permission java.lang.RuntimePermission "modifyThread"; |
|
65 |
||
66 |
// Permission for DependentActionsTest |
|
67 |
permission java.lang.RuntimePermission "getStackWalkerWithClassReference"; |
|
68 |
}; |