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("'");
}
builder.append("\n");
}
return builder.toString();
}