/**
* The {@link #expectedContext} should be like the {@link #leadingContext},
* with the addition of anything we expect the management method to add.
*/
private void loadExpectedContext() {
expectedContext = new JournalEntryContext(leadingContext);
for (Map.Entry<RDFName, String[]> entry : contextAdditions.entrySet()) {
expectedContext.getRecoveryAttributes().set(entry.getKey().uri,
entry.getValue());
}
}