Uses of Interface
org.springframework.oxm.Marshaller
Packages that use Marshaller 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.org.springframework.web.servlet.view.xml 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 Marshaller Modifier and Type Method Description voidMarshallingHttpMessageConverter. setMarshaller(Marshaller marshaller)Set theMarshallerto be used by this message converter.Constructors in org.springframework.http.converter.xml with parameters of type Marshaller Constructor Description MarshallingHttpMessageConverter(Marshaller marshaller)Construct a newMarshallingMessageConverterwith the givenMarshallerset.MarshallingHttpMessageConverter(Marshaller marshaller, Unmarshaller unmarshaller)Construct a newMarshallingMessageConverterwith the givenMarshallerandUnmarshaller.Uses of Marshaller in org.springframework.jms.support.converter
Methods in org.springframework.jms.support.converter with parameters of type Marshaller Modifier and Type Method Description protected BytesMessageMarshallingMessageConverter. marshalToBytesMessage(Object object, Session session, Marshaller marshaller)Marshal the given object to aBytesMessage.protected MessageMarshallingMessageConverter. marshalToMessage(Object object, Session session, Marshaller marshaller, MessageType targetType)Template method that allows for custom message marshalling.protected TextMessageMarshallingMessageConverter. marshalToTextMessage(Object object, Session session, Marshaller marshaller)Marshal the given object to aTextMessage.voidMarshallingMessageConverter. setMarshaller(Marshaller marshaller)Set theMarshallerto be used by this message converter.Constructors in org.springframework.jms.support.converter with parameters of type Marshaller Constructor Description MarshallingMessageConverter(Marshaller marshaller)Construct a newMarshallingMessageConverterwith the givenMarshallerset.MarshallingMessageConverter(Marshaller marshaller, Unmarshaller unmarshaller)Construct a newMarshallingMessageConverterwith the given Marshaller and Unmarshaller.Uses of Marshaller in org.springframework.messaging.converter
Methods in org.springframework.messaging.converter that return Marshaller Modifier and Type Method Description MarshallerMarshallingMessageConverter. getMarshaller()Return the configured Marshaller.Methods in org.springframework.messaging.converter with parameters of type Marshaller Modifier and Type Method Description voidMarshallingMessageConverter. setMarshaller(Marshaller marshaller)Set theMarshallerto be used by this message converter.Constructors in org.springframework.messaging.converter with parameters of type Marshaller Constructor Description MarshallingMessageConverter(Marshaller marshaller)Constructor withMarshaller.Uses of Marshaller in org.springframework.oxm
Subinterfaces of Marshaller in org.springframework.oxm Modifier and Type Interface Description interfaceGenericMarshallerSubinterface ofMarshallerthat has support for Java 5 generics.Uses of Marshaller in org.springframework.oxm.jaxb
Classes in org.springframework.oxm.jaxb that implement Marshaller Modifier and Type Class Description classJaxb2MarshallerImplementation of theGenericMarshallerinterface for JAXB 2.2.Uses of Marshaller in org.springframework.oxm.jibx
Classes in org.springframework.oxm.jibx that implement Marshaller Modifier and Type Class Description classJibxMarshallerDeprecated.as of Spring Framework 5.1.5, due to the lack of activity on the JiBX projectUses of Marshaller in org.springframework.oxm.mime
Subinterfaces of Marshaller in org.springframework.oxm.mime Modifier and Type Interface Description interfaceMimeMarshallerSubinterface ofMarshallerthat 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 Marshaller Modifier and Type Class Description classAbstractMarshallerAbstract implementation of theMarshallerandUnmarshallerinterface.Methods in org.springframework.oxm.support that return Marshaller Modifier and Type Method Description MarshallerMarshallingSource. getMarshaller()Return theMarshallerused by thisMarshallingSource.Constructors in org.springframework.oxm.support with parameters of type Marshaller Constructor Description MarshallingSource(Marshaller marshaller, Object content)Create a newMarshallingSourcewith the given marshaller and content.Uses of Marshaller in org.springframework.oxm.xstream
Classes in org.springframework.oxm.xstream that implement Marshaller Modifier and Type Class Description classXStreamMarshallerImplementation of theMarshallerinterface for XStream.Uses of Marshaller in org.springframework.web.servlet.view.xml
Methods in org.springframework.web.servlet.view.xml with parameters of type Marshaller Modifier and Type Method Description voidMarshallingView. setMarshaller(Marshaller marshaller)Set theMarshallerto be used by this view.Constructors in org.springframework.web.servlet.view.xml with parameters of type Marshaller Constructor Description MarshallingView(Marshaller marshaller)Constructs a newMarshallingViewwith the givenMarshallerset.