< prev index next >

src/java.base/share/classes/module-info.java

Print this page

118     exports java.util.concurrent.locks;
119     exports java.util.function;
120     exports java.util.jar;
121     exports java.util.random;
122     exports java.util.regex;
123     exports java.util.spi;
124     exports java.util.stream;
125     exports java.util.zip;
126     exports javax.crypto;
127     exports javax.crypto.interfaces;
128     exports javax.crypto.spec;
129     exports javax.net;
130     exports javax.net.ssl;
131     exports javax.security.auth;
132     exports javax.security.auth.callback;
133     exports javax.security.auth.login;
134     exports javax.security.auth.spi;
135     exports javax.security.auth.x500;
136     exports javax.security.cert;
137 
138 
139     // additional qualified exports may be inserted at build time
140     // see make/gensrc/GenModuleInfo.gmk
141 
142     exports com.sun.crypto.provider to
143         jdk.crypto.cryptoki;
144     exports sun.invoke.util to
145         jdk.compiler;
146     exports com.sun.security.ntlm to
147         java.security.sasl;
148     exports jdk.internal to
149         jdk.incubator.vector;
150     // Note: all modules in the exported list participate in preview  features
151     // and therefore if they use preview features they do not need to be
152     // compiled with "--enable-preview".
153     // It is recommended for any modules that do participate that their
154     // module declaration be annotated with jdk.internal.javac.ParticipatesInPreview
155     exports jdk.internal.javac to
156         java.compiler,
157         java.desktop, // for ScopedValue
158         jdk.compiler,

248         jdk.unsupported;
249     exports jdk.internal.vm to
250         java.management,
251         jdk.internal.jvmstat,
252         jdk.management,
253         jdk.management.agent,
254         jdk.internal.vm.ci,
255         jdk.jfr;
256     exports jdk.internal.vm.annotation to
257         java.instrument,
258         jdk.internal.vm.ci,
259         jdk.incubator.vector,
260         jdk.jfr,
261         jdk.unsupported;
262     exports jdk.internal.vm.vector to
263         jdk.incubator.vector;
264     exports jdk.internal.util.xml to
265         jdk.jfr;
266     exports jdk.internal.util.xml.impl to
267         jdk.jfr;


268     exports jdk.internal.util to
269         java.desktop,
270         java.prefs,
271         java.security.jgss,
272         java.smartcardio,
273         java.naming,
274         java.rmi,
275         java.net.http,
276         jdk.charsets,
277         jdk.incubator.vector,
278         jdk.internal.vm.ci,
279         jdk.httpserver,
280         jdk.jlink,
281         jdk.jpackage,
282         jdk.net;
283     exports sun.net to
284         java.net.http,
285         jdk.naming.dns;
286     exports sun.net.ext to
287         jdk.net;

118     exports java.util.concurrent.locks;
119     exports java.util.function;
120     exports java.util.jar;
121     exports java.util.random;
122     exports java.util.regex;
123     exports java.util.spi;
124     exports java.util.stream;
125     exports java.util.zip;
126     exports javax.crypto;
127     exports javax.crypto.interfaces;
128     exports javax.crypto.spec;
129     exports javax.net;
130     exports javax.net.ssl;
131     exports javax.security.auth;
132     exports javax.security.auth.callback;
133     exports javax.security.auth.login;
134     exports javax.security.auth.spi;
135     exports javax.security.auth.x500;
136     exports javax.security.cert;
137 

138     // additional qualified exports may be inserted at build time
139     // see make/gensrc/GenModuleInfo.gmk
140 
141     exports com.sun.crypto.provider to
142         jdk.crypto.cryptoki;
143     exports sun.invoke.util to
144         jdk.compiler;
145     exports com.sun.security.ntlm to
146         java.security.sasl;
147     exports jdk.internal to
148         jdk.incubator.vector;
149     // Note: all modules in the exported list participate in preview  features
150     // and therefore if they use preview features they do not need to be
151     // compiled with "--enable-preview".
152     // It is recommended for any modules that do participate that their
153     // module declaration be annotated with jdk.internal.javac.ParticipatesInPreview
154     exports jdk.internal.javac to
155         java.compiler,
156         java.desktop, // for ScopedValue
157         jdk.compiler,

247         jdk.unsupported;
248     exports jdk.internal.vm to
249         java.management,
250         jdk.internal.jvmstat,
251         jdk.management,
252         jdk.management.agent,
253         jdk.internal.vm.ci,
254         jdk.jfr;
255     exports jdk.internal.vm.annotation to
256         java.instrument,
257         jdk.internal.vm.ci,
258         jdk.incubator.vector,
259         jdk.jfr,
260         jdk.unsupported;
261     exports jdk.internal.vm.vector to
262         jdk.incubator.vector;
263     exports jdk.internal.util.xml to
264         jdk.jfr;
265     exports jdk.internal.util.xml.impl to
266         jdk.jfr;
267     exports jdk.internal.value to  // Needed by Unsafe
268         jdk.unsupported;
269     exports jdk.internal.util to
270         java.desktop,
271         java.prefs,
272         java.security.jgss,
273         java.smartcardio,
274         java.naming,
275         java.rmi,
276         java.net.http,
277         jdk.charsets,
278         jdk.incubator.vector,
279         jdk.internal.vm.ci,
280         jdk.httpserver,
281         jdk.jlink,
282         jdk.jpackage,
283         jdk.net;
284     exports sun.net to
285         java.net.http,
286         jdk.naming.dns;
287     exports sun.net.ext to
288         jdk.net;
< prev index next >