author | hseigel |
Wed, 01 Mar 2017 08:00:02 -0500 | |
changeset 46194 | 5596e6f63072 |
parent 43852 | 93a527059d8a |
child 44285 | 8ee772e49cbb |
permissions | -rw-r--r-- |
36523 | 1 |
/* |
43852
93a527059d8a
8174735: Update JAX-WS RI integration to latest version
aefimov
parents:
43752
diff
changeset
|
2 |
* Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved. |
36523 | 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 |
||
40494
75b36e1c390a
8161965: Create initial javadoc description for modules
lancea
parents:
36523
diff
changeset
|
26 |
/** |
75b36e1c390a
8161965: Create initial javadoc description for modules
lancea
parents:
36523
diff
changeset
|
27 |
* Defines the Java Architecture for XML Binding (JAXB) API. |
43752
3c68ef249093
8174697: Fix @since in module-info.java in dev/jaxws repo
mli
parents:
42398
diff
changeset
|
28 |
* |
3c68ef249093
8174697: Fix @since in module-info.java in dev/jaxws repo
mli
parents:
42398
diff
changeset
|
29 |
* @since 9 |
40494
75b36e1c390a
8161965: Create initial javadoc description for modules
lancea
parents:
36523
diff
changeset
|
30 |
*/ |
36523 | 31 |
module java.xml.bind { |
42398
a05b6a285169
8169069: Module system implementation refresh (11/2016)
alanb
parents:
40494
diff
changeset
|
32 |
requires transitive java.activation; |
a05b6a285169
8169069: Module system implementation refresh (11/2016)
alanb
parents:
40494
diff
changeset
|
33 |
requires transitive java.xml; |
36523 | 34 |
requires java.compiler; |
35 |
requires java.desktop; |
|
36 |
requires java.logging; |
|
43852
93a527059d8a
8174735: Update JAX-WS RI integration to latest version
aefimov
parents:
43752
diff
changeset
|
37 |
requires jdk.unsupported; |
36523 | 38 |
|
39 |
uses javax.xml.bind.JAXBContextFactory; |
|
40 |
||
41 |
exports javax.xml.bind; |
|
42 |
exports javax.xml.bind.annotation; |
|
43 |
exports javax.xml.bind.annotation.adapters; |
|
44 |
exports javax.xml.bind.attachment; |
|
45 |
exports javax.xml.bind.helpers; |
|
46 |
exports javax.xml.bind.util; |
|
47 |
exports com.sun.istack.internal to |
|
48 |
java.xml.ws, |
|
49 |
jdk.xml.bind, |
|
50 |
jdk.xml.ws; |
|
51 |
exports com.sun.istack.internal.localization to |
|
52 |
java.xml.ws, |
|
53 |
jdk.xml.ws; |
|
54 |
exports com.sun.istack.internal.logging to |
|
55 |
java.xml.ws, |
|
56 |
jdk.xml.ws; |
|
57 |
exports com.sun.xml.internal.bind to |
|
58 |
java.xml.ws, |
|
59 |
jdk.xml.bind, |
|
60 |
jdk.xml.ws; |
|
61 |
exports com.sun.xml.internal.bind.annotation to |
|
62 |
jdk.xml.bind; |
|
63 |
exports com.sun.xml.internal.bind.api to |
|
64 |
java.xml.ws, |
|
65 |
jdk.xml.bind; |
|
66 |
exports com.sun.xml.internal.bind.api.impl to |
|
67 |
java.xml.ws, |
|
68 |
jdk.xml.bind; |
|
69 |
exports com.sun.xml.internal.bind.marshaller to |
|
70 |
java.xml.ws, |
|
71 |
jdk.xml.bind, |
|
72 |
jdk.xml.ws; |
|
73 |
exports com.sun.xml.internal.bind.unmarshaller to |
|
74 |
java.xml.ws, |
|
75 |
jdk.xml.bind, |
|
76 |
jdk.xml.ws; |
|
77 |
exports com.sun.xml.internal.bind.util to |
|
78 |
java.xml.ws, |
|
79 |
jdk.xml.bind, |
|
80 |
jdk.xml.ws; |
|
81 |
exports com.sun.xml.internal.bind.v2 to |
|
82 |
java.xml.ws, |
|
83 |
jdk.xml.bind, |
|
84 |
jdk.xml.ws; |
|
85 |
exports com.sun.xml.internal.bind.v2.model.annotation to |
|
86 |
java.xml.ws, |
|
87 |
jdk.xml.bind, |
|
88 |
jdk.xml.ws; |
|
89 |
exports com.sun.xml.internal.bind.v2.model.core to |
|
90 |
jdk.xml.bind; |
|
91 |
exports com.sun.xml.internal.bind.v2.model.impl to |
|
92 |
jdk.xml.bind; |
|
93 |
exports com.sun.xml.internal.bind.v2.model.nav to |
|
94 |
java.xml.ws, |
|
95 |
jdk.xml.bind, |
|
96 |
jdk.xml.ws; |
|
42398
a05b6a285169
8169069: Module system implementation refresh (11/2016)
alanb
parents:
40494
diff
changeset
|
97 |
opens com.sun.xml.internal.bind.v2.model.nav to |
a05b6a285169
8169069: Module system implementation refresh (11/2016)
alanb
parents:
40494
diff
changeset
|
98 |
java.xml.ws, |
a05b6a285169
8169069: Module system implementation refresh (11/2016)
alanb
parents:
40494
diff
changeset
|
99 |
jdk.xml.bind, |
a05b6a285169
8169069: Module system implementation refresh (11/2016)
alanb
parents:
40494
diff
changeset
|
100 |
jdk.xml.ws; |
36523 | 101 |
exports com.sun.xml.internal.bind.v2.model.runtime to |
102 |
java.xml.ws; |
|
103 |
exports com.sun.xml.internal.bind.v2.model.util to |
|
104 |
jdk.xml.bind; |
|
105 |
exports com.sun.xml.internal.bind.v2.runtime to |
|
106 |
java.xml.ws, |
|
107 |
jdk.xml.bind; |
|
108 |
exports com.sun.xml.internal.bind.v2.runtime.unmarshaller to |
|
109 |
java.xml.ws; |
|
110 |
exports com.sun.xml.internal.bind.v2.schemagen to |
|
111 |
java.xml.ws, |
|
112 |
jdk.xml.bind; |
|
113 |
exports com.sun.xml.internal.bind.v2.schemagen.episode to |
|
114 |
jdk.xml.bind; |
|
115 |
exports com.sun.xml.internal.bind.v2.schemagen.xmlschema to |
|
116 |
java.xml.ws; |
|
117 |
exports com.sun.xml.internal.bind.v2.util to |
|
118 |
jdk.xml.bind, |
|
119 |
jdk.xml.ws; |
|
120 |
exports com.sun.xml.internal.fastinfoset to |
|
121 |
java.xml.ws; |
|
122 |
exports com.sun.xml.internal.fastinfoset.stax to |
|
123 |
java.xml.ws; |
|
124 |
exports com.sun.xml.internal.fastinfoset.vocab to |
|
125 |
java.xml.ws; |
|
126 |
exports com.sun.xml.internal.org.jvnet.fastinfoset to |
|
127 |
java.xml.ws; |
|
128 |
exports com.sun.xml.internal.org.jvnet.mimepull to |
|
129 |
java.xml.ws; |
|
130 |
exports com.sun.xml.internal.org.jvnet.staxex to |
|
131 |
java.xml.ws; |
|
132 |
exports com.sun.xml.internal.org.jvnet.staxex.util to |
|
133 |
java.xml.ws; |
|
134 |
exports com.sun.xml.internal.txw2 to |
|
135 |
java.xml.ws, |
|
136 |
jdk.xml.bind, |
|
137 |
jdk.xml.ws; |
|
138 |
exports com.sun.xml.internal.txw2.annotation to |
|
139 |
java.xml.ws, |
|
140 |
jdk.xml.bind, |
|
141 |
jdk.xml.ws; |
|
142 |
exports com.sun.xml.internal.txw2.output to |
|
143 |
java.xml.ws, |
|
144 |
jdk.xml.bind, |
|
145 |
jdk.xml.ws; |
|
146 |
} |