Uses of Interface
org.springframework.oxm.Marshaller
Package
Description
Provides HttpMessageConverter implementations for handling XML.
Provides a MessageConverter abstraction to convert
between Java objects and JMS messages.
Provides support for message conversion.
Root package for Spring's O/X Mapping integration classes.
Package providing integration of JAXB
with Spring's O/X Mapping support.
Contains (un)marshallers optimized to store binary data in MIME attachments.
Provides generic support classes for using Spring's O/X Mapping integration
within various scenario's.
Package providing integration of XStream
with Spring's O/X Mapping support.
Support classes for providing a View implementation based on XML Marshalling.
-
Uses of Marshaller in org.springframework.http.converter.xml
Modifier and TypeMethodDescriptionvoid
MarshallingHttpMessageConverter.setMarshaller
(Marshaller marshaller) Set theMarshaller
to be used by this message converter.ModifierConstructorDescriptionMarshallingHttpMessageConverter
(Marshaller marshaller) Construct a newMarshallingMessageConverter
with the givenMarshaller
set.MarshallingHttpMessageConverter
(Marshaller marshaller, Unmarshaller unmarshaller) Construct a newMarshallingMessageConverter
with the givenMarshaller
andUnmarshaller
. -
Uses of Marshaller in org.springframework.jms.support.converter
Modifier and TypeMethodDescriptionprotected BytesMessage
MarshallingMessageConverter.marshalToBytesMessage
(Object object, Session session, Marshaller marshaller) Marshal the given object to aBytesMessage
.protected Message
MarshallingMessageConverter.marshalToMessage
(Object object, Session session, Marshaller marshaller, MessageType targetType) Template method that allows for custom message marshalling.protected TextMessage
MarshallingMessageConverter.marshalToTextMessage
(Object object, Session session, Marshaller marshaller) Marshal the given object to aTextMessage
.void
MarshallingMessageConverter.setMarshaller
(Marshaller marshaller) Set theMarshaller
to be used by this message converter.ModifierConstructorDescriptionMarshallingMessageConverter
(Marshaller marshaller) Construct a newMarshallingMessageConverter
with the givenMarshaller
set.MarshallingMessageConverter
(Marshaller marshaller, Unmarshaller unmarshaller) Construct a newMarshallingMessageConverter
with the given Marshaller and Unmarshaller. -
Uses of Marshaller in org.springframework.messaging.converter
Modifier and TypeMethodDescriptionMarshallingMessageConverter.getMarshaller()
Return the configured Marshaller.Modifier and TypeMethodDescriptionvoid
MarshallingMessageConverter.setMarshaller
(Marshaller marshaller) Set theMarshaller
to be used by this message converter.ModifierConstructorDescriptionMarshallingMessageConverter
(Marshaller marshaller) Constructor withMarshaller
. -
Uses of Marshaller in org.springframework.oxm
Modifier and TypeInterfaceDescriptioninterface
Subinterface ofMarshaller
that has support for generics. -
Uses of Marshaller in org.springframework.oxm.jaxb
Modifier and TypeClassDescriptionclass
Implementation of theGenericMarshaller
interface for JAXB 2.2. -
Uses of Marshaller in org.springframework.oxm.mime
Modifier and TypeInterfaceDescriptioninterface
Subinterface ofMarshaller
that can use MIME attachments to optimize storage of binary data. -
Uses of Marshaller in org.springframework.oxm.support
Modifier and TypeClassDescriptionclass
Abstract implementation of theMarshaller
andUnmarshaller
interface.Modifier and TypeMethodDescriptionMarshallingSource.getMarshaller()
Return theMarshaller
used by thisMarshallingSource
.ModifierConstructorDescriptionMarshallingSource
(Marshaller marshaller, Object content) Create a newMarshallingSource
with the given marshaller and content. -
Uses of Marshaller in org.springframework.oxm.xstream
Modifier and TypeClassDescriptionclass
Implementation of theMarshaller
interface for XStream. -
Uses of Marshaller in org.springframework.web.servlet.view.xml
Modifier and TypeMethodDescriptionvoid
MarshallingView.setMarshaller
(Marshaller marshaller) Set theMarshaller
to be used by this view.ModifierConstructorDescriptionMarshallingView
(Marshaller marshaller) Constructs a newMarshallingView
with the givenMarshaller
set.