net.sf.itcb.common.client.marshaller.ItcbJaxb2Marshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of itcb-common-client Show documentation
Show all versions of itcb-common-client Show documentation
This module is the common client module for calling webservices (server module). It defines all generic treatements that allows calling webservices
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