Package | Description |
---|---|
org.springframework.http.converter.xml |
Provides an HttpMessageConverter implementations for handling XML.
|
org.springframework.jms.support.converter |
Provides a MessageConverter abstraction to convert
between Java objects and JMS messages.
|
org.springframework.oxm |
Root package for Spring's O/X Mapping integration classes.
|
org.springframework.oxm.castor |
Package providing integration of Castor within Springs O/X Mapping
support
|
org.springframework.oxm.jaxb |
Package providing integration of JAXB with Springs O/X Mapping
support
|
org.springframework.oxm.jibx |
Package providing integration of JiBX with Springs O/X Mapping
support
|
org.springframework.oxm.mime |
Contains (un)marshallers optimized to store binary data in MIME attachments.
|
org.springframework.oxm.support |
Provides generic support classes for using Spring's O/X Mapping integration within various scenario's.
|
org.springframework.oxm.xmlbeans |
Package providing integration of XMLBeans with Springs O/X Mapping support
|
org.springframework.oxm.xstream |
Package providing integration of XStream with Springs O/X Mapping support
|
Modifier and Type | Method and Description |
---|---|
void |
MarshallingHttpMessageConverter.setUnmarshaller(Unmarshaller unmarshaller)
Set the
Unmarshaller to be used by this message converter. |
Constructor and Description |
---|
MarshallingHttpMessageConverter(Marshaller marshaller,
Unmarshaller unmarshaller)
Construct a new
MarshallingMessageConverter with the given
Marshaller and Unmarshaller . |
Modifier and Type | Method and Description |
---|---|
void |
MarshallingMessageConverter.setUnmarshaller(Unmarshaller unmarshaller)
Set the
Unmarshaller to be used by this message converter. |
protected Object |
MarshallingMessageConverter.unmarshalFromBytesMessage(javax.jms.BytesMessage message,
Unmarshaller unmarshaller)
Unmarshal the given
BytesMessage into an object. |
protected Object |
MarshallingMessageConverter.unmarshalFromMessage(javax.jms.Message message,
Unmarshaller unmarshaller)
Template method that allows for custom message unmarshalling.
|
protected Object |
MarshallingMessageConverter.unmarshalFromTextMessage(javax.jms.TextMessage message,
Unmarshaller unmarshaller)
Unmarshal the given
TextMessage into an object. |
Constructor and Description |
---|
MarshallingMessageConverter(Marshaller marshaller,
Unmarshaller unmarshaller)
Construct a new
MarshallingMessageConverter with the
given Marshaller and Unmarshaller. |
Modifier and Type | Interface and Description |
---|---|
interface |
GenericUnmarshaller
Subinterface of
Unmarshaller that has support for Java 5 generics. |
Modifier and Type | Class and Description |
---|---|
class |
CastorMarshaller
Implementation of the
Marshaller interface for Castor. |
Modifier and Type | Class and Description |
---|---|
class |
Jaxb2Marshaller
Implementation of the
GenericMarshaller interface for JAXB 2.0+. |
Modifier and Type | Class and Description |
---|---|
class |
JibxMarshaller
Implementation of the
Marshaller and Unmarshaller interfaces for JiBX. |
Modifier and Type | Interface and Description |
---|---|
interface |
MimeUnmarshaller
Subinterface of
Unmarshaller that can use MIME attachments
to optimize storage of binary data. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMarshaller
Abstract implementation of the
Marshaller and Unmarshaller interface. |
Modifier and Type | Class and Description |
---|---|
class |
XmlBeansMarshaller
Implementation of the
Marshaller interface for Apache XMLBeans. |
Modifier and Type | Class and Description |
---|---|
class |
XStreamMarshaller
Implementation of the
Marshaller interface for XStream. |
Copyright © 2015. All rights reserved.