/* 70 */ Class javaType = typeMapping.getJavaType(xmlType);
/* */
/* 72 */ JAXBContext jaxbContext = getJAXBContext(javaTypes);
/* */
/* 74 */ Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
/* 75 */ unmarshaller.setAttachmentUnmarshaller(new AttachmentUnmarshallerImpl());
/* */
/* 77 */ JAXBElement jbe = unmarshaller.unmarshal(xmlFragment, javaType);
/* 78 */ value = jbe.getValue();
/* */
/* 80 */ if (log.isDebugEnabled()) log.debug("deserialized: " + (value != null ? value.getClass().getName() : null));