*/
public class KeyInfoTypeUnmarshaller extends AbstractXMLSignatureUnmarshaller {
/** {@inheritDoc} */
protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
KeyInfoType keyInfo = (KeyInfoType) xmlObject;
if (attribute.getLocalName().equals(KeyInfoType.ID_ATTRIB_NAME)) {
keyInfo.setID(attribute.getValue());
attribute.getOwnerElement().setIdAttributeNode(attribute, true);
} else {
super.processAttribute(xmlObject, attribute);
}
}