Example usage for org.springframework.oxm Unmarshaller interface-usage

List of usage examples for org.springframework.oxm Unmarshaller interface-usage

Introduction

In this page you can find the example usage for org.springframework.oxm Unmarshaller interface-usage.

Usage

From source file org.javelin.sws.ext.bind.SoapEncodingMarshaller.java

/**
 * <p>Spring {@link Marshaller}/{@link Unmarshaller} which handles SOAP 1.1 and SOAP 1.2 specific encodings during XML (de)serialization.</p>
 * <p>Although it may be nice to support JAX-RPC concepts, such as {@code javax.xml.rpc.encoding.SerializationContext} or
 * {@code javax.xml.rpc.encoding.TypeMappingRegistry}, we're not trying to implement JAX-RPC specification (at least for now).</p>
 *
 * @author Grzegorz Grzybek

From source file biz.c24.io.spring.oxm.C24Marshaller.java

/**
 * Spring OXM {@link Marshaller} and {@link Unmarshaller} implementation that are capable of converting C24 objects into
 * XML and vice versa. Currently only {@link StreamSource} and {@link StreamResult} implementations are supported.
 * 
 * @author Oliver Gierke
 */

From source file org.springbyexample.enterprise.solr.CatalogItemMarshaller.java

/**
 * Solr <code>CatalogItem</code> Spring OXM marshaller/unmarshaller.
 * 
 * @author David Winterfeldt
 */
@Component

From source file org.springframework.oxm.support.AbstractMarshaller.java

/**
 * Abstract implementation of the {@code Marshaller} and {@code Unmarshaller} interface.
 * This implementation inspects the given {@code Source} or {@code Result}, and
 * delegates further handling to overridable template methods.
 *
 * @author Arjen Poutsma