*/
public class AttributedDateTimeUnmarshaller extends AbstractWSSecurityObjectUnmarshaller {
/** {@inheritDoc} */
protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
AttributedDateTime dateTime = (AttributedDateTime) xmlObject;
QName attrName =
XMLHelper.constructQName(attribute.getNamespaceURI(), attribute.getLocalName(), attribute.getPrefix());
if (AttributedDateTime.WSU_ID_ATTR_NAME.equals(attrName)) {
dateTime.setWSUId(attribute.getValue());
attribute.getOwnerElement().setIdAttributeNode(attribute, true);
} else {
XMLHelper.unmarshallToAttributeMap(dateTime.getUnknownAttributes(), attribute);
}
}