Uses of Interface
org.springframework.oxm.Unmarshaller
Packages that use Unmarshaller
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.
-
Uses of Unmarshaller in org.springframework.http.converter.xml
Methods in org.springframework.http.converter.xml with parameters of type UnmarshallerModifier and TypeMethodDescriptionvoid
MarshallingHttpMessageConverter.setUnmarshaller
(Unmarshaller unmarshaller) Set theUnmarshaller
to be used by this message converter.Constructors in org.springframework.http.converter.xml with parameters of type UnmarshallerModifierConstructorDescriptionMarshallingHttpMessageConverter
(Marshaller marshaller, Unmarshaller unmarshaller) Construct a newMarshallingMessageConverter
with the givenMarshaller
andUnmarshaller
. -
Uses of Unmarshaller in org.springframework.jms.support.converter
Methods in org.springframework.jms.support.converter with parameters of type UnmarshallerModifier and TypeMethodDescriptionvoid
MarshallingMessageConverter.setUnmarshaller
(Unmarshaller unmarshaller) Set theUnmarshaller
to be used by this message converter.protected Object
MarshallingMessageConverter.unmarshalFromBytesMessage
(BytesMessage message, Unmarshaller unmarshaller) Unmarshal the givenBytesMessage
into an object.protected Object
MarshallingMessageConverter.unmarshalFromMessage
(Message message, Unmarshaller unmarshaller) Template method that allows for custom message unmarshalling.protected Object
MarshallingMessageConverter.unmarshalFromTextMessage
(TextMessage message, Unmarshaller unmarshaller) Unmarshal the givenTextMessage
into an object.Constructors in org.springframework.jms.support.converter with parameters of type UnmarshallerModifierConstructorDescriptionMarshallingMessageConverter
(Marshaller marshaller, Unmarshaller unmarshaller) Construct a newMarshallingMessageConverter
with the given Marshaller and Unmarshaller. -
Uses of Unmarshaller in org.springframework.messaging.converter
Methods in org.springframework.messaging.converter that return UnmarshallerModifier and TypeMethodDescriptionMarshallingMessageConverter.getUnmarshaller()
Return the configured unmarshaller.Methods in org.springframework.messaging.converter with parameters of type UnmarshallerModifier and TypeMethodDescriptionvoid
MarshallingMessageConverter.setUnmarshaller
(Unmarshaller unmarshaller) Set theUnmarshaller
to be used by this message converter. -
Uses of Unmarshaller in org.springframework.oxm
Subinterfaces of Unmarshaller in org.springframework.oxmModifier and TypeInterfaceDescriptioninterface
Subinterface ofUnmarshaller
that has support for generics. -
Uses of Unmarshaller in org.springframework.oxm.jaxb
Classes in org.springframework.oxm.jaxb that implement UnmarshallerModifier and TypeClassDescriptionclass
Implementation of theGenericMarshaller
interface for JAXB 2.2. -
Uses of Unmarshaller in org.springframework.oxm.mime
Subinterfaces of Unmarshaller in org.springframework.oxm.mimeModifier and TypeInterfaceDescriptioninterface
Subinterface ofUnmarshaller
that can use MIME attachments to optimize storage of binary data. -
Uses of Unmarshaller in org.springframework.oxm.support
Classes in org.springframework.oxm.support that implement UnmarshallerModifier and TypeClassDescriptionclass
Abstract implementation of theMarshaller
andUnmarshaller
interface. -
Uses of Unmarshaller in org.springframework.oxm.xstream
Classes in org.springframework.oxm.xstream that implement UnmarshallerModifier and TypeClassDescriptionclass
Implementation of theMarshaller
interface for XStream.