Uses of Interface
org.springframework.oxm.Unmarshaller
Packages that use Unmarshaller Package Description org.springframework.http.converter.xml Provides HttpMessageConverter implementations for handling XML.org.springframework.jms.support.converter Provides a MessageConverter abstraction to convert between Java objects and JMS messages.org.springframework.messaging.converter Provides support for message conversion.org.springframework.oxm Root package for Spring's O/X Mapping integration classes.org.springframework.oxm.jaxb Package providing integration of JAXB with Spring's O/X Mapping support.org.springframework.oxm.jibx Package providing integration of JiBX with Spring's 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.xstream 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 Unmarshaller Modifier and Type Method Description voidMarshallingHttpMessageConverter. setUnmarshaller(Unmarshaller unmarshaller)Set theUnmarshallerto be used by this message converter.Constructors in org.springframework.http.converter.xml with parameters of type Unmarshaller Constructor Description MarshallingHttpMessageConverter(Marshaller marshaller, Unmarshaller unmarshaller)Construct a newMarshallingMessageConverterwith the givenMarshallerandUnmarshaller.Uses of Unmarshaller in org.springframework.jms.support.converter
Methods in org.springframework.jms.support.converter with parameters of type Unmarshaller Modifier and Type Method Description voidMarshallingMessageConverter. setUnmarshaller(Unmarshaller unmarshaller)Set theUnmarshallerto be used by this message converter.protected ObjectMarshallingMessageConverter. unmarshalFromBytesMessage(BytesMessage message, Unmarshaller unmarshaller)Unmarshal the givenBytesMessageinto an object.protected ObjectMarshallingMessageConverter. unmarshalFromMessage(Message message, Unmarshaller unmarshaller)Template method that allows for custom message unmarshalling.protected ObjectMarshallingMessageConverter. unmarshalFromTextMessage(TextMessage message, Unmarshaller unmarshaller)Unmarshal the givenTextMessageinto an object.Constructors in org.springframework.jms.support.converter with parameters of type Unmarshaller Constructor Description MarshallingMessageConverter(Marshaller marshaller, Unmarshaller unmarshaller)Construct a newMarshallingMessageConverterwith the given Marshaller and Unmarshaller.Uses of Unmarshaller in org.springframework.messaging.converter
Methods in org.springframework.messaging.converter that return Unmarshaller Modifier and Type Method Description UnmarshallerMarshallingMessageConverter. getUnmarshaller()Return the configured unmarshaller.Methods in org.springframework.messaging.converter with parameters of type Unmarshaller Modifier and Type Method Description voidMarshallingMessageConverter. setUnmarshaller(Unmarshaller unmarshaller)Set theUnmarshallerto be used by this message converter.Uses of Unmarshaller in org.springframework.oxm
Subinterfaces of Unmarshaller in org.springframework.oxm Modifier and Type Interface Description interfaceGenericUnmarshallerSubinterface ofUnmarshallerthat has support for Java 5 generics.Uses of Unmarshaller in org.springframework.oxm.jaxb
Classes in org.springframework.oxm.jaxb that implement Unmarshaller Modifier and Type Class Description classJaxb2MarshallerImplementation of theGenericMarshallerinterface for JAXB 2.2.Uses of Unmarshaller in org.springframework.oxm.jibx
Classes in org.springframework.oxm.jibx that implement Unmarshaller Modifier and Type Class Description classJibxMarshallerDeprecated.as of Spring Framework 5.1.5, due to the lack of activity on the JiBX projectUses of Unmarshaller in org.springframework.oxm.mime
Subinterfaces of Unmarshaller in org.springframework.oxm.mime Modifier and Type Interface Description interfaceMimeUnmarshallerSubinterface ofUnmarshallerthat 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 Unmarshaller Modifier and Type Class Description classAbstractMarshallerAbstract implementation of theMarshallerandUnmarshallerinterface.Uses of Unmarshaller in org.springframework.oxm.xstream
Classes in org.springframework.oxm.xstream that implement Unmarshaller Modifier and Type Class Description classXStreamMarshallerImplementation of theMarshallerinterface for XStream.