All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.itcb.common.client.marshaller.ItcbJaxb2Marshaller Maven / Gradle / Ivy

Go to download

This module is the common client module for calling webservices (server module). It defines all generic treatements that allows calling webservices

There is a newer version: 0.7.3
Show newest version
package net.sf.itcb.common.client.marshaller;

import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;

/**
 * This class simply extends the Spring class in order to share original marshaller and unmarshaller.
* It is usefull for unmarshall using a specified type * @author Pierre Le Roux */ public class ItcbJaxb2Marshaller extends org.springframework.oxm.jaxb.Jaxb2Marshaller { public Marshaller getMarshaller() { return createMarshaller(); } public Unmarshaller getUnmarshaller() { return createUnmarshaller(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy