jdk/src/java.base/share/classes/module-info.java
author chegar
Thu, 31 Mar 2016 06:23:43 +0100
changeset 36745 51effd3e92d0
parent 36673 7b3c93ca8785
child 36854 84179cb88469
permissions -rw-r--r--
8152190: Move sun.misc.JarIndex and InvalidJarIndexException to an internal package Reviewed-by: alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     2
 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
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
    // see JDK-8044773
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
    exports jdk.net;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    88
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    89
    // These will move to a jdk.internal module via JEP-260
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    90
    exports sun.misc;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    91
    exports sun.reflect;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    92
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    93
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    94
    // the service types defined by the APIs in this module
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    95
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    96
    uses java.lang.System.LoggerFinder;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    97
    uses java.net.ContentHandlerFactory;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    98
    uses java.net.spi.URLStreamHandlerProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    99
    uses java.nio.channels.spi.AsynchronousChannelProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   100
    uses java.nio.channels.spi.SelectorProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   101
    uses java.nio.charset.spi.CharsetProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   102
    uses java.nio.file.spi.FileSystemProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   103
    uses java.nio.file.spi.FileTypeDetector;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   104
    uses java.security.Provider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   105
    uses java.text.spi.BreakIteratorProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   106
    uses java.text.spi.CollatorProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   107
    uses java.text.spi.DateFormatProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   108
    uses java.text.spi.DateFormatSymbolsProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   109
    uses java.text.spi.DecimalFormatSymbolsProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   110
    uses java.text.spi.NumberFormatProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   111
    uses java.time.chrono.AbstractChronology;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   112
    uses java.time.chrono.Chronology;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   113
    uses java.time.zone.ZoneRulesProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   114
    uses java.util.spi.CalendarDataProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   115
    uses java.util.spi.CalendarNameProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   116
    uses java.util.spi.CurrencyNameProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   117
    uses java.util.spi.LocaleNameProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   118
    uses java.util.spi.ResourceBundleControlProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   119
    uses java.util.spi.ResourceBundleProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   120
    uses java.util.spi.TimeZoneNameProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   121
    uses javax.security.auth.spi.LoginModule;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   122
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   123
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   124
    // additional qualified exports may be inserted at build time
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   125
    // see make/gensrc/GenModuleInfo.gmk
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   126
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   127
    // CORBA serialization needs reflective access
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   128
    exports sun.util.calendar to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   129
        java.corba;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   130
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   131
    exports com.sun.security.ntlm to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   132
        java.security.sasl;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   133
    exports jdk.internal.jimage to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   134
        jdk.jlink;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   135
    exports jdk.internal.jimage.decompressor to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   136
        jdk.jlink;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   137
    exports jdk.internal.logger to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   138
        java.logging;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   139
    exports jdk.internal.org.objectweb.asm 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
        jdk.vm.ci;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   143
    exports jdk.internal.org.objectweb.asm.tree 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.util to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   146
        jdk.jlink,
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.org.objectweb.asm.tree.analysis to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   149
        jdk.jlink;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   150
    exports jdk.internal.org.objectweb.asm.commons to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   151
        jdk.scripting.nashorn;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   152
    exports jdk.internal.org.objectweb.asm.signature to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   153
        jdk.scripting.nashorn;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   154
    exports jdk.internal.math to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   155
        java.desktop;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   156
    exports jdk.internal.module to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   157
        java.instrument,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   158
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   159
        java.xml,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   160
        jdk.dynalink,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   161
        jdk.jartool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   162
        jdk.jlink,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   163
        jdk.scripting.nashorn;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   164
    exports jdk.internal.misc to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   165
        java.corba,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   166
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   167
        java.logging,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   168
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   169
        java.naming,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   170
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   171
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   172
        java.sql,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   173
        java.xml,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   174
        jdk.charsets,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   175
        jdk.scripting.nashorn,
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;
36745
51effd3e92d0 8152190: Move sun.misc.JarIndex and InvalidJarIndexException to an internal package
chegar
parents: 36673
diff changeset
   183
    exports jdk.internal.util.jar to
51effd3e92d0 8152190: Move sun.misc.JarIndex and InvalidJarIndexException to an internal package
chegar
parents: 36673
diff changeset
   184
        jdk.jartool;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   185
    exports sun.net to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   186
        java.httpclient;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   187
    exports sun.net.dns to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   188
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   189
        jdk.naming.dns;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   190
    exports sun.net.spi.nameservice to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   191
        jdk.naming.dns;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   192
    exports sun.net.util to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   193
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   194
        jdk.jconsole,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   195
        jdk.naming.dns;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   196
    exports sun.net.www to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   197
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   198
        jdk.jartool;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   199
    exports sun.net.www.protocol.http to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   200
        java.security.jgss;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   201
    exports sun.nio.ch to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   202
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   203
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   204
        jdk.sctp;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   205
    exports sun.nio.cs to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   206
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   207
        jdk.charsets;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   208
    exports sun.reflect.annotation to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   209
        jdk.compiler;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   210
    exports sun.reflect.generics.reflectiveObjects to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   211
        java.desktop;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   212
    exports sun.reflect.misc to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   213
        java.corba,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   214
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   215
        java.datatransfer,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   216
        java.management,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   217
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   218
        java.sql.rowset,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   219
        java.xml,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   220
        java.xml.ws;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   221
    exports sun.security.action to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   222
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   223
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   224
        jdk.crypto.pkcs11;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   225
    exports sun.security.internal.interfaces to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   226
        jdk.crypto.pkcs11;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   227
    exports sun.security.internal.spec to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   228
        jdk.crypto.pkcs11;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   229
    exports sun.security.jca to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   230
        java.smartcardio,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   231
        java.xml.crypto,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   232
        jdk.crypto.ec,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   233
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   234
        jdk.naming.dns;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   235
    exports sun.security.pkcs to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   236
        jdk.crypto.ec,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   237
        jdk.jartool;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   238
    exports sun.security.provider to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   239
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   240
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   241
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   242
        jdk.policytool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   243
        jdk.security.auth;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   244
    exports sun.security.provider.certpath to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   245
        java.naming;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   246
    exports sun.security.rsa to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   247
        jdk.crypto.pkcs11;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   248
    exports sun.security.ssl to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   249
        java.security.jgss;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   250
    exports sun.security.tools to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   251
        jdk.jartool;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   252
    exports sun.security.util to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   253
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   254
        java.naming,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   255
        java.rmi,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   256
        java.security.jgss,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   257
        java.security.sasl,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   258
        java.smartcardio,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   259
        jdk.crypto.ec,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   260
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   261
        jdk.jartool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   262
        jdk.policytool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   263
        jdk.security.auth,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   264
        jdk.security.jgss;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   265
    exports sun.security.x509 to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   266
        jdk.crypto.ec,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   267
        jdk.crypto.pkcs11,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   268
        jdk.jartool,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   269
        jdk.security.auth;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   270
    exports sun.text.resources to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   271
        jdk.localedata;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   272
    exports sun.util.resources to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   273
        jdk.localedata;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   274
    exports sun.util.locale.provider to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   275
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   276
        jdk.localedata;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   277
    exports sun.util.logging to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   278
        java.desktop,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   279
        java.logging,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   280
        java.prefs;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   281
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   282
    // JDK-internal service types
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   283
    uses jdk.internal.logger.DefaultLoggerFinder;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   284
    uses sun.net.spi.nameservice.NameServiceDescriptor;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   285
    uses sun.security.ssl.ClientKeyExchangeService;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   286
    uses sun.util.spi.CalendarProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   287
    uses sun.util.locale.provider.LocaleDataMetaInfo;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   288
    uses sun.util.resources.LocaleData.CommonResourceBundleProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   289
    uses sun.util.resources.LocaleData.SupplementaryResourceBundleProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   290
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   291
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   292
    // Built-in service providers that are located via ServiceLoader
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   293
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   294
    provides java.nio.file.spi.FileSystemProvider with
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   295
        jdk.internal.jrtfs.JrtFileSystemProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   296
    provides java.security.Provider with sun.security.provider.Sun;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   297
    provides java.security.Provider with sun.security.rsa.SunRsaSign;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   298
    provides java.security.Provider with com.sun.crypto.provider.SunJCE;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   299
    provides java.security.Provider with com.sun.net.ssl.internal.ssl.Provider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   300
}
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   301