return uh.getResult();
}
public Object unmarshal(Node pNode) throws JAXBException {
UnmarshallerHandler uh = getUnmarshallerHandler();
DOMSerializer ds = new DOMSerializer();
try {
ds.serialize(pNode, uh);
} catch (SAXException e) {
if (e.getException() != null) {
throw new UnmarshalException(e.getException());
} else {
throw new UnmarshalException(e);