Uses of Interface
org.springframework.oxm.Marshaller

Packages that use Marshaller
org.springframework.oxm Root package for Spring's O/X Mapping integration classes. 
org.springframework.oxm.castor Package providing integration of Castor within Springs O/X Mapping support. 
org.springframework.oxm.jaxb Package providing integration of JAXB with Springs O/X Mapping support. 
org.springframework.oxm.jibx Package providing integration of JiBX with Springs 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.xmlbeans Package providing integration of XMLBeans with Springs O/X Mapping support. 
org.springframework.oxm.xstream Package providing integration of XStream with Springs O/X Mapping support. 
 

Uses of Marshaller in org.springframework.oxm
 

Classes in org.springframework.oxm that implement Marshaller
 class AbstractMarshaller
          Abstract implementation of the Marshaller and Unmarshaller interface.
 

Uses of Marshaller in org.springframework.oxm.castor
 

Classes in org.springframework.oxm.castor that implement Marshaller
 class CastorMarshaller
          Implementation of the Marshaller interface for Castor.
 

Uses of Marshaller in org.springframework.oxm.jaxb
 

Classes in org.springframework.oxm.jaxb that implement Marshaller
 class AbstractJaxbMarshaller
          Abstract base class for implementations of the Marshaller and Unmarshaller interfaces that use JAXB.
 class Jaxb1Marshaller
          Implementation of the Marshaller interface for JAXB 1.0.
 

Uses of Marshaller in org.springframework.oxm.jibx
 

Classes in org.springframework.oxm.jibx that implement Marshaller
 class JibxMarshaller
          Implementation of the Marshaller and Unmarshaller interfaces for JiBX.
 

Uses of Marshaller in org.springframework.oxm.mime
 

Subinterfaces of Marshaller in org.springframework.oxm.mime
 interface MimeMarshaller
          Subinterface of Marshaller that can use MIME attachments to optimize storage of binary data.
 

Uses of Marshaller in org.springframework.oxm.support
 

Methods in org.springframework.oxm.support that return Marshaller
 Marshaller MarshallingSource.getMarshaller()
          Returns the Marshaller used by this MarshallingSource.
 

Methods in org.springframework.oxm.support with parameters of type Marshaller
protected  javax.jms.BytesMessage MarshallingMessageConverter.marshalToBytesMessage(java.lang.Object object, javax.jms.Session session, Marshaller marshaller)
          Marshals the given object to a BytesMessage.
protected  javax.jms.Message MarshallingMessageConverter.marshalToMessage(java.lang.Object object, javax.jms.Session session, Marshaller marshaller)
          Template method that allows for custom message marshalling.
protected  javax.jms.TextMessage MarshallingMessageConverter.marshalToTextMessage(java.lang.Object object, javax.jms.Session session, Marshaller marshaller)
          Marshals the given object to a TextMessage.
 void MarshallingView.setMarshaller(Marshaller marshaller)
          Sets the Marshaller to be used by this view.
 void MarshallingMessageConverter.setMarshaller(Marshaller marshaller)
          Sets the Marshaller to be used by this message converter.
 

Constructors in org.springframework.oxm.support with parameters of type Marshaller
MarshallingMessageConverter(Marshaller marshaller)
          Constructs a new MarshallingMessageConverter with the given Marshaller set.
MarshallingMessageConverter(Marshaller marshaller, Unmarshaller unmarshaller)
          Creates a new MarshallingMessageConverter with the given marshaller and unmarshaller.
MarshallingSource(Marshaller marshaller, java.lang.Object content)
          Creates a new MarshallingSource with the given marshaller and content.
MarshallingView(Marshaller marshaller)
          Constructs a new MarshallingView with the given Marshaller set.
 

Uses of Marshaller in org.springframework.oxm.xmlbeans
 

Classes in org.springframework.oxm.xmlbeans that implement Marshaller
 class XmlBeansMarshaller
          Implementation of the Marshaller interface for XMLBeans.
 

Uses of Marshaller in org.springframework.oxm.xstream
 

Classes in org.springframework.oxm.xstream that implement Marshaller
 class XStreamMarshaller
          Implementation of the Marshaller interface for XStream.
 



Copyright © 2009. All Rights Reserved.