author | lana |
Thu, 18 Jan 2018 18:58:46 +0000 | |
changeset 48608 | 1dab70e20292 |
parent 48568 | 0255315ac8d4 |
parent 48433 | 04d8d293e458 |
child 49307 | 333d25abbb51 |
child 56089 | 42208b2f224e |
permissions | -rw-r--r-- |
36511 | 1 |
/* |
48433 | 2 |
* Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved. |
36511 | 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. Oracle designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
24 |
*/ |
|
25 |
||
26 |
/** |
|
40405
127fac211e5c
8161965: Create initial javadoc description for modules
lancea
parents:
40251
diff
changeset
|
27 |
* Defines the foundational APIs of the Java SE Platform. |
43710
8fa2058eb740
8173957: Fix @since in module-info.java in dev/jdk repo
mli
parents:
43538
diff
changeset
|
28 |
* |
45782 | 29 |
* <dl> |
30 |
* <dt class="simpleTagLabel" style="font-family:'DejaVu Sans', Arial, Helvetica, sans serif">Providers:</dt> |
|
45528
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
31 |
* <dd> The JDK implementation of this module provides an implementation of |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
32 |
* the {@index jrt jrt} {@linkplain java.nio.file.spi.FileSystemProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
33 |
* file system provider} to enumerate and read the class and resource |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
34 |
* files in a run-time image. |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
35 |
* The jrt file system can be created by calling |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
36 |
* {@link java.nio.file.FileSystems#newFileSystem |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
37 |
* FileSystems.newFileSystem(URI.create("jrt:/"))}. |
47117
2e7eed499598
8187021: Remove 2 redundant <p> tags in java.base API docs
jjg
parents:
45835
diff
changeset
|
38 |
* </dd> |
45782 | 39 |
* <dt class="simpleTagLabel" style="font-family:'DejaVu Sans', Arial, Helvetica, sans serif">Tool Guides:</dt> |
40 |
* <dd style="font-family:'DejaVu Sans', Arial, Helvetica, sans serif"> {@extLink java_tool_reference java launcher}, |
|
45528
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
41 |
* {@extLink keytool_tool_reference keytool}</dd> |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
42 |
* </dl> |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
43 |
* |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
44 |
* @provides java.nio.file.spi.FileSystemProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
45 |
* |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
46 |
* @uses java.lang.System.LoggerFinder |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
47 |
* @uses java.net.ContentHandlerFactory |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
48 |
* @uses java.net.spi.URLStreamHandlerProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
49 |
* @uses java.nio.channels.spi.AsynchronousChannelProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
50 |
* @uses java.nio.channels.spi.SelectorProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
51 |
* @uses java.nio.charset.spi.CharsetProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
52 |
* @uses java.nio.file.spi.FileSystemProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
53 |
* @uses java.nio.file.spi.FileTypeDetector |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
54 |
* @uses java.security.Provider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
55 |
* @uses java.text.spi.BreakIteratorProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
56 |
* @uses java.text.spi.CollatorProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
57 |
* @uses java.text.spi.DateFormatProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
58 |
* @uses java.text.spi.DateFormatSymbolsProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
59 |
* @uses java.text.spi.DecimalFormatSymbolsProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
60 |
* @uses java.text.spi.NumberFormatProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
61 |
* @uses java.time.chrono.AbstractChronology |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
62 |
* @uses java.time.chrono.Chronology |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
63 |
* @uses java.time.zone.ZoneRulesProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
64 |
* @uses java.util.spi.CalendarDataProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
65 |
* @uses java.util.spi.CalendarNameProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
66 |
* @uses java.util.spi.CurrencyNameProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
67 |
* @uses java.util.spi.LocaleNameProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
68 |
* @uses java.util.spi.ResourceBundleControlProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
69 |
* @uses java.util.spi.ResourceBundleProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
70 |
* @uses java.util.spi.TimeZoneNameProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
71 |
* @uses java.util.spi.ToolProvider |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
72 |
* @uses javax.security.auth.spi.LoginModule |
1e8c2f062ad3
8181639: Add tool and services information to module summary
mchung
parents:
45119
diff
changeset
|
73 |
* |
44417
a431edba1629
8173303: Add module-subgraph images to main platform documentation
mchung
parents:
44359
diff
changeset
|
74 |
* @moduleGraph |
43710
8fa2058eb740
8173957: Fix @since in module-info.java in dev/jdk repo
mli
parents:
43538
diff
changeset
|
75 |
* @since 9 |
36511 | 76 |
*/ |
77 |
module java.base { |
|
78 |
||
79 |
exports java.io; |
|
80 |
exports java.lang; |
|
81 |
exports java.lang.annotation; |
|
82 |
exports java.lang.invoke; |
|
83 |
exports java.lang.module; |
|
84 |
exports java.lang.ref; |
|
85 |
exports java.lang.reflect; |
|
86 |
exports java.math; |
|
87 |
exports java.net; |
|
88 |
exports java.net.spi; |
|
89 |
exports java.nio; |
|
90 |
exports java.nio.channels; |
|
91 |
exports java.nio.channels.spi; |
|
92 |
exports java.nio.charset; |
|
93 |
exports java.nio.charset.spi; |
|
94 |
exports java.nio.file; |
|
95 |
exports java.nio.file.attribute; |
|
96 |
exports java.nio.file.spi; |
|
97 |
exports java.security; |
|
98 |
exports java.security.acl; |
|
99 |
exports java.security.cert; |
|
100 |
exports java.security.interfaces; |
|
101 |
exports java.security.spec; |
|
102 |
exports java.text; |
|
103 |
exports java.text.spi; |
|
104 |
exports java.time; |
|
105 |
exports java.time.chrono; |
|
106 |
exports java.time.format; |
|
107 |
exports java.time.temporal; |
|
108 |
exports java.time.zone; |
|
109 |
exports java.util; |
|
110 |
exports java.util.concurrent; |
|
111 |
exports java.util.concurrent.atomic; |
|
112 |
exports java.util.concurrent.locks; |
|
113 |
exports java.util.function; |
|
114 |
exports java.util.jar; |
|
115 |
exports java.util.regex; |
|
116 |
exports java.util.spi; |
|
117 |
exports java.util.stream; |
|
118 |
exports java.util.zip; |
|
119 |
exports javax.crypto; |
|
120 |
exports javax.crypto.interfaces; |
|
121 |
exports javax.crypto.spec; |
|
122 |
exports javax.net; |
|
123 |
exports javax.net.ssl; |
|
124 |
exports javax.security.auth; |
|
125 |
exports javax.security.auth.callback; |
|
126 |
exports javax.security.auth.login; |
|
127 |
exports javax.security.auth.spi; |
|
128 |
exports javax.security.auth.x500; |
|
129 |
exports javax.security.cert; |
|
130 |
||
131 |
||
132 |
// additional qualified exports may be inserted at build time |
|
133 |
// see make/gensrc/GenModuleInfo.gmk |
|
134 |
||
135 |
exports com.sun.security.ntlm to |
|
136 |
java.security.sasl; |
|
137 |
exports jdk.internal.jimage to |
|
138 |
jdk.jlink; |
|
139 |
exports jdk.internal.jimage.decompressor to |
|
140 |
jdk.jlink; |
|
42338
a60f280f803c
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41828
diff
changeset
|
141 |
exports jdk.internal.loader to |
a60f280f803c
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41828
diff
changeset
|
142 |
java.instrument, |
44359
c6761862ca0b
8174823: Module system implementation refresh (3/2017)
alanb
parents:
43996
diff
changeset
|
143 |
java.logging; |
41352 | 144 |
exports jdk.internal.jmod to |
48433 | 145 |
jdk.compiler, |
41352 | 146 |
jdk.jlink; |
36511 | 147 |
exports jdk.internal.logger to |
148 |
java.logging; |
|
149 |
exports jdk.internal.org.objectweb.asm to |
|
40251
481b890e50a3
8158295: Add a multi-release jar validation mechanism to jar tool
sdrach
parents:
39776
diff
changeset
|
150 |
jdk.jartool, |
36511 | 151 |
jdk.jlink, |
152 |
jdk.scripting.nashorn, |
|
43995 | 153 |
jdk.internal.vm.ci; |
36511 | 154 |
exports jdk.internal.org.objectweb.asm.tree to |
155 |
jdk.jlink; |
|
156 |
exports jdk.internal.org.objectweb.asm.util to |
|
157 |
jdk.scripting.nashorn; |
|
158 |
exports jdk.internal.org.objectweb.asm.commons to |
|
159 |
jdk.scripting.nashorn; |
|
160 |
exports jdk.internal.org.objectweb.asm.signature to |
|
161 |
jdk.scripting.nashorn; |
|
162 |
exports jdk.internal.math to |
|
163 |
java.desktop; |
|
164 |
exports jdk.internal.misc to |
|
165 |
java.desktop, |
|
166 |
java.logging, |
|
167 |
java.management, |
|
168 |
java.naming, |
|
169 |
java.rmi, |
|
170 |
java.security.jgss, |
|
171 |
java.sql, |
|
172 |
java.xml, |
|
45004
ea3137042a61
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44417
diff
changeset
|
173 |
jdk.attach, |
36511 | 174 |
jdk.charsets, |
48433 | 175 |
jdk.compiler, |
44359
c6761862ca0b
8174823: Module system implementation refresh (3/2017)
alanb
parents:
43996
diff
changeset
|
176 |
jdk.incubator.httpclient, |
41135
01650fdf3284
8153654: Update jdeps to be multi-release jar aware
sdrach
parents:
40944
diff
changeset
|
177 |
jdk.jdeps, |
37779
7c84df693837
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37575
diff
changeset
|
178 |
jdk.jlink, |
41588
6e66ad59f99a
8166183: jshell tool: on return from Ctrl-Z, garbage on screen, dies with Ctrl-C
jlahoda
parents:
41481
diff
changeset
|
179 |
jdk.jshell, |
37679 | 180 |
jdk.net, |
36511 | 181 |
jdk.scripting.nashorn, |
41588
6e66ad59f99a
8166183: jshell tool: on return from Ctrl-Z, garbage on screen, dies with Ctrl-C
jlahoda
parents:
41481
diff
changeset
|
182 |
jdk.scripting.nashorn.shell, |
36966 | 183 |
jdk.unsupported, |
43995 | 184 |
jdk.internal.vm.ci; |
45654
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
185 |
exports jdk.internal.module to |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
186 |
java.instrument, |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
187 |
java.management.rmi, |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
188 |
jdk.jartool, |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
189 |
jdk.jlink; |
36511 | 190 |
exports jdk.internal.perf to |
191 |
java.desktop, |
|
192 |
java.management, |
|
43494
11801b2ff456
8173608: Separate JDK management agent from java.management module
mchung
parents:
43329
diff
changeset
|
193 |
jdk.management.agent, |
43533 | 194 |
jdk.internal.jvmstat; |
36511 | 195 |
exports jdk.internal.ref to |
42707 | 196 |
java.desktop, |
197 |
jdk.unsupported; |
|
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
36967
diff
changeset
|
198 |
exports jdk.internal.reflect to |
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
36967
diff
changeset
|
199 |
java.logging, |
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
36967
diff
changeset
|
200 |
java.sql, |
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
36967
diff
changeset
|
201 |
java.sql.rowset, |
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
36967
diff
changeset
|
202 |
jdk.dynalink, |
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
36967
diff
changeset
|
203 |
jdk.scripting.nashorn, |
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
36967
diff
changeset
|
204 |
jdk.unsupported; |
45654
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
205 |
exports jdk.internal.vm to |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
206 |
jdk.management.agent, |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
207 |
jdk.internal.jvmstat; |
36966 | 208 |
exports jdk.internal.vm.annotation to |
38789
178dd1b12732
8144826: [JVMCI] Remove jdk.vm.ci.hotspot.Stable and use jdk.internal.vm.annotation.Stable
psandoz
parents:
37780
diff
changeset
|
209 |
jdk.unsupported, |
45119
decbbff9fdb4
8179021: Latest bugfixes to WebSocket/HPACK from the sandbox repo
prappo
parents:
45004
diff
changeset
|
210 |
jdk.internal.vm.ci, |
decbbff9fdb4
8179021: Latest bugfixes to WebSocket/HPACK from the sandbox repo
prappo
parents:
45004
diff
changeset
|
211 |
jdk.incubator.httpclient; |
36745
51effd3e92d0
8152190: Move sun.misc.JarIndex and InvalidJarIndexException to an internal package
chegar
parents:
36673
diff
changeset
|
212 |
exports jdk.internal.util.jar to |
47989
f1ad41a05fb7
8191942: Replace jdeps use of jdk.internal.util.jar.VersionedStream with new public API
mchung
parents:
47987
diff
changeset
|
213 |
jdk.jartool; |
36511 | 214 |
exports sun.net to |
48568 | 215 |
jdk.incubator.httpclient, |
216 |
jdk.naming.dns; |
|
37676
24ef455da1b0
8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents:
37575
diff
changeset
|
217 |
exports sun.net.ext to |
24ef455da1b0
8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents:
37575
diff
changeset
|
218 |
jdk.net; |
36511 | 219 |
exports sun.net.dns to |
220 |
java.security.jgss, |
|
221 |
jdk.naming.dns; |
|
222 |
exports sun.net.util to |
|
223 |
java.desktop, |
|
45713
ee3f2cbfe23a
8182589: TLS SNI in new Java 9 client is not available
michaelm
parents:
45654
diff
changeset
|
224 |
jdk.jconsole, |
ee3f2cbfe23a
8182589: TLS SNI in new Java 9 client is not available
michaelm
parents:
45654
diff
changeset
|
225 |
jdk.incubator.httpclient; |
36511 | 226 |
exports sun.net.www to |
44359
c6761862ca0b
8174823: Module system implementation refresh (3/2017)
alanb
parents:
43996
diff
changeset
|
227 |
java.desktop, |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
42360
diff
changeset
|
228 |
jdk.incubator.httpclient, |
36511 | 229 |
jdk.jartool; |
230 |
exports sun.net.www.protocol.http to |
|
231 |
java.security.jgss; |
|
232 |
exports sun.nio.ch to |
|
233 |
java.management, |
|
43248
5e15de85a1a0
8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents:
43243
diff
changeset
|
234 |
jdk.crypto.cryptoki, |
42707 | 235 |
jdk.sctp, |
236 |
jdk.unsupported; |
|
36511 | 237 |
exports sun.nio.cs to |
238 |
java.desktop, |
|
239 |
jdk.charsets; |
|
38742
4af80d6e9e4d
8066258: Re-examine com.sun.nio.file to see if it should be a supported API
alanb
parents:
38583
diff
changeset
|
240 |
exports sun.nio.fs to |
4af80d6e9e4d
8066258: Re-examine com.sun.nio.file to see if it should be a supported API
alanb
parents:
38583
diff
changeset
|
241 |
jdk.unsupported; |
36511 | 242 |
exports sun.reflect.annotation to |
243 |
jdk.compiler; |
|
244 |
exports sun.reflect.generics.reflectiveObjects to |
|
245 |
java.desktop; |
|
246 |
exports sun.reflect.misc to |
|
247 |
java.desktop, |
|
248 |
java.datatransfer, |
|
249 |
java.management, |
|
43503
bc7f8619ab70
8173607: JMX RMI connector should be in its own module
dfuchs
parents:
43494
diff
changeset
|
250 |
java.management.rmi, |
36511 | 251 |
java.rmi, |
252 |
java.sql.rowset, |
|
43811
da3dcded5541
8174735: Update JAX-WS RI integration to latest version
aefimov
parents:
43720
diff
changeset
|
253 |
java.xml; |
36511 | 254 |
exports sun.security.action to |
255 |
java.desktop, |
|
41603
bb9d97b4c21b
8168313: Tighten permissions granted to jdk.crypto.pkcs11 module
mullan
parents:
41590
diff
changeset
|
256 |
java.security.jgss; |
36511 | 257 |
exports sun.security.internal.interfaces to |
43248
5e15de85a1a0
8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents:
43243
diff
changeset
|
258 |
jdk.crypto.cryptoki; |
36511 | 259 |
exports sun.security.internal.spec to |
43248
5e15de85a1a0
8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents:
43243
diff
changeset
|
260 |
jdk.crypto.cryptoki; |
36511 | 261 |
exports sun.security.jca to |
262 |
java.smartcardio, |
|
263 |
jdk.crypto.ec, |
|
43248
5e15de85a1a0
8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents:
43243
diff
changeset
|
264 |
jdk.crypto.cryptoki, |
36511 | 265 |
jdk.naming.dns; |
266 |
exports sun.security.pkcs to |
|
267 |
jdk.crypto.ec, |
|
268 |
jdk.jartool; |
|
269 |
exports sun.security.provider to |
|
270 |
java.rmi, |
|
271 |
java.security.jgss, |
|
43248
5e15de85a1a0
8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents:
43243
diff
changeset
|
272 |
jdk.crypto.cryptoki, |
36511 | 273 |
jdk.security.auth; |
274 |
exports sun.security.provider.certpath to |
|
275 |
java.naming; |
|
276 |
exports sun.security.rsa to |
|
43248
5e15de85a1a0
8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents:
43243
diff
changeset
|
277 |
jdk.crypto.cryptoki; |
36511 | 278 |
exports sun.security.ssl to |
279 |
java.security.jgss; |
|
41590
1c5b1891b8e0
8163304: jarsigner -verbose -verify should print the algorithms used to sign the jar
weijun
parents:
41588
diff
changeset
|
280 |
exports sun.security.timestamp to |
1c5b1891b8e0
8163304: jarsigner -verbose -verify should print the algorithms used to sign the jar
weijun
parents:
41588
diff
changeset
|
281 |
jdk.jartool; |
36511 | 282 |
exports sun.security.tools to |
283 |
jdk.jartool; |
|
284 |
exports sun.security.util to |
|
285 |
java.desktop, |
|
286 |
java.naming, |
|
287 |
java.rmi, |
|
288 |
java.security.jgss, |
|
289 |
java.security.sasl, |
|
290 |
java.smartcardio, |
|
43206 | 291 |
java.xml.crypto, |
36511 | 292 |
jdk.crypto.ec, |
43248
5e15de85a1a0
8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents:
43243
diff
changeset
|
293 |
jdk.crypto.cryptoki, |
36511 | 294 |
jdk.jartool, |
295 |
jdk.security.auth, |
|
296 |
jdk.security.jgss; |
|
297 |
exports sun.security.x509 to |
|
298 |
jdk.crypto.ec, |
|
43248
5e15de85a1a0
8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents:
43243
diff
changeset
|
299 |
jdk.crypto.cryptoki, |
36511 | 300 |
jdk.jartool, |
301 |
jdk.security.auth; |
|
43183 | 302 |
exports sun.security.validator to |
303 |
jdk.jartool; |
|
36511 | 304 |
exports sun.text.resources to |
305 |
jdk.localedata; |
|
39734 | 306 |
exports sun.util.cldr to |
307 |
jdk.jlink; |
|
36511 | 308 |
exports sun.util.locale.provider to |
309 |
java.desktop, |
|
39734 | 310 |
jdk.jlink, |
36511 | 311 |
jdk.localedata; |
312 |
exports sun.util.logging to |
|
313 |
java.desktop, |
|
314 |
java.logging, |
|
315 |
java.prefs; |
|
39734 | 316 |
exports sun.util.resources to |
317 |
jdk.localedata; |
|
36511 | 318 |
|
45654
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
319 |
|
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
320 |
// the service types defined by the APIs in this module |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
321 |
|
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
322 |
uses java.lang.System.LoggerFinder; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
323 |
uses java.net.ContentHandlerFactory; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
324 |
uses java.net.spi.URLStreamHandlerProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
325 |
uses java.nio.channels.spi.AsynchronousChannelProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
326 |
uses java.nio.channels.spi.SelectorProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
327 |
uses java.nio.charset.spi.CharsetProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
328 |
uses java.nio.file.spi.FileSystemProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
329 |
uses java.nio.file.spi.FileTypeDetector; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
330 |
uses java.security.Provider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
331 |
uses java.text.spi.BreakIteratorProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
332 |
uses java.text.spi.CollatorProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
333 |
uses java.text.spi.DateFormatProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
334 |
uses java.text.spi.DateFormatSymbolsProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
335 |
uses java.text.spi.DecimalFormatSymbolsProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
336 |
uses java.text.spi.NumberFormatProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
337 |
uses java.time.chrono.AbstractChronology; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
338 |
uses java.time.chrono.Chronology; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
339 |
uses java.time.zone.ZoneRulesProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
340 |
uses java.util.spi.CalendarDataProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
341 |
uses java.util.spi.CalendarNameProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
342 |
uses java.util.spi.CurrencyNameProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
343 |
uses java.util.spi.LocaleNameProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
344 |
uses java.util.spi.ResourceBundleControlProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
345 |
uses java.util.spi.ResourceBundleProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
346 |
uses java.util.spi.TimeZoneNameProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
347 |
uses java.util.spi.ToolProvider; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
348 |
uses javax.security.auth.spi.LoginModule; |
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
349 |
|
36511 | 350 |
// JDK-internal service types |
45654
5ff2edfa03fc
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
45528
diff
changeset
|
351 |
|
36511 | 352 |
uses jdk.internal.logger.DefaultLoggerFinder; |
353 |
uses sun.security.ssl.ClientKeyExchangeService; |
|
42360 | 354 |
uses sun.text.spi.JavaTimeDateTimePatternProvider; |
36511 | 355 |
uses sun.util.spi.CalendarProvider; |
356 |
uses sun.util.locale.provider.LocaleDataMetaInfo; |
|
357 |
uses sun.util.resources.LocaleData.CommonResourceBundleProvider; |
|
358 |
uses sun.util.resources.LocaleData.SupplementaryResourceBundleProvider; |
|
359 |
||
360 |
// Built-in service providers that are located via ServiceLoader |
|
361 |
||
362 |
provides java.nio.file.spi.FileSystemProvider with |
|
363 |
jdk.internal.jrtfs.JrtFileSystemProvider; |
|
364 |
} |