author | aefimov |
Sun, 18 Jun 2017 23:07:25 +0100 | |
changeset 45678 | 65fdff10664d |
parent 42124 | 640a383428fb |
permissions | -rw-r--r-- |
12009 | 1 |
/* |
45678
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
2 |
* Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved. |
12009 | 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 |
package javax.xml.bind; |
|
27 |
||
28 |
import org.w3c.dom.Node; |
|
29 |
||
45678
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
30 |
import java.io.IOException; |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
31 |
import java.io.InputStream; |
12009 | 32 |
import java.util.Collections; |
33 |
import java.util.Map; |
|
34 |
import java.util.Properties; |
|
35 |
||
36 |
/** |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
37 |
* The {@code JAXBContext} class provides the client's entry point to the |
12009 | 38 |
* JAXB API. It provides an abstraction for managing the XML/Java binding |
39 |
* information necessary to implement the JAXB binding framework operations: |
|
40 |
* unmarshal, marshal and validate. |
|
41 |
* |
|
42 |
* <p>A client application normally obtains new instances of this class using |
|
43 |
* one of these two styles for newInstance methods, although there are other |
|
44 |
* specialized forms of the method available: |
|
45 |
* |
|
46 |
* <ul> |
|
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
47 |
* <li>{@link #newInstance(String, ClassLoader) JAXBContext.newInstance( "com.acme.foo:com.acme.bar" )} <br> |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
48 |
* The JAXBContext instance is initialized from a list of colon |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
49 |
* separated Java package names. Each java package contains |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
50 |
* JAXB mapped classes, schema-derived classes and/or user annotated |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
51 |
* classes. Additionally, the java package may contain JAXB package annotations |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
52 |
* that must be processed. (see JLS, Section 7.4.1 "Named Packages"). |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
53 |
* </li> |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
54 |
* <li>{@link #newInstance(Class...) JAXBContext.newInstance( com.acme.foo.Foo.class )} <br> |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
55 |
* The JAXBContext instance is initialized with class(es) |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
56 |
* passed as parameter(s) and classes that are statically reachable from |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
57 |
* these class(es). See {@link #newInstance(Class...)} for details. |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
58 |
* </li> |
12009 | 59 |
* </ul> |
60 |
* |
|
61 |
* <p><i> |
|
62 |
* The following JAXB 1.0 requirement is only required for schema to |
|
63 |
* java interface/implementation binding. It does not apply to JAXB annotated |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
64 |
* classes. JAXB Providers must generate a {@code jaxb.properties} file in |
12009 | 65 |
* each package containing schema derived classes. The property file must |
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
66 |
* contain a property named {@code javax.xml.bind.context.factory} whose |
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
67 |
* value is the name of the class that implements the {@code createContext} |
12009 | 68 |
* APIs.</i> |
69 |
* |
|
70 |
* <p><i> |
|
71 |
* The class supplied by the provider does not have to be assignable to |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
72 |
* {@code javax.xml.bind.JAXBContext}, it simply has to provide a class that |
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
73 |
* implements the {@code createContext} APIs.</i> |
12009 | 74 |
* |
75 |
* <p><i> |
|
76 |
* In addition, the provider must call the |
|
77 |
* {@link DatatypeConverter#setDatatypeConverter(DatatypeConverterInterface) |
|
78 |
* DatatypeConverter.setDatatypeConverter} api prior to any client |
|
79 |
* invocations of the marshal and unmarshal methods. This is necessary to |
|
80 |
* configure the datatype converter that will be used during these operations.</i> |
|
81 |
* |
|
82 |
* <a name="Unmarshalling"></a> |
|
83 |
* <h3>Unmarshalling</h3> |
|
84 |
* <p> |
|
85 |
* The {@link Unmarshaller} class provides the client application the ability |
|
86 |
* to convert XML data into a tree of Java content objects. |
|
87 |
* The unmarshal method allows for |
|
88 |
* any global XML element declared in the schema to be unmarshalled as |
|
89 |
* the root of an instance document. |
|
90 |
* Additionally, the unmarshal method allows for an unrecognized root element that |
|
91 |
* has an xsi:type attribute's value that references a type definition declared in |
|
92 |
* the schema to be unmarshalled as the root of an instance document. |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
93 |
* The {@code JAXBContext} object |
12009 | 94 |
* allows the merging of global elements and type definitions across a set of schemas (listed |
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
95 |
* in the {@code contextPath}). Since each schema in the schema set can belong |
12009 | 96 |
* to distinct namespaces, the unification of schemas to an unmarshalling |
35414 | 97 |
* context must be namespace independent. This means that a client |
12009 | 98 |
* application is able to unmarshal XML documents that are instances of |
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
99 |
* any of the schemas listed in the {@code contextPath}. For example: |
12009 | 100 |
* |
101 |
* <pre> |
|
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
102 |
* JAXBContext jc = JAXBContext.newInstance( "com.acme.foo:com.acme.bar" ); |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
103 |
* Unmarshaller u = jc.createUnmarshaller(); |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
104 |
* FooObject fooObj = (FooObject)u.unmarshal( new File( "foo.xml" ) ); // ok |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
105 |
* BarObject barObj = (BarObject)u.unmarshal( new File( "bar.xml" ) ); // ok |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
106 |
* BazObject bazObj = (BazObject)u.unmarshal( new File( "baz.xml" ) ); // error, "com.acme.baz" not in contextPath |
12009 | 107 |
* </pre> |
108 |
* |
|
109 |
* <p> |
|
110 |
* The client application may also generate Java content trees explicitly rather |
|
111 |
* than unmarshalling existing XML data. For all JAXB-annotated value classes, |
|
112 |
* an application can create content using constructors. |
|
113 |
* For schema-derived interface/implementation classes and for the |
|
114 |
* creation of elements that are not bound to a JAXB-annotated |
|
115 |
* class, an application needs to have access and knowledge about each of |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
116 |
* the schema derived {@code ObjectFactory} classes that exist in each of |
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
117 |
* java packages contained in the {@code contextPath}. For each schema |
12009 | 118 |
* derived java class, there is a static factory method that produces objects |
119 |
* of that type. For example, |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
120 |
* assume that after compiling a schema, you have a package {@code com.acme.foo} |
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
121 |
* that contains a schema derived interface named {@code PurchaseOrder}. In |
12009 | 122 |
* order to create objects of that type, the client application would use the |
123 |
* factory method like this: |
|
124 |
* |
|
125 |
* <pre> |
|
126 |
* com.acme.foo.PurchaseOrder po = |
|
127 |
* com.acme.foo.ObjectFactory.createPurchaseOrder(); |
|
128 |
* </pre> |
|
129 |
* |
|
130 |
* <p> |
|
131 |
* Once the client application has an instance of the the schema derived object, |
|
132 |
* it can use the mutator methods to set content on it. |
|
133 |
* |
|
134 |
* <p> |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
135 |
* For more information on the generated {@code ObjectFactory} classes, see |
12009 | 136 |
* Section 4.2 <i>Java Package</i> of the specification. |
137 |
* |
|
138 |
* <p> |
|
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
139 |
* <i>The provider must generate a class in each |
12009 | 140 |
* package that contains all of the necessary object factory methods for that |
141 |
* package named ObjectFactory as well as the static |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
142 |
* {@code newInstance( javaContentInterface )} method</i> |
12009 | 143 |
* |
144 |
* <h3>Marshalling</h3> |
|
145 |
* <p> |
|
146 |
* The {@link Marshaller} class provides the client application the ability |
|
147 |
* to convert a Java content tree back into XML data. There is no difference |
|
148 |
* between marshalling a content tree that is created manually using the factory |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
149 |
* methods and marshalling a content tree that is the result an {@code unmarshal} |
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
150 |
* operation. Clients can marshal a java content tree back to XML data |
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
151 |
* to a {@code java.io.OutputStream} or a {@code java.io.Writer}. The |
12009 | 152 |
* marshalling process can alternatively produce SAX2 event streams to a |
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
153 |
* registered {@code ContentHandler} or produce a DOM Node object. |
12009 | 154 |
* Client applications have control over the output encoding as well as |
155 |
* whether or not to marshal the XML data as a complete document or |
|
156 |
* as a fragment. |
|
157 |
* |
|
158 |
* <p> |
|
159 |
* Here is a simple example that unmarshals an XML document and then marshals |
|
160 |
* it back out: |
|
161 |
* |
|
162 |
* <pre> |
|
163 |
* JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" ); |
|
164 |
* |
|
165 |
* // unmarshal from foo.xml |
|
166 |
* Unmarshaller u = jc.createUnmarshaller(); |
|
167 |
* FooObject fooObj = (FooObject)u.unmarshal( new File( "foo.xml" ) ); |
|
168 |
* |
|
169 |
* // marshal to System.out |
|
170 |
* Marshaller m = jc.createMarshaller(); |
|
171 |
* m.marshal( fooObj, System.out ); |
|
172 |
* </pre> |
|
173 |
* |
|
174 |
* |
|
175 |
* <h3>Validation</h3> |
|
176 |
* <p> |
|
177 |
* Validation has been changed significantly since JAXB 1.0. The {@link Validator} |
|
178 |
* class has been deprecated and made optional. This means that you are advised |
|
179 |
* not to use this class and, in fact, it may not even be available depending on |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
180 |
* your JAXB provider. JAXB 1.0 client applications that rely on {@code Validator} |
12009 | 181 |
* will still work properly when deployed with the JAXB 1.0 runtime system. |
182 |
* |
|
183 |
* In JAXB 2.0, the {@link Unmarshaller} has included convenince methods that expose |
|
184 |
* the JAXP 1.3 {@link javax.xml.validation} framework. Please refer to the |
|
185 |
* {@link Unmarshaller#setSchema(javax.xml.validation.Schema)} API for more |
|
186 |
* information. |
|
187 |
* |
|
188 |
* |
|
189 |
* <h3>JAXB Runtime Binding Framework Compatibility</h3> |
|
190 |
* <p> |
|
191 |
* The following JAXB 1.0 restriction only applies to binding schema to |
|
192 |
* interfaces/implementation classes. |
|
193 |
* Since this binding does not require a common runtime system, a JAXB |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
194 |
* client application must not attempt to mix runtime objects ({@code JAXBContext, |
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
195 |
* Marshaller}, etc. ) from different providers. This does not |
12009 | 196 |
* mean that the client application isn't portable, it simply means that a |
197 |
* client has to use a runtime system provided by the same provider that was |
|
198 |
* used to compile the schema. |
|
199 |
* |
|
200 |
* |
|
201 |
* <h3>Discovery of JAXB implementation</h3> |
|
202 |
* <p> |
|
35414 | 203 |
* To create an instance of {@link JAXBContext}, one of {@code JAXBContext.newInstance(...)} methods is invoked. After |
204 |
* JAX-B implementation is discovered, call is delegated to appropriate provider's method {@code createContext(...)} |
|
205 |
* passing parameters from the original call. |
|
206 |
* <p> |
|
207 |
* JAX-B implementation discovery happens each time {@code JAXBContext.newInstance} is invoked. If there is no user |
|
208 |
* specific configuration provided, default JAX-B provider must be returned. |
|
209 |
* <p> |
|
210 |
* Implementation discovery consists of following steps: |
|
12009 | 211 |
* |
212 |
* <ol> |
|
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
213 |
* |
12009 | 214 |
* <li> |
35414 | 215 |
* Packages/classes explicitly passed in to the {@link #newInstance} method are processed in the order they are |
216 |
* specified, until {@code jaxb.properties} file is looked up in its package, by using the associated classloader — |
|
12009 | 217 |
* this is {@link Class#getClassLoader() the owner class loader} for a {@link Class} argument, and for a package |
16791 | 218 |
* the specified {@link ClassLoader}. |
12009 | 219 |
* |
220 |
* <p> |
|
35414 | 221 |
* If such a resource is discovered, it is {@link Properties#load(InputStream) loaded} as a property file, and |
222 |
* the value of the {@link #JAXB_CONTEXT_FACTORY} key will be assumed to be the provider factory class. If no value |
|
223 |
* found, {@code "javax.xml.bind.context.factory"} is used as a key for backwards compatibility reasons. This class is |
|
224 |
* then loaded by the associated class loader discussed above. |
|
12009 | 225 |
* |
226 |
* <p> |
|
227 |
* This phase of the look up allows some packages to force the use of a certain JAXB implementation. |
|
228 |
* (For example, perhaps the schema compiler has generated some vendor extension in the code.) |
|
229 |
* |
|
45678
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
230 |
* <p> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
231 |
* This configuration method is deprecated. |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
232 |
* |
12009 | 233 |
* <li> |
234 |
* If the system property {@link #JAXB_CONTEXT_FACTORY} exists, then its value is assumed to be the provider |
|
35414 | 235 |
* factory class. If no such property exists, properties {@code "javax.xml.bind.context.factory"} and |
236 |
* {@code "javax.xml.bind.JAXBContext"} are checked too (in this order), for backwards compatibility reasons. This phase |
|
237 |
* of the look up enables per-JVM override of the JAXB implementation. |
|
12009 | 238 |
* |
239 |
* <li> |
|
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
240 |
* Provider of {@link javax.xml.bind.JAXBContextFactory} is loaded using the service-provider loading |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
241 |
* facilities, defined by the {@link java.util.ServiceLoader} class, to attempt |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
242 |
* to locate and load an implementation of the service using the {@linkplain |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
243 |
* java.util.ServiceLoader#load(java.lang.Class) default loading mechanism}: the service-provider loading facility |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
244 |
* will use the {@linkplain java.lang.Thread#getContextClassLoader() current thread's context class loader} |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
245 |
* to attempt to load the context factory. If the context class loader is null, the |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
246 |
* {@linkplain ClassLoader#getSystemClassLoader() system class loader} will be used. |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
247 |
* <br> |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
248 |
* In case of {@link java.util.ServiceConfigurationError service |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
249 |
* configuration error} a {@link javax.xml.bind.JAXBException} will be thrown. |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
250 |
* |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
251 |
* <li> |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
252 |
* Look for resource {@code /META-INF/services/javax.xml.bind.JAXBContext} using provided class loader. |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
253 |
* Methods without class loader parameter use {@code Thread.currentThread().getContextClassLoader()}. |
35414 | 254 |
* If such a resource exists, its content is assumed to be the provider factory class. |
255 |
* |
|
256 |
* This configuration method is deprecated. |
|
257 |
* |
|
258 |
* <li> |
|
259 |
* Finally, if all the steps above fail, then the rest of the look up is unspecified. That said, |
|
260 |
* the recommended behavior is to simply look for some hard-coded platform default JAXB implementation. |
|
261 |
* This phase of the look up is so that Java SE can have its own JAXB implementation as the last resort. |
|
262 |
* </ol> |
|
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
263 |
* |
35414 | 264 |
* <p> |
265 |
* Once the provider factory class is discovered, context creation is delegated to one of its |
|
266 |
* {@code createContext(...)} methods. |
|
267 |
* |
|
268 |
* For backward compatibility reasons, there are two ways how to implement provider factory class: |
|
269 |
* <ol> |
|
270 |
* <li>the class is implementation of {@link javax.xml.bind.JAXBContextFactory}. It must also implement no-arg |
|
271 |
* constructor. If discovered in other step then 3, new instance using no-arg constructor is created first. |
|
272 |
* After that, appropriate instance method is invoked on this instance. |
|
273 |
* <li>the class is not implementation of interface above and then it is mandated to implement the following |
|
274 |
* static method signatures: |
|
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
275 |
* <pre> |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
276 |
* |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
277 |
* public static JAXBContext createContext( |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
278 |
* String contextPath, |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
279 |
* ClassLoader classLoader, |
35414 | 280 |
* Map<String,Object> properties ) throws JAXBException |
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
281 |
* |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
282 |
* public static JAXBContext createContext( |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
283 |
* Class[] classes, |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
284 |
* Map<String,Object> properties ) throws JAXBException |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
285 |
* </pre> |
35414 | 286 |
* In this scenario, appropriate static method is used instead of instance method. This approach is incompatible |
287 |
* with {@link java.util.ServiceLoader} so it can't be used with step 3. |
|
12009 | 288 |
* </ol> |
289 |
* <p> |
|
35414 | 290 |
* There is no difference in behavior of given method {@code createContext(...)} regardless of whether it uses approach |
291 |
* 1 (JAXBContextFactory) or 2 (no interface, static methods). |
|
12009 | 292 |
* |
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
293 |
* @apiNote |
35414 | 294 |
* Service discovery method using resource {@code /META-INF/services/javax.xml.bind.JAXBContext} (described in step 4) |
295 |
* is supported only to allow backwards compatibility, it is strongly recommended to migrate to standard |
|
296 |
* {@link java.util.ServiceLoader} mechanism (described in step 3). The difference here is the resource name, which |
|
297 |
* doesn't match service's type name. |
|
298 |
* <p> |
|
299 |
* Also using providers implementing interface {@link JAXBContextFactory} is preferred over using ones defining |
|
300 |
* static methods, same as {@link JAXBContext#JAXB_CONTEXT_FACTORY} property is preferred over property |
|
301 |
* {@code "javax.xml.bind.context.factory"} |
|
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
302 |
* |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
303 |
* @implNote |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
304 |
* Within the last step, if Glassfish AS environment detected, its specific service loader is used to find factory class. |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
305 |
* |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
306 |
* @author <ul><li>Ryan Shoemaker, Sun Microsystems, Inc.</li> |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
307 |
* <li>Kohsuke Kawaguchi, Sun Microsystems, Inc.</li> |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
308 |
* <li>Joe Fialli, Sun Microsystems, Inc.</li></ul> |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
309 |
* |
12009 | 310 |
* @see Marshaller |
311 |
* @see Unmarshaller |
|
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
312 |
* @see <a href="http://docs.oracle.com/javase/specs/jls/se7/html/jls-7.html#jls-7.4.1">S 7.4.1 "Named Packages" |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
313 |
* in Java Language Specification</a> |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
314 |
* |
25840 | 315 |
* @since 1.6, JAXB 1.0 |
12009 | 316 |
*/ |
317 |
public abstract class JAXBContext { |
|
318 |
||
319 |
/** |
|
320 |
* The name of the property that contains the name of the class capable |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
321 |
* of creating new {@code JAXBContext} objects. |
12009 | 322 |
*/ |
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
323 |
public static final String JAXB_CONTEXT_FACTORY = "javax.xml.bind.JAXBContextFactory"; |
12009 | 324 |
|
325 |
protected JAXBContext() { |
|
326 |
} |
|
327 |
||
328 |
||
329 |
/** |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
330 |
* Create a new instance of a {@code JAXBContext} class. |
12009 | 331 |
* |
332 |
* <p> |
|
333 |
* This is a convenience method to invoke the |
|
334 |
* {@link #newInstance(String,ClassLoader)} method with |
|
335 |
* the context class loader of the current thread. |
|
336 |
* |
|
337 |
* @throws JAXBException if an error was encountered while creating the |
|
45678
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
338 |
* {@code JAXBContext} such as |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
339 |
* <ol> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
340 |
* <li>failure to locate either ObjectFactory.class or jaxb.index in the packages</li> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
341 |
* <li>an ambiguity among global elements contained in the contextPath</li> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
342 |
* <li>failure to locate a value for the context factory provider property</li> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
343 |
* <li>mixing schema derived packages from different providers on the same contextPath</li> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
344 |
* <li>packages are not open to {@code java.xml.bind} module</li> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
345 |
* </ol> |
12009 | 346 |
*/ |
347 |
public static JAXBContext newInstance( String contextPath ) |
|
35414 | 348 |
throws JAXBException { |
12009 | 349 |
|
350 |
//return newInstance( contextPath, JAXBContext.class.getClassLoader() ); |
|
351 |
return newInstance( contextPath, getContextClassLoader()); |
|
352 |
} |
|
353 |
||
354 |
/** |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
355 |
* Create a new instance of a {@code JAXBContext} class. |
12009 | 356 |
* |
357 |
* <p> |
|
358 |
* The client application must supply a context path which is a list of |
|
359 |
* colon (':', \u005Cu003A) separated java package names that contain |
|
360 |
* schema-derived classes and/or fully qualified JAXB-annotated classes. |
|
361 |
* Schema-derived |
|
362 |
* code is registered with the JAXBContext by the |
|
363 |
* ObjectFactory.class generated per package. |
|
364 |
* Alternatively than being listed in the context path, programmer |
|
365 |
* annotated JAXB mapped classes can be listed in a |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
366 |
* {@code jaxb.index} resource file, format described below. |
12009 | 367 |
* Note that a java package can contain both schema-derived classes and |
368 |
* user annotated JAXB classes. Additionally, the java package may |
|
369 |
* contain JAXB package annotations that must be processed. (see JLS, |
|
370 |
* Section 7.4.1 "Named Packages"). |
|
371 |
* </p> |
|
372 |
* |
|
373 |
* <p> |
|
374 |
* Every package listed on the contextPath must meet <b>one or both</b> of the |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
375 |
* following conditions otherwise a {@code JAXBException} will be thrown: |
12009 | 376 |
* </p> |
377 |
* <ol> |
|
378 |
* <li>it must contain ObjectFactory.class</li> |
|
379 |
* <li>it must contain jaxb.index</li> |
|
380 |
* </ol> |
|
381 |
* |
|
382 |
* <p> |
|
383 |
* <b>Format for jaxb.index</b> |
|
384 |
* <p> |
|
385 |
* The file contains a newline-separated list of class names. |
|
386 |
* Space and tab characters, as well as blank |
|
387 |
* lines, are ignored. The comment character |
|
388 |
* is '#' (0x23); on each line all characters following the first comment |
|
389 |
* character are ignored. The file must be encoded in UTF-8. Classes that |
|
390 |
* are reachable, as defined in {@link #newInstance(Class...)}, from the |
|
391 |
* listed classes are also registered with JAXBContext. |
|
392 |
* <p> |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
393 |
* Constraints on class name occuring in a {@code jaxb.index} file are: |
12009 | 394 |
* <ul> |
395 |
* <li>Must not end with ".class".</li> |
|
396 |
* <li>Class names are resolved relative to package containing |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
397 |
* {@code jaxb.index} file. Only classes occuring directly in package |
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
398 |
* containing {@code jaxb.index} file are allowed.</li> |
12009 | 399 |
* <li>Fully qualified class names are not allowed. |
400 |
* A qualified class name,relative to current package, |
|
401 |
* is only allowed to specify a nested or inner class.</li> |
|
402 |
* </ul> |
|
403 |
* |
|
404 |
* <p> |
|
405 |
* To maintain compatibility with JAXB 1.0 schema to java |
|
406 |
* interface/implementation binding, enabled by schema customization |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
407 |
* {@code <jaxb:globalBindings valueClass="false">}, |
12009 | 408 |
* the JAXB provider will ensure that each package on the context path |
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
409 |
* has a {@code jaxb.properties} file which contains a value for the |
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
410 |
* {@code javax.xml.bind.context.factory} property and that all values |
12009 | 411 |
* resolve to the same provider. This requirement does not apply to |
412 |
* JAXB annotated classes. |
|
413 |
* |
|
414 |
* <p> |
|
415 |
* If there are any global XML element name collisions across the various |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
416 |
* packages listed on the {@code contextPath}, a {@code JAXBException} |
12009 | 417 |
* will be thrown. |
418 |
* |
|
419 |
* <p> |
|
420 |
* Mixing generated interface/impl bindings from multiple JAXB Providers |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
421 |
* in the same context path may result in a {@code JAXBException} |
12009 | 422 |
* being thrown. |
423 |
* |
|
424 |
* <p> |
|
425 |
* The steps involved in discovering the JAXB implementation is discussed in the class javadoc. |
|
426 |
* |
|
45678
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
427 |
* @param contextPath |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
428 |
* List of java package names that contain schema |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
429 |
* derived class and/or java to schema (JAXB-annotated) |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
430 |
* mapped classes. |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
431 |
* Packages in {@code contextPath} that are in named modules must be |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
432 |
* {@linkplain java.lang.Module#isOpen open} to at least the {@code java.xml.bind} module. |
12009 | 433 |
* @param classLoader |
434 |
* This class loader will be used to locate the implementation |
|
435 |
* classes. |
|
436 |
* |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
437 |
* @return a new instance of a {@code JAXBContext} |
12009 | 438 |
* @throws JAXBException if an error was encountered while creating the |
45678
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
439 |
* {@code JAXBContext} such as |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
440 |
* <ol> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
441 |
* <li>failure to locate either ObjectFactory.class or jaxb.index in the packages</li> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
442 |
* <li>an ambiguity among global elements contained in the contextPath</li> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
443 |
* <li>failure to locate a value for the context factory provider property</li> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
444 |
* <li>mixing schema derived packages from different providers on the same contextPath</li> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
445 |
* <li>packages are not open to {@code java.xml.bind} module</li> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
446 |
* </ol> |
12009 | 447 |
*/ |
448 |
public static JAXBContext newInstance( String contextPath, ClassLoader classLoader ) throws JAXBException { |
|
449 |
||
450 |
return newInstance(contextPath,classLoader,Collections.<String,Object>emptyMap()); |
|
451 |
} |
|
452 |
||
453 |
/** |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
454 |
* Create a new instance of a {@code JAXBContext} class. |
12009 | 455 |
* |
456 |
* <p> |
|
457 |
* This is mostly the same as {@link JAXBContext#newInstance(String, ClassLoader)}, |
|
458 |
* but this version allows you to pass in provider-specific properties to configure |
|
459 |
* the instantiation of {@link JAXBContext}. |
|
460 |
* |
|
461 |
* <p> |
|
35414 | 462 |
* The interpretation of properties is up to implementations. Implementations must |
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
463 |
* throw {@code JAXBException} if it finds properties that it doesn't understand. |
12009 | 464 |
* |
45678
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
465 |
* @param contextPath |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
466 |
* List of java package names that contain schema |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
467 |
* derived class and/or java to schema (JAXB-annotated) |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
468 |
* mapped classes. |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
469 |
* Packages in {@code contextPath} that are in named modules must be |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
470 |
* {@linkplain java.lang.Module#isOpen open} to at least the {@code java.xml.bind} module. |
12009 | 471 |
* @param classLoader |
472 |
* This class loader will be used to locate the implementation classes. |
|
473 |
* @param properties |
|
474 |
* provider-specific properties. Can be null, which means the same thing as passing |
|
475 |
* in an empty map. |
|
476 |
* |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
477 |
* @return a new instance of a {@code JAXBContext} |
42124
640a383428fb
8164479: Update JAX-WS RI integration to latest version (2.3.0-SNAPSHOT)
aefimov
parents:
36033
diff
changeset
|
478 |
* @throws JAXBException if an error was encountered while creating the |
640a383428fb
8164479: Update JAX-WS RI integration to latest version (2.3.0-SNAPSHOT)
aefimov
parents:
36033
diff
changeset
|
479 |
* {@code JAXBContext} such as |
36033
f50f6572da23
8149923: invalid javadoc in javax.xml.bind.JAXBContext (introduced by 8138699)
mkos
parents:
35414
diff
changeset
|
480 |
* <ol> |
f50f6572da23
8149923: invalid javadoc in javax.xml.bind.JAXBContext (introduced by 8138699)
mkos
parents:
35414
diff
changeset
|
481 |
* <li>failure to locate either ObjectFactory.class or jaxb.index in the packages</li> |
f50f6572da23
8149923: invalid javadoc in javax.xml.bind.JAXBContext (introduced by 8138699)
mkos
parents:
35414
diff
changeset
|
482 |
* <li>an ambiguity among global elements contained in the contextPath</li> |
f50f6572da23
8149923: invalid javadoc in javax.xml.bind.JAXBContext (introduced by 8138699)
mkos
parents:
35414
diff
changeset
|
483 |
* <li>failure to locate a value for the context factory provider property</li> |
f50f6572da23
8149923: invalid javadoc in javax.xml.bind.JAXBContext (introduced by 8138699)
mkos
parents:
35414
diff
changeset
|
484 |
* <li>mixing schema derived packages from different providers on the same contextPath</li> |
45678
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
485 |
* <li>packages are not open to {@code java.xml.bind} module</li> |
36033
f50f6572da23
8149923: invalid javadoc in javax.xml.bind.JAXBContext (introduced by 8138699)
mkos
parents:
35414
diff
changeset
|
486 |
* </ol> |
25840 | 487 |
* @since 1.6, JAXB 2.0 |
12009 | 488 |
*/ |
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
489 |
public static JAXBContext newInstance( String contextPath, |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
490 |
ClassLoader classLoader, |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
491 |
Map<String,?> properties ) throws JAXBException { |
12009 | 492 |
|
493 |
return ContextFinder.find( |
|
494 |
/* The default property name according to the JAXB spec */ |
|
35414 | 495 |
JAXB_CONTEXT_FACTORY, |
12009 | 496 |
|
497 |
/* the context path supplied by the client app */ |
|
35414 | 498 |
contextPath, |
12009 | 499 |
|
500 |
/* class loader to be used */ |
|
35414 | 501 |
classLoader, |
502 |
properties ); |
|
12009 | 503 |
} |
504 |
||
505 |
// TODO: resurrect this once we introduce external annotations |
|
506 |
// /** |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
507 |
// * Create a new instance of a {@code JAXBContext} class. |
12009 | 508 |
// * |
509 |
// * <p> |
|
510 |
// * The client application must supply a list of classes that the new |
|
511 |
// * context object needs to recognize. |
|
512 |
// * |
|
513 |
// * Not only the new context will recognize all the classes specified, |
|
514 |
// * but it will also recognize any classes that are directly/indirectly |
|
515 |
// * referenced statically from the specified classes. |
|
516 |
// * |
|
517 |
// * For example, in the following Java code, if you do |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
518 |
// * {@code newInstance(Foo.class)}, the newly created {@link JAXBContext} |
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
519 |
// * will recognize both {@code Foo} and {@code Bar}, but not {@code Zot}: |
12009 | 520 |
// * <pre> |
521 |
// * class Foo { |
|
522 |
// * Bar b; |
|
523 |
// * } |
|
524 |
// * class Bar { int x; } |
|
525 |
// * class Zot extends Bar { int y; } |
|
526 |
// * </pre> |
|
527 |
// * |
|
528 |
// * Therefore, a typical client application only needs to specify the |
|
529 |
// * top-level classes, but it needs to be careful. |
|
530 |
// * |
|
531 |
// * TODO: if we are to define other mechanisms, refer to them. |
|
532 |
// * |
|
533 |
// * @param externalBindings |
|
534 |
// * list of external binding files. Can be null or empty if none is used. |
|
535 |
// * when specified, those files determine how the classes are bound. |
|
536 |
// * |
|
537 |
// * @param classesToBeBound |
|
538 |
// * list of java classes to be recognized by the new {@link JAXBContext}. |
|
539 |
// * Can be empty, in which case a {@link JAXBContext} that only knows about |
|
540 |
// * spec-defined classes will be returned. |
|
541 |
// * |
|
542 |
// * @return |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
543 |
// * A new instance of a {@code JAXBContext}. |
12009 | 544 |
// * |
545 |
// * @throws JAXBException |
|
546 |
// * if an error was encountered while creating the |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
547 |
// * {@code JAXBContext}, such as (but not limited to): |
12009 | 548 |
// * <ol> |
549 |
// * <li>No JAXB implementation was discovered |
|
550 |
// * <li>Classes use JAXB annotations incorrectly |
|
551 |
// * <li>Classes have colliding annotations (i.e., two classes with the same type name) |
|
552 |
// * <li>Specified external bindings are incorrect |
|
553 |
// * <li>The JAXB implementation was unable to locate |
|
554 |
// * provider-specific out-of-band information (such as additional |
|
555 |
// * files generated at the development time.) |
|
556 |
// * </ol> |
|
557 |
// * |
|
558 |
// * @throws IllegalArgumentException |
|
559 |
// * if the parameter contains {@code null} (i.e., {@code newInstance(null);}) |
|
560 |
// * |
|
25840 | 561 |
// * @since JAXB 2.0 |
12009 | 562 |
// */ |
563 |
// public static JAXBContext newInstance( Source[] externalBindings, Class... classesToBeBound ) |
|
564 |
// throws JAXBException { |
|
565 |
// |
|
566 |
// // empty class list is not an error, because the context will still include |
|
567 |
// // spec-specified classes like String and Integer. |
|
568 |
// // if(classesToBeBound.length==0) |
|
569 |
// // throw new IllegalArgumentException(); |
|
570 |
// |
|
571 |
// // but it is an error to have nulls in it. |
|
572 |
// for( int i=classesToBeBound.length-1; i>=0; i-- ) |
|
573 |
// if(classesToBeBound[i]==null) |
|
574 |
// throw new IllegalArgumentException(); |
|
575 |
// |
|
576 |
// return ContextFinder.find(externalBindings,classesToBeBound); |
|
577 |
// } |
|
578 |
||
579 |
/** |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
580 |
* Create a new instance of a {@code JAXBContext} class. |
12009 | 581 |
* |
582 |
* <p> |
|
583 |
* The client application must supply a list of classes that the new |
|
584 |
* context object needs to recognize. |
|
585 |
* |
|
586 |
* Not only the new context will recognize all the classes specified, |
|
587 |
* but it will also recognize any classes that are directly/indirectly |
|
588 |
* referenced statically from the specified classes. Subclasses of |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
589 |
* referenced classes nor {@code @XmlTransient} referenced classes |
12009 | 590 |
* are not registered with JAXBContext. |
591 |
* |
|
592 |
* For example, in the following Java code, if you do |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
593 |
* {@code newInstance(Foo.class)}, the newly created {@link JAXBContext} |
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
594 |
* will recognize both {@code Foo} and {@code Bar}, but not {@code Zot} or {@code FooBar}: |
12009 | 595 |
* <pre> |
596 |
* class Foo { |
|
597 |
* @XmlTransient FooBar c; |
|
598 |
* Bar b; |
|
599 |
* } |
|
600 |
* class Bar { int x; } |
|
601 |
* class Zot extends Bar { int y; } |
|
602 |
* class FooBar { } |
|
603 |
* </pre> |
|
604 |
* |
|
605 |
* Therefore, a typical client application only needs to specify the |
|
606 |
* top-level classes, but it needs to be careful. |
|
607 |
* |
|
608 |
* <p> |
|
609 |
* Note that for each java package registered with JAXBContext, |
|
610 |
* when the optional package annotations exist, they must be processed. |
|
611 |
* (see JLS, Section 7.4.1 "Named Packages"). |
|
612 |
* |
|
613 |
* <p> |
|
614 |
* The steps involved in discovering the JAXB implementation is discussed in the class javadoc. |
|
615 |
* |
|
616 |
* @param classesToBeBound |
|
45678
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
617 |
* List of java classes to be recognized by the new {@link JAXBContext}. |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
618 |
* Classes in {@code classesToBeBound} that are in named modules must be in a package |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
619 |
* that is {@linkplain java.lang.Module#isOpen open} to at least the {@code java.xml.bind} module. |
12009 | 620 |
* Can be empty, in which case a {@link JAXBContext} that only knows about |
621 |
* spec-defined classes will be returned. |
|
622 |
* |
|
623 |
* @return |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
624 |
* A new instance of a {@code JAXBContext}. |
12009 | 625 |
* |
45678
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
626 |
* @throws JAXBException |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
627 |
* if an error was encountered while creating the |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
628 |
* {@code JAXBContext}, such as (but not limited to): |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
629 |
* <ol> |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
630 |
* <li>No JAXB implementation was discovered |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
631 |
* <li>Classes use JAXB annotations incorrectly |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
632 |
* <li>Classes have colliding annotations (i.e., two classes with the same type name) |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
633 |
* <li>The JAXB implementation was unable to locate |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
634 |
* provider-specific out-of-band information (such as additional |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
635 |
* files generated at the development time.) |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
636 |
* <li>{@code classesToBeBound} are not open to {@code java.xml.bind} module |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
637 |
* </ol> |
12009 | 638 |
* |
639 |
* @throws IllegalArgumentException |
|
640 |
* if the parameter contains {@code null} (i.e., {@code newInstance(null);}) |
|
641 |
* |
|
25840 | 642 |
* @since 1.6, JAXB 2.0 |
12009 | 643 |
*/ |
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
644 |
public static JAXBContext newInstance( Class<?> ... classesToBeBound ) |
35414 | 645 |
throws JAXBException { |
12009 | 646 |
|
647 |
return newInstance(classesToBeBound,Collections.<String,Object>emptyMap()); |
|
648 |
} |
|
649 |
||
650 |
/** |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
651 |
* Create a new instance of a {@code JAXBContext} class. |
12009 | 652 |
* |
653 |
* <p> |
|
654 |
* An overloading of {@link JAXBContext#newInstance(Class...)} |
|
655 |
* to configure 'properties' for this instantiation of {@link JAXBContext}. |
|
656 |
* |
|
657 |
* <p> |
|
35414 | 658 |
* The interpretation of properties is up to implementations. Implementations must |
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
659 |
* throw {@code JAXBException} if it finds properties that it doesn't understand. |
12009 | 660 |
* |
661 |
* @param classesToBeBound |
|
45678
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
662 |
* List of java classes to be recognized by the new {@link JAXBContext}. |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
663 |
* Classes in {@code classesToBeBound} that are in named modules must be in a package |
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
664 |
* that is {@linkplain java.lang.Module#isOpen open} to at least the {@code java.xml.bind} module. |
12009 | 665 |
* Can be empty, in which case a {@link JAXBContext} that only knows about |
666 |
* spec-defined classes will be returned. |
|
667 |
* @param properties |
|
668 |
* provider-specific properties. Can be null, which means the same thing as passing |
|
669 |
* in an empty map. |
|
670 |
* |
|
671 |
* @return |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
672 |
* A new instance of a {@code JAXBContext}. |
12009 | 673 |
* |
674 |
* @throws JAXBException |
|
675 |
* if an error was encountered while creating the |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
676 |
* {@code JAXBContext}, such as (but not limited to): |
12009 | 677 |
* <ol> |
678 |
* <li>No JAXB implementation was discovered |
|
679 |
* <li>Classes use JAXB annotations incorrectly |
|
680 |
* <li>Classes have colliding annotations (i.e., two classes with the same type name) |
|
681 |
* <li>The JAXB implementation was unable to locate |
|
682 |
* provider-specific out-of-band information (such as additional |
|
683 |
* files generated at the development time.) |
|
45678
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
684 |
* <li>{@code classesToBeBound} are not open to {@code java.xml.bind} module |
12009 | 685 |
* </ol> |
686 |
* |
|
687 |
* @throws IllegalArgumentException |
|
688 |
* if the parameter contains {@code null} (i.e., {@code newInstance(null,someMap);}) |
|
689 |
* |
|
25840 | 690 |
* @since 1.6, JAXB 2.0 |
12009 | 691 |
*/ |
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
692 |
public static JAXBContext newInstance( Class<?>[] classesToBeBound, Map<String,?> properties ) |
35414 | 693 |
throws JAXBException { |
12009 | 694 |
|
16791 | 695 |
if (classesToBeBound == null) { |
35414 | 696 |
throw new IllegalArgumentException(); |
16791 | 697 |
} |
12009 | 698 |
|
699 |
// but it is an error to have nulls in it. |
|
16791 | 700 |
for (int i = classesToBeBound.length - 1; i >= 0; i--) { |
701 |
if (classesToBeBound[i] == null) { |
|
12009 | 702 |
throw new IllegalArgumentException(); |
16791 | 703 |
} |
704 |
} |
|
12009 | 705 |
|
706 |
return ContextFinder.find(classesToBeBound,properties); |
|
707 |
} |
|
708 |
||
709 |
/** |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
710 |
* Create an {@code Unmarshaller} object that can be used to convert XML |
12009 | 711 |
* data into a java content tree. |
712 |
* |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
713 |
* @return an {@code Unmarshaller} object |
12009 | 714 |
* |
715 |
* @throws JAXBException if an error was encountered while creating the |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
716 |
* {@code Unmarshaller} object |
12009 | 717 |
*/ |
718 |
public abstract Unmarshaller createUnmarshaller() throws JAXBException; |
|
719 |
||
720 |
||
721 |
/** |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
722 |
* Create a {@code Marshaller} object that can be used to convert a |
12009 | 723 |
* java content tree into XML data. |
724 |
* |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
725 |
* @return a {@code Marshaller} object |
12009 | 726 |
* |
727 |
* @throws JAXBException if an error was encountered while creating the |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
728 |
* {@code Marshaller} object |
12009 | 729 |
*/ |
730 |
public abstract Marshaller createMarshaller() throws JAXBException; |
|
731 |
||
732 |
||
733 |
/** |
|
734 |
* {@link Validator} has been made optional and deprecated in JAXB 2.0. Please |
|
735 |
* refer to the javadoc for {@link Validator} for more detail. |
|
736 |
* <p> |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
737 |
* Create a {@code Validator} object that can be used to validate a |
12009 | 738 |
* java content tree against its source schema. |
739 |
* |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
740 |
* @return a {@code Validator} object |
12009 | 741 |
* |
742 |
* @throws JAXBException if an error was encountered while creating the |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
743 |
* {@code Validator} object |
12009 | 744 |
* @deprecated since JAXB2.0 |
745 |
*/ |
|
45678
65fdff10664d
8176508: Update JAX-WS RI integration to latest version
aefimov
parents:
42124
diff
changeset
|
746 |
@Deprecated |
12009 | 747 |
public abstract Validator createValidator() throws JAXBException; |
748 |
||
749 |
/** |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
750 |
* Creates a {@code Binder} object that can be used for |
12009 | 751 |
* associative/in-place unmarshalling/marshalling. |
752 |
* |
|
753 |
* @param domType select the DOM API to use by passing in its DOM Node class. |
|
754 |
* |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
755 |
* @return always a new valid {@code Binder} object. |
12009 | 756 |
* |
757 |
* @throws UnsupportedOperationException |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
758 |
* if DOM API corresponding to {@code domType} is not supported by |
12009 | 759 |
* the implementation. |
760 |
* |
|
25840 | 761 |
* @since 1.6, JAXB 2.0 |
12009 | 762 |
*/ |
763 |
public <T> Binder<T> createBinder(Class<T> domType) { |
|
764 |
// to make JAXB 1.0 implementations work, this method must not be |
|
765 |
// abstract |
|
766 |
throw new UnsupportedOperationException(); |
|
767 |
} |
|
768 |
||
769 |
/** |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
770 |
* Creates a {@code Binder} for W3C DOM. |
12009 | 771 |
* |
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
772 |
* @return always a new valid {@code Binder} object. |
12009 | 773 |
* |
25840 | 774 |
* @since 1.6, JAXB 2.0 |
12009 | 775 |
*/ |
776 |
public Binder<Node> createBinder() { |
|
777 |
return createBinder(Node.class); |
|
778 |
} |
|
779 |
||
780 |
/** |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
781 |
* Creates a {@code JAXBIntrospector} object that can be used to |
12009 | 782 |
* introspect JAXB objects. |
783 |
* |
|
784 |
* @return |
|
31501
1b48499c9e1c
8130247: fix some new tidy warnings from jaxws and CORBA
avstepan
parents:
31109
diff
changeset
|
785 |
* always return a non-null valid {@code JAXBIntrospector} object. |
12009 | 786 |
* |
787 |
* @throws UnsupportedOperationException |
|
788 |
* Calling this method on JAXB 1.0 implementations will throw |
|
789 |
* an UnsupportedOperationException. |
|
790 |
* |
|
25840 | 791 |
* @since 1.6, JAXB 2.0 |
12009 | 792 |
*/ |
793 |
public JAXBIntrospector createJAXBIntrospector() { |
|
794 |
// to make JAXB 1.0 implementations work, this method must not be |
|
795 |
// abstract |
|
796 |
throw new UnsupportedOperationException(); |
|
797 |
} |
|
798 |
||
799 |
/** |
|
800 |
* Generates the schema documents for this context. |
|
801 |
* |
|
802 |
* @param outputResolver |
|
803 |
* this object controls the output to which schemas |
|
804 |
* will be sent. |
|
805 |
* |
|
806 |
* @throws IOException |
|
807 |
* if {@link SchemaOutputResolver} throws an {@link IOException}. |
|
808 |
* |
|
809 |
* @throws UnsupportedOperationException |
|
810 |
* Calling this method on JAXB 1.0 implementations will throw |
|
811 |
* an UnsupportedOperationException. |
|
812 |
* |
|
25840 | 813 |
* @since 1.6, JAXB 2.0 |
12009 | 814 |
*/ |
815 |
public void generateSchema(SchemaOutputResolver outputResolver) throws IOException { |
|
816 |
// to make JAXB 1.0 implementations work, this method must not be |
|
817 |
// abstract |
|
818 |
throw new UnsupportedOperationException(); |
|
819 |
} |
|
820 |
||
821 |
private static ClassLoader getContextClassLoader() { |
|
822 |
if (System.getSecurityManager() == null) { |
|
823 |
return Thread.currentThread().getContextClassLoader(); |
|
824 |
} else { |
|
31109
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
825 |
return java.security.AccessController.doPrivileged( |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
826 |
new java.security.PrivilegedAction<ClassLoader>() { |
a542f8dcbbf8
8072839: JAX-B Plugability Layer: using java.util.ServiceLoader
mkos
parents:
29839
diff
changeset
|
827 |
public ClassLoader run() { |
12009 | 828 |
return Thread.currentThread().getContextClassLoader(); |
829 |
} |
|
830 |
}); |
|
831 |
} |
|
832 |
} |
|
833 |
||
834 |
} |