src/java.base/share/classes/module-info.java
author jlaskey
Thu, 14 Nov 2019 12:39:49 -0400
branchJDK-8193209-branch
changeset 59086 214afc7a1e02
parent 58713 ad69fd32778e
permissions -rw-r--r--
[mq]: refresh
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 52914
diff changeset
     2
 * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     4
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    10
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    15
 * accompanied this code).
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    16
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    20
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    23
 * questions.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    24
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    25
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    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
a7697c107dd9 8182776: Fix typos in module declarations
mr
parents: 45654
diff changeset
    29
 * <dl>
a7697c107dd9 8182776: Fix typos in module declarations
mr
parents: 45654
diff changeset
    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>
45528
1e8c2f062ad3 8181639: Add tool and services information to module summary
mchung
parents: 45119
diff changeset
    39
 * </dl>
1e8c2f062ad3 8181639: Add tool and services information to module summary
mchung
parents: 45119
diff changeset
    40
 *
54950
46ae54c3026d 8223663: Update links for tool guides
jjg
parents: 54669
diff changeset
    41
 * @toolGuide java java launcher
46ae54c3026d 8223663: Update links for tool guides
jjg
parents: 54669
diff changeset
    42
 * @toolGuide keytool
46ae54c3026d 8223663: Update links for tool guides
jjg
parents: 54669
diff changeset
    43
 *
45528
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
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    76
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
module java.base {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
    exports java.io;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
    exports java.lang;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    81
    exports java.lang.annotation;
52914
4fa75d8ad418 8210031: implementation for JVM Constants API
vromero
parents: 52427
diff changeset
    82
    exports java.lang.constant;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    83
    exports java.lang.invoke;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    84
    exports java.lang.module;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    85
    exports java.lang.ref;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    86
    exports java.lang.reflect;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
    exports java.math;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    88
    exports java.net;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    89
    exports java.net.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    90
    exports java.nio;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    91
    exports java.nio.channels;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    92
    exports java.nio.channels.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    93
    exports java.nio.charset;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    94
    exports java.nio.charset.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    95
    exports java.nio.file;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    96
    exports java.nio.file.attribute;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    97
    exports java.nio.file.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    98
    exports java.security;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    99
    exports java.security.cert;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   100
    exports java.security.interfaces;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   101
    exports java.security.spec;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   102
    exports java.text;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   103
    exports java.text.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   104
    exports java.time;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   105
    exports java.time.chrono;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   106
    exports java.time.format;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   107
    exports java.time.temporal;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   108
    exports java.time.zone;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   109
    exports java.util;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   110
    exports java.util.concurrent;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   111
    exports java.util.concurrent.atomic;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   112
    exports java.util.concurrent.locks;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   113
    exports java.util.function;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   114
    exports java.util.jar;
59086
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   115
    exports java.util.random;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   116
    exports java.util.regex;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   117
    exports java.util.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   118
    exports java.util.stream;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   119
    exports java.util.zip;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   120
    exports javax.crypto;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   121
    exports javax.crypto.interfaces;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   122
    exports javax.crypto.spec;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   123
    exports javax.net;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   124
    exports javax.net.ssl;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   125
    exports javax.security.auth;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   126
    exports javax.security.auth.callback;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   127
    exports javax.security.auth.login;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   128
    exports javax.security.auth.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   129
    exports javax.security.auth.x500;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   130
    exports javax.security.cert;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   131
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   132
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   133
    // additional qualified exports may be inserted at build time
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   134
    // see make/gensrc/GenModuleInfo.gmk
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   135
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   136
    exports com.sun.security.ntlm to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   137
        java.security.sasl;
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   138
    exports jdk.internal to
58713
ad69fd32778e 8226585: Improve javac messages for using a preview API
jlahoda
parents: 57804
diff changeset
   139
        jdk.jfr,
ad69fd32778e 8226585: Improve javac messages for using a preview API
jlahoda
parents: 57804
diff changeset
   140
        jdk.compiler;
52427
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 52334
diff changeset
   141
    exports jdk.internal.access to
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 52334
diff changeset
   142
        java.desktop,
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 52334
diff changeset
   143
        java.logging,
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 52334
diff changeset
   144
        java.management,
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 52334
diff changeset
   145
        java.naming,
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 52334
diff changeset
   146
        java.rmi,
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 52334
diff changeset
   147
        jdk.jlink,
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 52334
diff changeset
   148
        jdk.net;
52334
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents: 51925
diff changeset
   149
    exports jdk.internal.event to
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents: 51925
diff changeset
   150
        jdk.jfr;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   151
    exports jdk.internal.jimage to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   152
        jdk.jlink;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   153
    exports jdk.internal.jimage.decompressor to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   154
        jdk.jlink;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41828
diff changeset
   155
    exports jdk.internal.loader to
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41828
diff changeset
   156
        java.instrument,
44359
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 43996
diff changeset
   157
        java.logging;
41352
f9844bad9052 8166860: Add magic number to jmod file
mchung
parents: 41135
diff changeset
   158
    exports jdk.internal.jmod to
48433
04d8d293e458 8194141: Remove JDK9Wrappers
jjg
parents: 47989
diff changeset
   159
        jdk.compiler,
41352
f9844bad9052 8166860: Add magic number to jmod file
mchung
parents: 41135
diff changeset
   160
        jdk.jlink;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   161
    exports jdk.internal.logger to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   162
        java.logging;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   163
    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
   164
        jdk.jartool,
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   165
        jdk.jfr,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   166
        jdk.jlink,
50594
9236593f3ce2 8200121: Remove unused qualified exports in java.base
mchung
parents: 50113
diff changeset
   167
        jdk.scripting.nashorn;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   168
    exports jdk.internal.org.objectweb.asm.tree to
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   169
        jdk.jfr,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   170
        jdk.jlink;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   171
    exports jdk.internal.org.objectweb.asm.util to
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   172
        jdk.jfr,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   173
        jdk.scripting.nashorn;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   174
    exports jdk.internal.org.objectweb.asm.commons to
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   175
        jdk.jfr,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   176
        jdk.scripting.nashorn;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   177
    exports jdk.internal.org.objectweb.asm.signature to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   178
        jdk.scripting.nashorn;
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   179
    exports jdk.internal.org.xml.sax to
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   180
        jdk.jfr;
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   181
    exports jdk.internal.org.xml.sax.helpers to
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   182
        jdk.jfr;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   183
    exports jdk.internal.misc to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   184
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   185
        java.logging,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   186
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   187
        java.naming,
52427
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 52334
diff changeset
   188
        java.net.http,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   189
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   190
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   191
        java.xml,
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44417
diff changeset
   192
        jdk.attach,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   193
        jdk.charsets,
48433
04d8d293e458 8194141: Remove JDK9Wrappers
jjg
parents: 47989
diff changeset
   194
        jdk.compiler,
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   195
        jdk.jfr,
41588
6e66ad59f99a 8166183: jshell tool: on return from Ctrl-Z, garbage on screen, dies with Ctrl-C
jlahoda
parents: 41481
diff changeset
   196
        jdk.jshell,
57804
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57592
diff changeset
   197
        jdk.nio.mapmode,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   198
        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
   199
        jdk.scripting.nashorn.shell,
36966
4209c9e19c45 8153737: Unsupported Module
chegar
parents: 36854
diff changeset
   200
        jdk.unsupported,
43995
20b18d22693a 8174879: Rename jdk.vm.ci to jdk.internal.vm.ci
kvn
parents: 43720
diff changeset
   201
        jdk.internal.vm.ci;
45654
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   202
    exports jdk.internal.module to
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   203
        java.instrument,
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   204
        java.management.rmi,
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   205
        jdk.jartool,
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   206
        jdk.jfr,
45654
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   207
        jdk.jlink;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   208
    exports jdk.internal.perf to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   209
        java.management,
43494
11801b2ff456 8173608: Separate JDK management agent from java.management module
mchung
parents: 43329
diff changeset
   210
        jdk.management.agent,
43533
33d180b3b647 8152206: Simplify jvmstat modules
gtriantafill
parents: 42707
diff changeset
   211
        jdk.internal.jvmstat;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   212
    exports jdk.internal.ref to
52427
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 52334
diff changeset
   213
        java.desktop;
37363
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   214
    exports jdk.internal.reflect to
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   215
        java.logging,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   216
        java.sql,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   217
        java.sql.rowset,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   218
        jdk.dynalink,
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 52914
diff changeset
   219
        jdk.internal.vm.ci,
37363
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   220
        jdk.scripting.nashorn,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   221
        jdk.unsupported;
45654
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   222
    exports jdk.internal.vm to
50594
9236593f3ce2 8200121: Remove unused qualified exports in java.base
mchung
parents: 50113
diff changeset
   223
        jdk.internal.jvmstat,
9236593f3ce2 8200121: Remove unused qualified exports in java.base
mchung
parents: 50113
diff changeset
   224
        jdk.management.agent;
36966
4209c9e19c45 8153737: Unsupported Module
chegar
parents: 36854
diff changeset
   225
    exports jdk.internal.vm.annotation to
50594
9236593f3ce2 8200121: Remove unused qualified exports in java.base
mchung
parents: 50113
diff changeset
   226
        jdk.internal.vm.ci,
9236593f3ce2 8200121: Remove unused qualified exports in java.base
mchung
parents: 50113
diff changeset
   227
        jdk.unsupported;
36745
51effd3e92d0 8152190: Move sun.misc.JarIndex and InvalidJarIndexException to an internal package
chegar
parents: 36673
diff changeset
   228
    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
   229
        jdk.jartool;
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   230
    exports jdk.internal.util.xml to
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   231
        jdk.jfr;
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   232
    exports jdk.internal.util.xml.impl to
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50053
diff changeset
   233
        jdk.jfr;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   234
    exports sun.net to
49765
ee6f7a61f3a5 8197564: HTTP Client implementation
chegar
parents: 49309
diff changeset
   235
        java.net.http,
48568
0255315ac8d4 8182125: Improve reliability of DNS lookups
vtewari
parents: 47989
diff changeset
   236
        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
   237
    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
   238
        jdk.net;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   239
    exports sun.net.dns to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   240
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   241
        jdk.naming.dns;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   242
    exports sun.net.util to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   243
        java.desktop,
45713
ee3f2cbfe23a 8182589: TLS SNI in new Java 9 client is not available
michaelm
parents: 45654
diff changeset
   244
        jdk.jconsole,
49765
ee6f7a61f3a5 8197564: HTTP Client implementation
chegar
parents: 49309
diff changeset
   245
        java.net.http;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   246
    exports sun.net.www to
49765
ee6f7a61f3a5 8197564: HTTP Client implementation
chegar
parents: 49309
diff changeset
   247
        java.net.http,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   248
        jdk.jartool;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   249
    exports sun.net.www.protocol.http to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   250
        java.security.jgss;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   251
    exports sun.nio.ch to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   252
        java.management,
43248
5e15de85a1a0 8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents: 43243
diff changeset
   253
        jdk.crypto.cryptoki,
50739
4bedc9338137 8198372: API to create a SelectableChannel to a FileDescriptor
alanb
parents: 50594
diff changeset
   254
        jdk.net,
52427
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 52334
diff changeset
   255
        jdk.sctp;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   256
    exports sun.nio.cs to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   257
        jdk.charsets;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   258
    exports sun.reflect.annotation to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   259
        jdk.compiler;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   260
    exports sun.reflect.generics.reflectiveObjects to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   261
        java.desktop;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   262
    exports sun.reflect.misc to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   263
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   264
        java.datatransfer,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   265
        java.management,
43503
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents: 43494
diff changeset
   266
        java.management.rmi,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   267
        java.rmi,
50594
9236593f3ce2 8200121: Remove unused qualified exports in java.base
mchung
parents: 50113
diff changeset
   268
        java.sql.rowset;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   269
    exports sun.security.action to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   270
        java.desktop,
41603
bb9d97b4c21b 8168313: Tighten permissions granted to jdk.crypto.pkcs11 module
mullan
parents: 41590
diff changeset
   271
        java.security.jgss;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   272
    exports sun.security.internal.interfaces to
43248
5e15de85a1a0 8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents: 43243
diff changeset
   273
        jdk.crypto.cryptoki;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   274
    exports sun.security.internal.spec to
43248
5e15de85a1a0 8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents: 43243
diff changeset
   275
        jdk.crypto.cryptoki;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   276
    exports sun.security.jca to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   277
        java.smartcardio,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   278
        jdk.crypto.ec,
43248
5e15de85a1a0 8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents: 43243
diff changeset
   279
        jdk.crypto.cryptoki,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   280
        jdk.naming.dns;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   281
    exports sun.security.pkcs to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   282
        jdk.crypto.ec,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   283
        jdk.jartool;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   284
    exports sun.security.provider to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   285
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   286
        java.security.jgss,
43248
5e15de85a1a0 8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents: 43243
diff changeset
   287
        jdk.crypto.cryptoki,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   288
        jdk.security.auth;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   289
    exports sun.security.provider.certpath to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   290
        java.naming;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   291
    exports sun.security.rsa to
43248
5e15de85a1a0 8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents: 43243
diff changeset
   292
        jdk.crypto.cryptoki;
41590
1c5b1891b8e0 8163304: jarsigner -verbose -verify should print the algorithms used to sign the jar
weijun
parents: 41588
diff changeset
   293
    exports sun.security.timestamp to
1c5b1891b8e0 8163304: jarsigner -verbose -verify should print the algorithms used to sign the jar
weijun
parents: 41588
diff changeset
   294
        jdk.jartool;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   295
    exports sun.security.tools to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   296
        jdk.jartool;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   297
    exports sun.security.util to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   298
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   299
        java.naming,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   300
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   301
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   302
        java.security.sasl,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   303
        java.smartcardio,
43206
4c18d1166944 8140353: Improve signature checking
mullan
parents: 43183
diff changeset
   304
        java.xml.crypto,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   305
        jdk.crypto.ec,
43248
5e15de85a1a0 8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents: 43243
diff changeset
   306
        jdk.crypto.cryptoki,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   307
        jdk.jartool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   308
        jdk.security.auth,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   309
        jdk.security.jgss;
50053
9bc1e6487cbb 8171277: Elliptic Curves for Security in Crypto
apetcher
parents: 49765
diff changeset
   310
    exports sun.security.util.math to
51339
554bb4e2d10d 8202941: GenModuleInfoSource build tool does not detect missing semicolons
mchung
parents: 50768
diff changeset
   311
        jdk.crypto.ec;
50053
9bc1e6487cbb 8171277: Elliptic Curves for Security in Crypto
apetcher
parents: 49765
diff changeset
   312
    exports sun.security.util.math.intpoly to
51339
554bb4e2d10d 8202941: GenModuleInfoSource build tool does not detect missing semicolons
mchung
parents: 50768
diff changeset
   313
        jdk.crypto.ec;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   314
    exports sun.security.x509 to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   315
        jdk.crypto.ec,
43248
5e15de85a1a0 8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents: 43243
diff changeset
   316
        jdk.crypto.cryptoki,
50594
9236593f3ce2 8200121: Remove unused qualified exports in java.base
mchung
parents: 50113
diff changeset
   317
        jdk.jartool;
43183
b50e0f90d284 8172529: Use PKIXValidator in jarsigner
weijun
parents: 42707
diff changeset
   318
    exports sun.security.validator to
b50e0f90d284 8172529: Use PKIXValidator in jarsigner
weijun
parents: 42707
diff changeset
   319
        jdk.jartool;
39734
7701942a1e7b 8159214: jlink --include-locales problems
naoto
parents: 38796
diff changeset
   320
    exports sun.util.cldr to
7701942a1e7b 8159214: jlink --include-locales problems
naoto
parents: 38796
diff changeset
   321
        jdk.jlink;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   322
    exports sun.util.locale.provider to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   323
        java.desktop,
39734
7701942a1e7b 8159214: jlink --include-locales problems
naoto
parents: 38796
diff changeset
   324
        jdk.jlink,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   325
        jdk.localedata;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   326
    exports sun.util.logging to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   327
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   328
        java.logging,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   329
        java.prefs;
39734
7701942a1e7b 8159214: jlink --include-locales problems
naoto
parents: 38796
diff changeset
   330
    exports sun.util.resources to
7701942a1e7b 8159214: jlink --include-locales problems
naoto
parents: 38796
diff changeset
   331
        jdk.localedata;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   332
45654
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   333
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   334
    // 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
   335
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   336
    uses java.lang.System.LoggerFinder;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   337
    uses java.net.ContentHandlerFactory;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   338
    uses java.net.spi.URLStreamHandlerProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   339
    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
   340
    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
   341
    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
   342
    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
   343
    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
   344
    uses java.security.Provider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   345
    uses java.text.spi.BreakIteratorProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   346
    uses java.text.spi.CollatorProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   347
    uses java.text.spi.DateFormatProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   348
    uses java.text.spi.DateFormatSymbolsProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   349
    uses java.text.spi.DecimalFormatSymbolsProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   350
    uses java.text.spi.NumberFormatProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   351
    uses java.time.chrono.AbstractChronology;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   352
    uses java.time.chrono.Chronology;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   353
    uses java.time.zone.ZoneRulesProvider;
59086
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   354
    uses java.util.random.RandomGenerator;
45654
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   355
    uses java.util.spi.CalendarDataProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   356
    uses java.util.spi.CalendarNameProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   357
    uses java.util.spi.CurrencyNameProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   358
    uses java.util.spi.LocaleNameProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   359
    uses java.util.spi.ResourceBundleControlProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   360
    uses java.util.spi.ResourceBundleProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   361
    uses java.util.spi.TimeZoneNameProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   362
    uses java.util.spi.ToolProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   363
    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
   364
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   365
    // JDK-internal service types
45654
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
   366
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   367
    uses jdk.internal.logger.DefaultLoggerFinder;
42360
5e60b1e45041 8075577: java.time does not support HOST provider
rgoel
parents: 42338
diff changeset
   368
    uses sun.text.spi.JavaTimeDateTimePatternProvider;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   369
    uses sun.util.spi.CalendarProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   370
    uses sun.util.locale.provider.LocaleDataMetaInfo;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   371
    uses sun.util.resources.LocaleData.CommonResourceBundleProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   372
    uses sun.util.resources.LocaleData.SupplementaryResourceBundleProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   373
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   374
    // Built-in service providers that are located via ServiceLoader
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   375
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   376
    provides java.nio.file.spi.FileSystemProvider with
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   377
        jdk.internal.jrtfs.JrtFileSystemProvider;
59086
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   378
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   379
    provides java.util.random.RandomGenerator with
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   380
        java.security.SecureRandom,
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   381
        java.util.Random,
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   382
        java.util.random.L128X256MixRandom,
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   383
        java.util.random.L64X1024MixRandom,
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   384
        java.util.random.L64X128MixRandom,
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   385
        java.util.random.L64X256MixRandom,
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   386
        java.util.random.MRG32k3a,
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   387
        java.util.random.Xoroshiro128StarStar,
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   388
        java.util.random.Xoshiro256StarStar;
214afc7a1e02 [mq]: refresh
jlaskey
parents: 58713
diff changeset
   389
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   390
}