Class JaxbExtensions
java.lang.Object
org.apache.groovy.jaxb.extensions.JaxbExtensions
public class JaxbExtensions extends Object
This class defines new groovy methods which appear on Jaxb-related JDK
 classes (
JAXBContext, Marshaller) inside the Groovy environment.
 Static methods are used with the first parameter being the destination class.- 
Constructor Summary
Constructors Constructor Description JaxbExtensions() - 
Method Summary
Modifier and Type Method Description static <T> Stringmarshal(JAXBContext self, T jaxbElement)Marshall an object to a xmlString.static <T> Stringmarshal(Marshaller self, T jaxbElement)Marshall an object to a xmlString.static <T> Tunmarshal(JAXBContext self, String xml, Class<T> declaredType)Unmarshal xml data from the givenStringto object of the given type.static <T> Tunmarshal(Unmarshaller self, String xml, Class<T> declaredType)Unmarshal xml data from the givenStringto object of the given type. 
- 
Constructor Details
- 
JaxbExtensions
public JaxbExtensions() 
 - 
 - 
Method Details
- 
marshal
Marshall an object to a xmlString.- Parameters:
 self- a Marshaller which can marshall the type of the given objectjaxbElement- object to marshall to aString- Returns:
 Stringrepresenting the object as xml- Throws:
 JAXBException
 - 
marshal
Marshall an object to a xmlString.- Parameters:
 self- a JaxbContext, which recognizes the type of the given objectjaxbElement- object to marshall to aString- Returns:
 - String representing the object as xml
 - Throws:
 JAXBException
 - 
unmarshal
public static <T> T unmarshal(Unmarshaller self, String xml, Class<T> declaredType) throws JAXBExceptionUnmarshal xml data from the givenStringto object of the given type.- Parameters:
 self- Unmarshaller, a Unmarshaller which can unmarshall the type of the given objectxml- xml data as aStringdeclaredType- appropriate JAXB mapped class to hold node's xml data- Returns:
 - instance of destination class unmarshalled from xml
 - Throws:
 JAXBException
 - 
unmarshal
public static <T> T unmarshal(JAXBContext self, String xml, Class<T> declaredType) throws JAXBExceptionUnmarshal xml data from the givenStringto object of the given type.- Parameters:
 self- a JaxbContext, which recognizes the type of the given objectxml- xml data as aStringdeclaredType- appropriate JAXB mapped class to hold node's xml data- Returns:
 - instance of destination class unmarshalled from xml
 - Throws:
 JAXBException
 
 -