for (Map.Entry<String, EDBObjectDiff> e : diff.entrySet()) {
String oid = e.getKey();
builder.append("Found a difference for object: " + oid);
EDBObjectDiff odiff = e.getValue();
Map<String, EDBEntry> diffMap = odiff.getDiffMap();
for (Map.Entry<String, EDBEntry> de : diffMap.entrySet()) {
String key = de.getKey();
EDBEntry entry = de.getValue();
builder.append(" Entry: '").append(key).append("' from: '").append(entry.getBefore())
.append("' to: '").append(entry.getAfter()).append("'");