jdk/src/java.base/share/classes/module-info.java
author alanb
Thu, 01 Dec 2016 08:57:53 +0000
changeset 42338 a60f280f803c
parent 41828 0436ea0c6099
child 42360 5e60b1e45041
permissions -rw-r--r--
8169069: Module system implementation refresh (11/2016) Reviewed-by: plevart, chegar, psandoz, mchung, alanb, dfuchs, naoto, coffeys, weijun Contributed-by: alan.bateman@oracle.com, mandy.chung@oracle.com, claes.redestad@oracle.com, mark.reinhold@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
37575
ebdc1cdf681e 8077360: Lower the number of providers created when using ServiceLoader
valeriep
parents: 37363
diff changeset
     2
 * Copyright (c) 2014, 2016, 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.
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    28
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    29
module java.base {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    30
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    31
    exports java.io;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    32
    exports java.lang;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    33
    exports java.lang.annotation;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    34
    exports java.lang.invoke;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    35
    exports java.lang.module;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
    exports java.lang.ref;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    37
    exports java.lang.reflect;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    38
    exports java.math;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
    exports java.net;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    40
    exports java.net.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
    exports java.nio;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    42
    exports java.nio.channels;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    43
    exports java.nio.channels.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    44
    exports java.nio.charset;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    45
    exports java.nio.charset.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    46
    exports java.nio.file;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    47
    exports java.nio.file.attribute;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    48
    exports java.nio.file.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    49
    exports java.security;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    50
    exports java.security.acl;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    51
    exports java.security.cert;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    52
    exports java.security.interfaces;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    53
    exports java.security.spec;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    54
    exports java.text;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    55
    exports java.text.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    56
    exports java.time;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    57
    exports java.time.chrono;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    58
    exports java.time.format;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    59
    exports java.time.temporal;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    60
    exports java.time.zone;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    61
    exports java.util;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    62
    exports java.util.concurrent;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    63
    exports java.util.concurrent.atomic;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    64
    exports java.util.concurrent.locks;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    65
    exports java.util.function;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    66
    exports java.util.jar;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    67
    exports java.util.regex;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    68
    exports java.util.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    69
    exports java.util.stream;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    70
    exports java.util.zip;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    71
    exports javax.crypto;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    72
    exports javax.crypto.interfaces;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    73
    exports javax.crypto.spec;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    74
    exports javax.net;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    75
    exports javax.net.ssl;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    76
    exports javax.security.auth;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
    exports javax.security.auth.callback;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
    exports javax.security.auth.login;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
    exports javax.security.auth.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
    exports javax.security.auth.x500;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    81
    exports javax.security.cert;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    82
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    83
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    84
    // the service types defined by the APIs in this module
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    85
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    86
    uses java.lang.System.LoggerFinder;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
    uses java.net.ContentHandlerFactory;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    88
    uses java.net.spi.URLStreamHandlerProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    89
    uses java.nio.channels.spi.AsynchronousChannelProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    90
    uses java.nio.channels.spi.SelectorProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    91
    uses java.nio.charset.spi.CharsetProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    92
    uses java.nio.file.spi.FileSystemProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    93
    uses java.nio.file.spi.FileTypeDetector;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    94
    uses java.security.Provider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    95
    uses java.text.spi.BreakIteratorProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    96
    uses java.text.spi.CollatorProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    97
    uses java.text.spi.DateFormatProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    98
    uses java.text.spi.DateFormatSymbolsProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    99
    uses java.text.spi.DecimalFormatSymbolsProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   100
    uses java.text.spi.NumberFormatProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   101
    uses java.time.chrono.AbstractChronology;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   102
    uses java.time.chrono.Chronology;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   103
    uses java.time.zone.ZoneRulesProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   104
    uses java.util.spi.CalendarDataProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   105
    uses java.util.spi.CalendarNameProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   106
    uses java.util.spi.CurrencyNameProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   107
    uses java.util.spi.LocaleNameProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   108
    uses java.util.spi.ResourceBundleControlProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   109
    uses java.util.spi.ResourceBundleProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   110
    uses java.util.spi.TimeZoneNameProvider;
41376
0908484888a7 8159855: Create an SPI for tools
jjg
parents: 41352
diff changeset
   111
    uses java.util.spi.ToolProvider;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   112
    uses javax.security.auth.spi.LoginModule;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   113
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   114
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   115
    // additional qualified exports may be inserted at build time
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   116
    // see make/gensrc/GenModuleInfo.gmk
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   117
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   118
    exports com.sun.security.ntlm to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   119
        java.security.sasl;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   120
    exports jdk.internal.jimage to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   121
        jdk.jlink;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   122
    exports jdk.internal.jimage.decompressor to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   123
        jdk.jlink;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41828
diff changeset
   124
    exports jdk.internal.loader to
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41828
diff changeset
   125
        java.instrument,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41828
diff changeset
   126
        java.logging,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41828
diff changeset
   127
        jdk.jlink;
41352
f9844bad9052 8166860: Add magic number to jmod file
mchung
parents: 41135
diff changeset
   128
    exports jdk.internal.jmod to
f9844bad9052 8166860: Add magic number to jmod file
mchung
parents: 41135
diff changeset
   129
        jdk.compiler,
f9844bad9052 8166860: Add magic number to jmod file
mchung
parents: 41135
diff changeset
   130
        jdk.jlink;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   131
    exports jdk.internal.logger to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   132
        java.logging;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   133
    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
   134
        jdk.jartool,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   135
        jdk.jlink,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   136
        jdk.scripting.nashorn,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   137
        jdk.vm.ci;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   138
    exports jdk.internal.org.objectweb.asm.tree to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   139
        jdk.jlink;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   140
    exports jdk.internal.org.objectweb.asm.util to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   141
        jdk.jlink,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   142
        jdk.scripting.nashorn;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   143
    exports jdk.internal.org.objectweb.asm.tree.analysis to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   144
        jdk.jlink;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   145
    exports jdk.internal.org.objectweb.asm.commons to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   146
        jdk.scripting.nashorn;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   147
    exports jdk.internal.org.objectweb.asm.signature to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   148
        jdk.scripting.nashorn;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   149
    exports jdk.internal.math to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   150
        java.desktop;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   151
    exports jdk.internal.module to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   152
        java.instrument,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   153
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   154
        jdk.jartool,
38751
95fb2dcb4d84 8158131: Nashorn should not use jdk.internal.module.Modules API
sundar
parents: 38742
diff changeset
   155
        jdk.jlink;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   156
    exports jdk.internal.misc to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   157
        java.corba,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   158
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   159
        java.logging,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   160
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   161
        java.naming,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   162
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   163
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   164
        java.sql,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   165
        java.xml,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   166
        jdk.charsets,
38583
d887ee89eec0 8157986: Runtime support for javac to determine arguments to the runtime environment
mchung
parents: 38432
diff changeset
   167
        jdk.compiler,
37779
7c84df693837 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37575
diff changeset
   168
        jdk.jartool,
41135
01650fdf3284 8153654: Update jdeps to be multi-release jar aware
sdrach
parents: 40944
diff changeset
   169
        jdk.jdeps,
37779
7c84df693837 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37575
diff changeset
   170
        jdk.jlink,
41588
6e66ad59f99a 8166183: jshell tool: on return from Ctrl-Z, garbage on screen, dies with Ctrl-C
jlahoda
parents: 41481
diff changeset
   171
        jdk.jshell,
37679
489eb8ef084f 8155578: OpenJDK build failed after JDK-8044773
chegar
parents: 37676
diff changeset
   172
        jdk.net,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   173
        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
   174
        jdk.scripting.nashorn.shell,
36966
4209c9e19c45 8153737: Unsupported Module
chegar
parents: 36854
diff changeset
   175
        jdk.unsupported,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   176
        jdk.vm.ci;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   177
    exports jdk.internal.perf to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   178
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   179
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   180
        jdk.jvmstat;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   181
    exports jdk.internal.ref to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   182
        java.desktop;
37363
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   183
    exports jdk.internal.reflect to
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   184
        java.corba,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   185
        java.logging,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   186
        java.sql,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   187
        java.sql.rowset,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   188
        jdk.dynalink,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   189
        jdk.scripting.nashorn,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   190
        jdk.unsupported;
36966
4209c9e19c45 8153737: Unsupported Module
chegar
parents: 36854
diff changeset
   191
    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
   192
        jdk.unsupported,
178dd1b12732 8144826: [JVMCI] Remove jdk.vm.ci.hotspot.Stable and use jdk.internal.vm.annotation.Stable
psandoz
parents: 37780
diff changeset
   193
        jdk.vm.ci;
36745
51effd3e92d0 8152190: Move sun.misc.JarIndex and InvalidJarIndexException to an internal package
chegar
parents: 36673
diff changeset
   194
    exports jdk.internal.util.jar to
41135
01650fdf3284 8153654: Update jdeps to be multi-release jar aware
sdrach
parents: 40944
diff changeset
   195
        jdk.jartool,
41828
0436ea0c6099 8156499: Update jlink to support creating images with modules that are packaged as multi-release JARs
sdrach
parents: 41603
diff changeset
   196
        jdk.jdeps,
0436ea0c6099 8156499: Update jlink to support creating images with modules that are packaged as multi-release JARs
sdrach
parents: 41603
diff changeset
   197
        jdk.jlink;
36854
84179cb88469 8153181: Move sun.misc.VMSupport to an internal package
chegar
parents: 36745
diff changeset
   198
    exports jdk.internal.vm to
84179cb88469 8153181: Move sun.misc.VMSupport to an internal package
chegar
parents: 36745
diff changeset
   199
        java.management,
84179cb88469 8153181: Move sun.misc.VMSupport to an internal package
chegar
parents: 36745
diff changeset
   200
        jdk.jvmstat;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   201
    exports sun.net to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   202
        java.httpclient;
37676
24ef455da1b0 8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents: 37575
diff changeset
   203
    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
   204
        jdk.net;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   205
    exports sun.net.dns to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   206
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   207
        jdk.naming.dns;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   208
    exports sun.net.util to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   209
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   210
        jdk.jconsole,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   211
        jdk.naming.dns;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   212
    exports sun.net.www to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   213
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   214
        jdk.jartool;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   215
    exports sun.net.www.protocol.http to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   216
        java.security.jgss;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   217
    exports sun.nio.ch to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   218
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   219
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   220
        jdk.sctp;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   221
    exports sun.nio.cs to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   222
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   223
        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
   224
    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
   225
        jdk.unsupported;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   226
    exports sun.reflect.annotation to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   227
        jdk.compiler;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   228
    exports sun.reflect.generics.reflectiveObjects to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   229
        java.desktop;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   230
    exports sun.reflect.misc to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   231
        java.corba,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   232
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   233
        java.datatransfer,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   234
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   235
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   236
        java.sql.rowset,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   237
        java.xml,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   238
        java.xml.ws;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   239
    exports sun.security.action to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   240
        java.desktop,
41603
bb9d97b4c21b 8168313: Tighten permissions granted to jdk.crypto.pkcs11 module
mullan
parents: 41590
diff changeset
   241
        java.security.jgss;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   242
    exports sun.security.internal.interfaces to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   243
        jdk.crypto.pkcs11;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   244
    exports sun.security.internal.spec to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   245
        jdk.crypto.pkcs11;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   246
    exports sun.security.jca to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   247
        java.smartcardio,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   248
        java.xml.crypto,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   249
        jdk.crypto.ec,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   250
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   251
        jdk.naming.dns;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   252
    exports sun.security.pkcs to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   253
        jdk.crypto.ec,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   254
        jdk.jartool;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   255
    exports sun.security.provider to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   256
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   257
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   258
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   259
        jdk.policytool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   260
        jdk.security.auth;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   261
    exports sun.security.provider.certpath to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   262
        java.naming;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   263
    exports sun.security.rsa to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   264
        jdk.crypto.pkcs11;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   265
    exports sun.security.ssl to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   266
        java.security.jgss;
41590
1c5b1891b8e0 8163304: jarsigner -verbose -verify should print the algorithms used to sign the jar
weijun
parents: 41588
diff changeset
   267
    exports sun.security.timestamp to
1c5b1891b8e0 8163304: jarsigner -verbose -verify should print the algorithms used to sign the jar
weijun
parents: 41588
diff changeset
   268
        jdk.jartool;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   269
    exports sun.security.tools to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   270
        jdk.jartool;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   271
    exports sun.security.util to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   272
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   273
        java.naming,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   274
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   275
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   276
        java.security.sasl,
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,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   279
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   280
        jdk.jartool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   281
        jdk.policytool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   282
        jdk.security.auth,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   283
        jdk.security.jgss;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   284
    exports sun.security.x509 to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   285
        jdk.crypto.ec,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   286
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   287
        jdk.jartool,
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.text.resources to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   290
        jdk.localedata;
39734
7701942a1e7b 8159214: jlink --include-locales problems
naoto
parents: 38796
diff changeset
   291
    exports sun.util.cldr to
7701942a1e7b 8159214: jlink --include-locales problems
naoto
parents: 38796
diff changeset
   292
        jdk.jlink;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   293
    exports sun.util.locale.provider to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   294
        java.desktop,
39734
7701942a1e7b 8159214: jlink --include-locales problems
naoto
parents: 38796
diff changeset
   295
        jdk.jlink,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   296
        jdk.localedata;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   297
    exports sun.util.logging to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   298
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   299
        java.logging,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   300
        java.prefs;
39734
7701942a1e7b 8159214: jlink --include-locales problems
naoto
parents: 38796
diff changeset
   301
    exports sun.util.resources to
7701942a1e7b 8159214: jlink --include-locales problems
naoto
parents: 38796
diff changeset
   302
        jdk.localedata;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   303
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   304
    // JDK-internal service types
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   305
    uses jdk.internal.logger.DefaultLoggerFinder;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   306
    uses sun.security.ssl.ClientKeyExchangeService;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41828
diff changeset
   307
    uses sun.security.util.AuthResourcesProvider;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   308
    uses sun.util.spi.CalendarProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   309
    uses sun.util.locale.provider.LocaleDataMetaInfo;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   310
    uses sun.util.resources.LocaleData.CommonResourceBundleProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   311
    uses sun.util.resources.LocaleData.SupplementaryResourceBundleProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   312
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   313
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   314
    // Built-in service providers that are located via ServiceLoader
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   315
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   316
    provides java.nio.file.spi.FileSystemProvider with
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   317
        jdk.internal.jrtfs.JrtFileSystemProvider;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41828
diff changeset
   318
    provides sun.security.util.AuthResourcesProvider with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41828
diff changeset
   319
        sun.security.util.AuthResourcesProviderImpl;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   320
}