Spring Web Services Framework

Uses of Interface
org.springframework.oxm.Unmarshaller

Packages that use Unmarshaller
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. 
org.springframework.ws.client.core Core package of the Spring-WS client-side support. 
org.springframework.ws.client.core.support Convenient super class for application classes that need Web service access. 
org.springframework.ws.server.endpoint Provides standard endpoint, and EndpointAdapter implementations. 
org.springframework.ws.server.endpoint.adapter Provides miscellaneous EndpointAdapter implementations. 
org.springframework.ws.support Provides general helper classes for Spring Web Services. 
 

Uses of Unmarshaller in org.springframework.oxm
 

Subinterfaces of Unmarshaller in org.springframework.oxm
 interface GenericUnmarshaller
          Extension of the Unmarshaller interface that supports Java 5 generics.
 

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

Uses of Unmarshaller in org.springframework.oxm.castor
 

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

Uses of Unmarshaller in org.springframework.oxm.jaxb
 

Classes in org.springframework.oxm.jaxb that implement Unmarshaller
 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.
 class Jaxb2Marshaller
          Implementation of the Marshaller interface for JAXB 2.0.
 

Uses of Unmarshaller in org.springframework.oxm.jibx
 

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

Uses of Unmarshaller in org.springframework.oxm.mime
 

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

Uses of Unmarshaller in org.springframework.oxm.support
 

Methods in org.springframework.oxm.support with parameters of type Unmarshaller
 void MarshallingMessageConverter.setUnmarshaller(Unmarshaller unmarshaller)
          Sets the Unmarshaller to be used by this message converter.
protected  Object MarshallingMessageConverter.unmarshalFromBytesMessage(BytesMessage message, Unmarshaller unmarshaller)
          Unmarshals the given BytesMessage 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)
          Unmarshals the given TextMessage into an object.
 

Constructors in org.springframework.oxm.support with parameters of type Unmarshaller
MarshallingMessageConverter(Marshaller marshaller, Unmarshaller unmarshaller)
          Creates a new MarshallingMessageConverter with the given marshaller and unmarshaller.
 

Uses of Unmarshaller in org.springframework.oxm.xmlbeans
 

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

Uses of Unmarshaller in org.springframework.oxm.xstream
 

Classes in org.springframework.oxm.xstream that implement Unmarshaller
 class AnnotationXStreamMarshaller
          Subclass of the XStreamMarshaller that supports JDK 1.5+ annotation metadata for aliases.
 class XStreamMarshaller
          Implementation of the Marshaller interface for XStream.
 

Uses of Unmarshaller in org.springframework.ws.client.core
 

Methods in org.springframework.ws.client.core that return Unmarshaller
 Unmarshaller WebServiceTemplate.getUnmarshaller()
          Returns the unmarshaller for this template.
 

Methods in org.springframework.ws.client.core with parameters of type Unmarshaller
 void WebServiceTemplate.setUnmarshaller(Unmarshaller unmarshaller)
          Sets the unmarshaller for this template.
 

Uses of Unmarshaller in org.springframework.ws.client.core.support
 

Methods in org.springframework.ws.client.core.support that return Unmarshaller
 Unmarshaller WebServiceGatewaySupport.getUnmarshaller()
          Returns the Unmarshaller used by the gateway.
 

Methods in org.springframework.ws.client.core.support with parameters of type Unmarshaller
 void WebServiceGatewaySupport.setUnmarshaller(Unmarshaller unmarshaller)
          Sets the Unmarshaller used by the gateway.
 

Uses of Unmarshaller in org.springframework.ws.server.endpoint
 

Methods in org.springframework.ws.server.endpoint that return Unmarshaller
 Unmarshaller AbstractMarshallingPayloadEndpoint.getUnmarshaller()
          Returns the unmarshaller used for transforming XML into objects.
 

Methods in org.springframework.ws.server.endpoint with parameters of type Unmarshaller
 void AbstractMarshallingPayloadEndpoint.setUnmarshaller(Unmarshaller unmarshaller)
          Sets the unmarshaller used for transforming XML into objects.
 

Constructors in org.springframework.ws.server.endpoint with parameters of type Unmarshaller
AbstractMarshallingPayloadEndpoint(Marshaller marshaller, Unmarshaller unmarshaller)
          Creates a new AbstractMarshallingPayloadEndpoint with the given marshaller and unmarshaller.
 

Uses of Unmarshaller in org.springframework.ws.server.endpoint.adapter
 

Methods in org.springframework.ws.server.endpoint.adapter that return Unmarshaller
 Unmarshaller MarshallingMethodEndpointAdapter.getUnmarshaller()
          Returns the unmarshaller used for transforming XML into objects.
 

Methods in org.springframework.ws.server.endpoint.adapter with parameters of type Unmarshaller
 void MarshallingMethodEndpointAdapter.setUnmarshaller(Unmarshaller unmarshaller)
          Sets the unmarshaller used for transforming XML into objects.
 

Constructors in org.springframework.ws.server.endpoint.adapter with parameters of type Unmarshaller
GenericMarshallingMethodEndpointAdapter(Marshaller marshaller, Unmarshaller unmarshaller)
          Creates a new GenericMarshallingMethodEndpointAdapter with the given marshaller and unmarshaller.
MarshallingMethodEndpointAdapter(Marshaller marshaller, Unmarshaller unmarshaller)
          Creates a new MarshallingMethodEndpointAdapter with the given marshaller and unmarshaller.
 

Uses of Unmarshaller in org.springframework.ws.support
 

Methods in org.springframework.ws.support with parameters of type Unmarshaller
static Object MarshallingUtils.unmarshal(Unmarshaller unmarshaller, WebServiceMessage message)
          Unmarshals the payload of the given message using the provided Unmarshaller.
 


Spring Web Services Framework

Copyright © 2005-2010 The Spring Web Services Framework. All Rights Reserved.