*/
public class TransformUnmarshaller extends AbstractXMLSignatureUnmarshaller {
/** {@inheritDoc} */
protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
Transform transform = (Transform) xmlObject;
if (attribute.getLocalName().equals(Transform.ALGORITHM_ATTRIB_NAME)) {
transform.setAlgorithm(attribute.getValue());
} else {
super.processAttribute(xmlObject, attribute);
}
}