Uses of Interface
org.springframework.oxm.Marshaller
Packages that use 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
Methods in org.springframework.http.converter.xml with parameters of type MarshallerModifier and TypeMethodDescriptionvoid
MarshallingHttpMessageConverter.setMarshaller
(Marshaller marshaller) Set theMarshaller
to be used by this message converter.Constructors in org.springframework.http.converter.xml with parameters of type MarshallerModifierConstructorDescriptionMarshallingHttpMessageConverter
(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
Methods in org.springframework.jms.support.converter with parameters of type MarshallerModifier 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.Constructors in org.springframework.jms.support.converter with parameters of type MarshallerModifierConstructorDescriptionMarshallingMessageConverter
(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
Methods in org.springframework.messaging.converter that return MarshallerModifier and TypeMethodDescriptionMarshallingMessageConverter.getMarshaller()
Return the configured Marshaller.Methods in org.springframework.messaging.converter with parameters of type MarshallerModifier and TypeMethodDescriptionvoid
MarshallingMessageConverter.setMarshaller
(@Nullable Marshaller marshaller) Set theMarshaller
to be used by this message converter.Constructors in org.springframework.messaging.converter with parameters of type MarshallerModifierConstructorDescriptionMarshallingMessageConverter
(Marshaller marshaller) Constructor withMarshaller
. -
Uses of Marshaller in org.springframework.oxm
Subinterfaces of Marshaller in org.springframework.oxmModifier and TypeInterfaceDescriptioninterface
Subinterface ofMarshaller
that has support for generics. -
Uses of Marshaller in org.springframework.oxm.jaxb
Classes in org.springframework.oxm.jaxb that implement MarshallerModifier and TypeClassDescriptionclass
Implementation of theGenericMarshaller
interface for JAXB 2.2. -
Uses of Marshaller in org.springframework.oxm.mime
Subinterfaces of Marshaller in org.springframework.oxm.mimeModifier and TypeInterfaceDescriptioninterface
Subinterface ofMarshaller
that can use MIME attachments to optimize storage of binary data. -
Uses of Marshaller in org.springframework.oxm.support
Classes in org.springframework.oxm.support that implement MarshallerModifier and TypeClassDescriptionclass
Abstract implementation of theMarshaller
andUnmarshaller
interface.Methods in org.springframework.oxm.support that return MarshallerModifier and TypeMethodDescriptionMarshallingSource.getMarshaller()
Return theMarshaller
used by thisMarshallingSource
.Constructors in org.springframework.oxm.support with parameters of type MarshallerModifierConstructorDescriptionMarshallingSource
(Marshaller marshaller, Object content) Create a newMarshallingSource
with the given marshaller and content. -
Uses of Marshaller in org.springframework.oxm.xstream
Classes in org.springframework.oxm.xstream that implement MarshallerModifier and TypeClassDescriptionclass
Implementation of theMarshaller
interface for XStream. -
Uses of Marshaller in org.springframework.web.servlet.view.xml
Methods in org.springframework.web.servlet.view.xml with parameters of type MarshallerModifier and TypeMethodDescriptionvoid
MarshallingView.setMarshaller
(Marshaller marshaller) Set theMarshaller
to be used by this view.Constructors in org.springframework.web.servlet.view.xml with parameters of type MarshallerModifierConstructorDescriptionMarshallingView
(Marshaller marshaller) Constructs a newMarshallingView
with the givenMarshaller
set.