< prev index next >

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

Print this page

119     exports java.util.concurrent.locks;
120     exports java.util.function;
121     exports java.util.jar;
122     exports java.util.random;
123     exports java.util.regex;
124     exports java.util.spi;
125     exports java.util.stream;
126     exports java.util.zip;
127     exports javax.crypto;
128     exports javax.crypto.interfaces;
129     exports javax.crypto.spec;
130     exports javax.net;
131     exports javax.net.ssl;
132     exports javax.security.auth;
133     exports javax.security.auth.callback;
134     exports javax.security.auth.login;
135     exports javax.security.auth.spi;
136     exports javax.security.auth.x500;
137     exports javax.security.cert;
138 
139 
140     // additional qualified exports may be inserted at build time
141     // see make/gensrc/GenModuleInfo.gmk
142 
143     exports com.sun.crypto.provider to
144         jdk.crypto.cryptoki;
145     exports sun.invoke.util to
146         jdk.compiler;
147     exports com.sun.security.ntlm to
148         java.security.sasl;
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,
158         jdk.incubator.vector, // participates in preview features
159         jdk.jartool, // participates in preview features

253         jdk.unsupported;
254     exports jdk.internal.vm to
255         java.management,
256         jdk.internal.jvmstat,
257         jdk.management,
258         jdk.management.agent,
259         jdk.internal.vm.ci,
260         jdk.jfr;
261     exports jdk.internal.vm.annotation to
262         java.instrument,
263         jdk.internal.vm.ci,
264         jdk.incubator.vector,
265         jdk.jfr,
266         jdk.unsupported;
267     exports jdk.internal.vm.vector to
268         jdk.incubator.vector;
269     exports jdk.internal.util.xml to
270         jdk.jfr;
271     exports jdk.internal.util.xml.impl to
272         jdk.jfr;


273     exports jdk.internal.util to
274         java.desktop,
275         java.prefs,
276         java.security.jgss,
277         java.smartcardio,
278         jdk.charsets,
279         jdk.internal.vm.ci,
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;
288     exports sun.net.dns to
289         java.security.jgss,
290         jdk.naming.dns;
291     exports sun.net.util to
292         java.desktop,

119     exports java.util.concurrent.locks;
120     exports java.util.function;
121     exports java.util.jar;
122     exports java.util.random;
123     exports java.util.regex;
124     exports java.util.spi;
125     exports java.util.stream;
126     exports java.util.zip;
127     exports javax.crypto;
128     exports javax.crypto.interfaces;
129     exports javax.crypto.spec;
130     exports javax.net;
131     exports javax.net.ssl;
132     exports javax.security.auth;
133     exports javax.security.auth.callback;
134     exports javax.security.auth.login;
135     exports javax.security.auth.spi;
136     exports javax.security.auth.x500;
137     exports javax.security.cert;
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     // Note: all modules in the exported list participate in preview  features
149     // and therefore if they use preview features they do not need to be
150     // compiled with "--enable-preview".
151     // It is recommended for any modules that do participate that their
152     // module declaration be annotated with jdk.internal.javac.ParticipatesInPreview
153     exports jdk.internal.javac to
154         java.compiler,
155         java.desktop, // for ScopedValue
156         jdk.compiler,
157         jdk.incubator.vector, // participates in preview features
158         jdk.jartool, // participates in preview features

252         jdk.unsupported;
253     exports jdk.internal.vm to
254         java.management,
255         jdk.internal.jvmstat,
256         jdk.management,
257         jdk.management.agent,
258         jdk.internal.vm.ci,
259         jdk.jfr;
260     exports jdk.internal.vm.annotation to
261         java.instrument,
262         jdk.internal.vm.ci,
263         jdk.incubator.vector,
264         jdk.jfr,
265         jdk.unsupported;
266     exports jdk.internal.vm.vector to
267         jdk.incubator.vector;
268     exports jdk.internal.util.xml to
269         jdk.jfr;
270     exports jdk.internal.util.xml.impl to
271         jdk.jfr;
272     exports jdk.internal.value to  // Needed by Unsafe
273         jdk.unsupported;
274     exports jdk.internal.util to
275         java.desktop,
276         java.prefs,
277         java.security.jgss,
278         java.smartcardio,
279         jdk.charsets,
280         jdk.internal.vm.ci,
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;
289     exports sun.net.dns to
290         java.security.jgss,
291         jdk.naming.dns;
292     exports sun.net.util to
293         java.desktop,
< prev index next >