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