public interface JaxBContextProvider
DomXmlDataFormat uses to
map Java objects to XML and vice versa. Implementations typically manage a JAXBContext.
The JAXBContext caches information about the types it is capable of processing.
Since the context is expensive to create, it is useful to cache
it. Different applications may require different caching strategies.| Modifier and Type | Method and Description |
|---|---|
javax.xml.bind.Marshaller |
createMarshaller(java.lang.Class<?>... types)
Obtain a Marshaller that can map the provided types.
|
javax.xml.bind.Unmarshaller |
createUnmarshaller(java.lang.Class<?>... types)
Obtain an Unmarshaller that can map the provided types.
|
javax.xml.bind.Marshaller createMarshaller(java.lang.Class<?>... types)
types - the Java Types that are going to be marshalledjavax.xml.bind.Unmarshaller createUnmarshaller(java.lang.Class<?>... types)
types - the Java Types that are going to be unmarshalledCopyright © 2014–2023 Camunda Services GmbH. All rights reserved.