1 /*
   2  * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /**
  27  * Defines the foundational APIs of the Java SE Platform.
  28  */
  29 module java.base {
  30 
  31     exports java.io;
  32     exports java.lang;
  33     exports java.lang.annotation;
  34     exports java.lang.invoke;
  35     exports java.lang.module;
  36     exports java.lang.ref;
  37     exports java.lang.reflect;
  38     exports java.math;
  39     exports java.net;
  40     exports java.net.spi;
  41     exports java.nio;
  42     exports java.nio.channels;
  43     exports java.nio.channels.spi;
  44     exports java.nio.charset;
  45     exports java.nio.charset.spi;
  46     exports java.nio.file;
  47     exports java.nio.file.attribute;
  48     exports java.nio.file.spi;
  49     exports java.security;
  50     exports java.security.acl;
  51     exports java.security.cert;
  52     exports java.security.interfaces;
  53     exports java.security.spec;
  54     exports java.text;
  55     exports java.text.spi;
  56     exports java.time;
  57     exports java.time.chrono;
  58     exports java.time.format;
  59     exports java.time.temporal;
  60     exports java.time.zone;
  61     exports java.util;
  62     exports java.util.concurrent;
  63     exports java.util.concurrent.atomic;
  64     exports java.util.concurrent.locks;
  65     exports java.util.function;
  66     exports java.util.jar;
  67     exports java.util.regex;
  68     exports java.util.spi;
  69     exports java.util.stream;
  70     exports java.util.zip;
  71     exports javax.crypto;
  72     exports javax.crypto.interfaces;
  73     exports javax.crypto.spec;
  74     exports javax.net;
  75     exports javax.net.ssl;
  76     exports javax.security.auth;
  77     exports javax.security.auth.callback;
  78     exports javax.security.auth.login;
  79     exports javax.security.auth.spi;
  80     exports javax.security.auth.x500;
  81     exports javax.security.cert;
  82 
  83 
  84     // the service types defined by the APIs in this module
  85 
  86     uses java.lang.System.LoggerFinder;
  87     uses java.net.ContentHandlerFactory;
  88     uses java.net.spi.URLStreamHandlerProvider;
  89     uses java.nio.channels.spi.AsynchronousChannelProvider;
  90     uses java.nio.channels.spi.SelectorProvider;
  91     uses java.nio.charset.spi.CharsetProvider;
  92     uses java.nio.file.spi.FileSystemProvider;
  93     uses java.nio.file.spi.FileTypeDetector;
  94     uses java.security.Provider;
  95     uses java.text.spi.BreakIteratorProvider;
  96     uses java.text.spi.CollatorProvider;
  97     uses java.text.spi.DateFormatProvider;
  98     uses java.text.spi.DateFormatSymbolsProvider;
  99     uses java.text.spi.DecimalFormatSymbolsProvider;
 100     uses java.text.spi.NumberFormatProvider;
 101     uses java.time.chrono.AbstractChronology;
 102     uses java.time.chrono.Chronology;
 103     uses java.time.zone.ZoneRulesProvider;
 104     uses java.util.spi.CalendarDataProvider;
 105     uses java.util.spi.CalendarNameProvider;
 106     uses java.util.spi.CurrencyNameProvider;
 107     uses java.util.spi.LocaleNameProvider;
 108     uses java.util.spi.ResourceBundleControlProvider;
 109     uses java.util.spi.ResourceBundleProvider;
 110     uses java.util.spi.TimeZoneNameProvider;
 111     uses java.util.spi.ToolProvider;
 112     uses javax.security.auth.spi.LoginModule;
 113 
 114 
 115     // additional qualified exports may be inserted at build time
 116     // see make/gensrc/GenModuleInfo.gmk
 117 
 118     // CORBA serialization needs reflective access
 119     exports sun.util.calendar to
 120         java.corba;
 121 
 122     exports com.sun.security.ntlm to
 123         java.security.sasl;
 124     exports jdk.internal.jimage to
 125         jdk.jlink;
 126     exports jdk.internal.jimage.decompressor to
 127         jdk.jlink;
 128     exports jdk.internal.jmod to
 129         jdk.compiler,
 130         jdk.jlink;
 131     exports jdk.internal.logger to
 132         java.logging;
 133     exports jdk.internal.org.objectweb.asm to
 134         jdk.jartool,
 135         jdk.jlink,
 136         jdk.scripting.nashorn,
 137         jdk.vm.ci;
 138     exports jdk.internal.org.objectweb.asm.tree to
 139         jdk.jlink;
 140     exports jdk.internal.org.objectweb.asm.util to
 141         jdk.jlink,
 142         jdk.scripting.nashorn;
 143     exports jdk.internal.org.objectweb.asm.tree.analysis to
 144         jdk.jlink;
 145     exports jdk.internal.org.objectweb.asm.commons to
 146         jdk.scripting.nashorn;
 147     exports jdk.internal.org.objectweb.asm.signature to
 148         jdk.scripting.nashorn;
 149     exports jdk.internal.loader to
 150         java.instrument,
 151         java.logging;
 152     exports jdk.internal.math to
 153         java.desktop;
 154     exports jdk.internal.module to
 155         java.instrument,
 156         java.management,
 157         jdk.jartool,
 158         jdk.jlink;
 159     exports jdk.internal.misc to
 160         java.corba,
 161         java.desktop,
 162         java.logging,
 163         java.management,
 164         java.naming,
 165         java.rmi,
 166         java.security.jgss,
 167         java.sql,
 168         java.xml,
 169         jdk.charsets,
 170         jdk.compiler,
 171         jdk.jartool,
 172         jdk.jdeps,
 173         jdk.jlink,
 174         jdk.jshell,
 175         jdk.net,
 176         jdk.scripting.nashorn,
 177         jdk.scripting.nashorn.shell,
 178         jdk.unsupported,
 179         jdk.vm.ci;
 180     exports jdk.internal.perf to
 181         java.desktop,
 182         java.management,
 183         jdk.jvmstat;
 184     exports jdk.internal.ref to
 185         java.desktop;
 186     exports jdk.internal.reflect to
 187         java.corba,
 188         java.logging,
 189         java.sql,
 190         java.sql.rowset,
 191         jdk.dynalink,
 192         jdk.scripting.nashorn,
 193         jdk.unsupported;
 194     exports jdk.internal.vm.annotation to
 195         jdk.unsupported,
 196         jdk.vm.ci;
 197     exports jdk.internal.util.jar to
 198         jdk.jartool,
 199         jdk.jdeps;
 200     exports jdk.internal.vm to
 201         java.management,
 202         jdk.jvmstat;
 203     exports sun.net to
 204         java.httpclient;
 205     exports sun.net.ext to
 206         jdk.net;
 207     exports sun.net.dns to
 208         java.security.jgss,
 209         jdk.naming.dns;
 210     exports sun.net.util to
 211         java.desktop,
 212         jdk.jconsole,
 213         jdk.naming.dns;
 214     exports sun.net.www to
 215         java.desktop,
 216         jdk.jartool;
 217     exports sun.net.www.protocol.http to
 218         java.security.jgss;
 219     exports sun.nio.ch to
 220         java.management,
 221         jdk.crypto.pkcs11,
 222         jdk.sctp;
 223     exports sun.nio.cs to
 224         java.desktop,
 225         jdk.charsets;
 226     exports sun.nio.fs to
 227         jdk.unsupported;
 228     exports sun.reflect.annotation to
 229         jdk.compiler;
 230     exports sun.reflect.generics.reflectiveObjects to
 231         java.desktop;
 232     exports sun.reflect.misc to
 233         java.corba,
 234         java.desktop,
 235         java.datatransfer,
 236         java.management,
 237         java.rmi,
 238         java.sql.rowset,
 239         java.xml,
 240         java.xml.ws;
 241     exports sun.security.action to
 242         java.desktop,
 243         java.security.jgss,
 244         jdk.crypto.pkcs11;
 245     exports sun.security.internal.interfaces to
 246         jdk.crypto.pkcs11;
 247     exports sun.security.internal.spec to
 248         jdk.crypto.pkcs11;
 249     exports sun.security.jca to
 250         java.smartcardio,
 251         java.xml.crypto,
 252         jdk.crypto.ec,
 253         jdk.crypto.pkcs11,
 254         jdk.naming.dns;
 255     exports sun.security.pkcs to
 256         jdk.crypto.ec,
 257         jdk.jartool;
 258     exports sun.security.provider to
 259         java.rmi,
 260         java.security.jgss,
 261         jdk.crypto.pkcs11,
 262         jdk.policytool,
 263         jdk.security.auth;
 264     exports sun.security.provider.certpath to
 265         java.naming;
 266     exports sun.security.rsa to
 267         jdk.crypto.pkcs11;
 268     exports sun.security.ssl to
 269         java.security.jgss;
 270     exports sun.security.timestamp to
 271         jdk.jartool;
 272     exports sun.security.tools to
 273         jdk.jartool;
 274     exports sun.security.util to
 275         java.desktop,
 276         java.naming,
 277         java.rmi,
 278         java.security.jgss,
 279         java.security.sasl,
 280         java.smartcardio,
 281         jdk.crypto.ec,
 282         jdk.crypto.pkcs11,
 283         jdk.jartool,
 284         jdk.policytool,
 285         jdk.security.auth,
 286         jdk.security.jgss;
 287     exports sun.security.x509 to
 288         jdk.crypto.ec,
 289         jdk.crypto.pkcs11,
 290         jdk.jartool,
 291         jdk.security.auth;
 292     exports sun.text.resources to
 293         jdk.localedata;
 294     exports sun.util.cldr to
 295         jdk.jlink;
 296     exports sun.util.locale.provider to
 297         java.desktop,
 298         jdk.jlink,
 299         jdk.localedata;
 300     exports sun.util.logging to
 301         java.desktop,
 302         java.logging,
 303         java.prefs;
 304     exports sun.util.resources to
 305         jdk.localedata;
 306 
 307     // JDK-internal service types
 308     uses jdk.internal.logger.DefaultLoggerFinder;
 309     uses sun.security.ssl.ClientKeyExchangeService;
 310     uses sun.util.spi.CalendarProvider;
 311     uses sun.util.locale.provider.LocaleDataMetaInfo;
 312     uses sun.util.resources.LocaleData.CommonResourceBundleProvider;
 313     uses sun.util.resources.LocaleData.SupplementaryResourceBundleProvider;
 314 
 315 
 316     // Built-in service providers that are located via ServiceLoader
 317 
 318     provides java.nio.file.spi.FileSystemProvider with
 319         jdk.internal.jrtfs.JrtFileSystemProvider;
 320 }