author | chegar |
Wed, 18 Apr 2018 12:03:06 +0100 | |
branch | http-client-branch |
changeset 56451 | 9585061fdb04 |
parent 56265 | ec34ae013fbe |
parent 49765 | ee6f7a61f3a5 |
permissions | -rw-r--r-- |
48083 | 1 |
// |
49765 | 2 |
// Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved. |
48083 | 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 |
||
36131 | 24 |
// Policy 8 |
25 |
grant { |
|
26 |
// permissions common to all tests |
|
37791
ae33107fd8b3
8155928: Remove hardcoded port numbers from httpclient/Security.java test
michaelm
parents:
36131
diff
changeset
|
27 |
permission java.util.PropertyPermission "*", "read"; |
36131 | 28 |
permission java.io.FilePermission "${test.classes}${/}-", "read,write,delete"; |
29 |
permission java.lang.RuntimePermission "modifyThread"; |
|
30 |
permission java.util.logging.LoggingPermission "control", ""; |
|
31 |
permission java.net.SocketPermission "localhost:1024-", "accept,listen"; |
|
32 |
permission java.io.FilePermission "${test.src}${/}docs${/}-", "read"; |
|
33 |
permission java.lang.RuntimePermission "createClassLoader"; |
|
34 |
||
35 |
||
36 |
// permissions specific to this test |
|
49765 | 37 |
permission java.net.URLPermission "http://localhost:*/files/foo.txt", "GET:X-Foo1,X-Foo,X-Bar"; |
36131 | 38 |
}; |
39 |
||
40 |
// For proxy only. Not being tested |
|
41 |
grant codebase "file:${test.classes}/proxydir/-" { |
|
42 |
permission java.net.SocketPermission "localhost:1024-", "accept,listen,connect"; |
|
49765 | 43 |
permission java.net.SocketPermission "localhost:1024-", "connect,resolve"; |
36131 | 44 |
}; |