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