jdk/src/java.base/share/classes/module-info.java
author chegar
Wed, 27 Apr 2016 20:36:02 +0100
changeset 37676 24ef455da1b0
parent 37575 ebdc1cdf681e
child 37679 489eb8ef084f
permissions -rw-r--r--
8044773: Refactor jdk.net API so that it can be moved out of the base module Reviewed-by: alanb, erikj, mchung
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
/**
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    27
 * java.base defines and exports the core APIs of the Java SE platform.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    28
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    29
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    30
module java.base {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    31
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    32
    exports java.io;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    33
    exports java.lang;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    34
    exports java.lang.annotation;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    35
    exports java.lang.invoke;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
    exports java.lang.module;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    37
    exports java.lang.ref;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    38
    exports java.lang.reflect;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
    exports java.math;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    40
    exports java.net;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
    exports java.net.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    42
    exports java.nio;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    43
    exports java.nio.channels;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    44
    exports java.nio.channels.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    45
    exports java.nio.charset;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    46
    exports java.nio.charset.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    47
    exports java.nio.file;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    48
    exports java.nio.file.attribute;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    49
    exports java.nio.file.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    50
    exports java.security;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    51
    exports java.security.acl;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    52
    exports java.security.cert;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    53
    exports java.security.interfaces;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    54
    exports java.security.spec;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    55
    exports java.text;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    56
    exports java.text.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    57
    exports java.time;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    58
    exports java.time.chrono;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    59
    exports java.time.format;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    60
    exports java.time.temporal;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    61
    exports java.time.zone;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    62
    exports java.util;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    63
    exports java.util.concurrent;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    64
    exports java.util.concurrent.atomic;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    65
    exports java.util.concurrent.locks;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    66
    exports java.util.function;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    67
    exports java.util.jar;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    68
    exports java.util.regex;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    69
    exports java.util.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    70
    exports java.util.stream;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    71
    exports java.util.zip;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    72
    exports javax.crypto;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    73
    exports javax.crypto.interfaces;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    74
    exports javax.crypto.spec;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    75
    exports javax.net;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    76
    exports javax.net.ssl;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
    exports javax.security.auth;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
    exports javax.security.auth.callback;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
    exports javax.security.auth.login;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
    exports javax.security.auth.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    81
    exports javax.security.auth.x500;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    82
    exports javax.security.cert;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    83
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    84
    // see JDK-8144062
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    85
    exports jdk;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    86
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    88
    // the service types defined by the APIs in this module
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    89
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    90
    uses java.lang.System.LoggerFinder;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    91
    uses java.net.ContentHandlerFactory;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    92
    uses java.net.spi.URLStreamHandlerProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    93
    uses java.nio.channels.spi.AsynchronousChannelProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    94
    uses java.nio.channels.spi.SelectorProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    95
    uses java.nio.charset.spi.CharsetProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    96
    uses java.nio.file.spi.FileSystemProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    97
    uses java.nio.file.spi.FileTypeDetector;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    98
    uses java.security.Provider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    99
    uses java.text.spi.BreakIteratorProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   100
    uses java.text.spi.CollatorProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   101
    uses java.text.spi.DateFormatProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   102
    uses java.text.spi.DateFormatSymbolsProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   103
    uses java.text.spi.DecimalFormatSymbolsProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   104
    uses java.text.spi.NumberFormatProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   105
    uses java.time.chrono.AbstractChronology;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   106
    uses java.time.chrono.Chronology;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   107
    uses java.time.zone.ZoneRulesProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   108
    uses java.util.spi.CalendarDataProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   109
    uses java.util.spi.CalendarNameProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   110
    uses java.util.spi.CurrencyNameProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   111
    uses java.util.spi.LocaleNameProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   112
    uses java.util.spi.ResourceBundleControlProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   113
    uses java.util.spi.ResourceBundleProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   114
    uses java.util.spi.TimeZoneNameProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   115
    uses javax.security.auth.spi.LoginModule;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   116
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   117
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   118
    // additional qualified exports may be inserted at build time
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   119
    // see make/gensrc/GenModuleInfo.gmk
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   120
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   121
    // CORBA serialization needs reflective access
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   122
    exports sun.util.calendar to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   123
        java.corba;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   124
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   125
    exports com.sun.security.ntlm to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   126
        java.security.sasl;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   127
    exports jdk.internal.jimage to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   128
        jdk.jlink;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   129
    exports jdk.internal.jimage.decompressor to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   130
        jdk.jlink;
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
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   134
        jdk.jlink,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   135
        jdk.scripting.nashorn,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   136
        jdk.vm.ci;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   137
    exports jdk.internal.org.objectweb.asm.tree to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   138
        jdk.jlink;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   139
    exports jdk.internal.org.objectweb.asm.util to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   140
        jdk.jlink,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   141
        jdk.scripting.nashorn;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   142
    exports jdk.internal.org.objectweb.asm.tree.analysis to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   143
        jdk.jlink;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   144
    exports jdk.internal.org.objectweb.asm.commons to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   145
        jdk.scripting.nashorn;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   146
    exports jdk.internal.org.objectweb.asm.signature to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   147
        jdk.scripting.nashorn;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   148
    exports jdk.internal.math to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   149
        java.desktop;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   150
    exports jdk.internal.module to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   151
        java.instrument,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   152
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   153
        java.xml,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   154
        jdk.dynalink,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   155
        jdk.jartool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   156
        jdk.jlink,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   157
        jdk.scripting.nashorn;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   158
    exports jdk.internal.misc to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   159
        java.corba,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   160
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   161
        java.logging,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   162
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   163
        java.naming,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   164
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   165
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   166
        java.sql,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   167
        java.xml,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   168
        jdk.charsets,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   169
        jdk.scripting.nashorn,
36966
4209c9e19c45 8153737: Unsupported Module
chegar
parents: 36854
diff changeset
   170
        jdk.unsupported,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   171
        jdk.vm.ci;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   172
    exports jdk.internal.perf to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   173
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   174
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   175
        jdk.jvmstat;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   176
    exports jdk.internal.ref to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   177
        java.desktop;
37363
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   178
    exports jdk.internal.reflect to
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   179
        java.corba,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   180
        java.logging,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   181
        java.sql,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   182
        java.sql.rowset,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   183
        jdk.dynalink,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   184
        jdk.scripting.nashorn,
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36967
diff changeset
   185
        jdk.unsupported;
36966
4209c9e19c45 8153737: Unsupported Module
chegar
parents: 36854
diff changeset
   186
    exports jdk.internal.vm.annotation to
4209c9e19c45 8153737: Unsupported Module
chegar
parents: 36854
diff changeset
   187
        jdk.unsupported;
36745
51effd3e92d0 8152190: Move sun.misc.JarIndex and InvalidJarIndexException to an internal package
chegar
parents: 36673
diff changeset
   188
    exports jdk.internal.util.jar to
51effd3e92d0 8152190: Move sun.misc.JarIndex and InvalidJarIndexException to an internal package
chegar
parents: 36673
diff changeset
   189
        jdk.jartool;
36854
84179cb88469 8153181: Move sun.misc.VMSupport to an internal package
chegar
parents: 36745
diff changeset
   190
    exports jdk.internal.vm to
84179cb88469 8153181: Move sun.misc.VMSupport to an internal package
chegar
parents: 36745
diff changeset
   191
        java.management,
84179cb88469 8153181: Move sun.misc.VMSupport to an internal package
chegar
parents: 36745
diff changeset
   192
        jdk.jvmstat;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   193
    exports sun.net to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   194
        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
   195
    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
   196
        jdk.net;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   197
    exports sun.net.dns to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   198
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   199
        jdk.naming.dns;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   200
    exports sun.net.util to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   201
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   202
        jdk.jconsole,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   203
        jdk.naming.dns;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   204
    exports sun.net.www to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   205
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   206
        jdk.jartool;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   207
    exports sun.net.www.protocol.http to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   208
        java.security.jgss;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   209
    exports sun.nio.ch to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   210
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   211
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   212
        jdk.sctp;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   213
    exports sun.nio.cs to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   214
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   215
        jdk.charsets;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   216
    exports sun.reflect.annotation to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   217
        jdk.compiler;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   218
    exports sun.reflect.generics.reflectiveObjects to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   219
        java.desktop;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   220
    exports sun.reflect.misc to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   221
        java.corba,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   222
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   223
        java.datatransfer,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   224
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   225
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   226
        java.sql.rowset,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   227
        java.xml,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   228
        java.xml.ws;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   229
    exports sun.security.action to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   230
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   231
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   232
        jdk.crypto.pkcs11;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   233
    exports sun.security.internal.interfaces to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   234
        jdk.crypto.pkcs11;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   235
    exports sun.security.internal.spec to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   236
        jdk.crypto.pkcs11;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   237
    exports sun.security.jca to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   238
        java.smartcardio,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   239
        java.xml.crypto,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   240
        jdk.crypto.ec,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   241
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   242
        jdk.naming.dns;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   243
    exports sun.security.pkcs to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   244
        jdk.crypto.ec,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   245
        jdk.jartool;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   246
    exports sun.security.provider to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   247
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   248
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   249
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   250
        jdk.policytool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   251
        jdk.security.auth;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   252
    exports sun.security.provider.certpath to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   253
        java.naming;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   254
    exports sun.security.rsa to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   255
        jdk.crypto.pkcs11;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   256
    exports sun.security.ssl to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   257
        java.security.jgss;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   258
    exports sun.security.tools to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   259
        jdk.jartool;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   260
    exports sun.security.util to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   261
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   262
        java.naming,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   263
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   264
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   265
        java.security.sasl,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   266
        java.smartcardio,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   267
        jdk.crypto.ec,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   268
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   269
        jdk.jartool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   270
        jdk.policytool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   271
        jdk.security.auth,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   272
        jdk.security.jgss;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   273
    exports sun.security.x509 to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   274
        jdk.crypto.ec,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   275
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   276
        jdk.jartool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   277
        jdk.security.auth;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   278
    exports sun.text.resources to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   279
        jdk.localedata;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   280
    exports sun.util.resources to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   281
        jdk.localedata;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   282
    exports sun.util.locale.provider to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   283
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   284
        jdk.localedata;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   285
    exports sun.util.logging to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   286
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   287
        java.logging,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   288
        java.prefs;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   289
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   290
    // JDK-internal service types
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   291
    uses jdk.internal.logger.DefaultLoggerFinder;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   292
    uses sun.security.ssl.ClientKeyExchangeService;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   293
    uses sun.util.spi.CalendarProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   294
    uses sun.util.locale.provider.LocaleDataMetaInfo;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   295
    uses sun.util.resources.LocaleData.CommonResourceBundleProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   296
    uses sun.util.resources.LocaleData.SupplementaryResourceBundleProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   297
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   298
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   299
    // Built-in service providers that are located via ServiceLoader
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   300
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   301
    provides java.nio.file.spi.FileSystemProvider with
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   302
        jdk.internal.jrtfs.JrtFileSystemProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   303
}
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   304