Lines Matching defs:resultEntry

724       for (SearchResultEntry resultEntry : searchOp.getSearchEntries())
726 String targetdn = getAttributeValue(resultEntry, "targetdn");
731 Entry targetEntry = parseIncludedAttributes(resultEntry, targetdn);
736 String changeType = getAttributeValue(resultEntry, "changetype");
753 Entry targetEntry = parseIncludedAttributes(resultEntry, targetdn);
759 assertAttributeValue(resultEntry,"changeinitiatorsname", "cn=Internal Client,cn=Root DNs,cn=config");
902 for (SearchResultEntry resultEntry : entries)
904 ldifWriter.writeEntry(resultEntry);
905 cookie = getAttributeValue(resultEntry, "lastexternalchangelogcookie");
1345 private void assertEntryCommonAttributes(SearchResultEntry resultEntry,
1351 assertDNWithCSN(resultEntry, csn);
1355 assertDNWithChangeNumber(resultEntry, changeNumber);
1356 assertAttributeValue(resultEntry, "changenumber", changeNumber);
1358 assertAttributeValue(resultEntry, "targetentryuuid", entryUUID);
1359 assertAttributeValue(resultEntry, "replicaidentifier", SERVER_ID_1);
1360 assertAttributeValue(resultEntry, "replicationcsn", csn);
1361 assertAttributeValue(resultEntry, "changelogcookie", buildCookie(csn));
1366 assertAttributeValue(resultEntry, "targetdn", targetDN);
1440 private void assertDNWithChangeNumber(SearchResultEntry resultEntry, long changeNumber) throws Exception
1442 DN actualDN = resultEntry.getName();
1447 private void assertDNWithCSN(SearchResultEntry resultEntry, CSN csn) throws Exception
1449 DN actualDN = resultEntry.getName();
1503 private Entry parseIncludedAttributes(SearchResultEntry resultEntry, String targetdn) throws Exception
1506 String includedAttributes = getAttributeValue(resultEntry, "includedattributes");