< prev index next >

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

Print this page

113     exports java.util.concurrent.atomic;
114     exports java.util.concurrent.locks;
115     exports java.util.function;
116     exports java.util.jar;
117     exports java.util.random;
118     exports java.util.regex;
119     exports java.util.spi;
120     exports java.util.stream;
121     exports java.util.zip;
122     exports javax.crypto;
123     exports javax.crypto.interfaces;
124     exports javax.crypto.spec;
125     exports javax.net;
126     exports javax.net.ssl;
127     exports javax.security.auth;
128     exports javax.security.auth.callback;
129     exports javax.security.auth.login;
130     exports javax.security.auth.spi;
131     exports javax.security.auth.x500;
132     exports javax.security.cert;

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

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