list = XMLHelper.findAll(root, "/results/credentials/*credential");
it = list.iterator();
while(it.hasNext()) {
Element e = (Element) it.next();
String domain = e.getAttributeValue("domain");
Credential c = store.getCredential(domain);
if(c==null) {
c = new Credential(domain, null);
store.addCredential(c);
}
c.setCredential(this.decryptCredential(e.getAttributeValue("c")));
}
}
return super.doActionOK(response);