advancePastWhitespace(xmlReader);
XMLEvent next = xmlReader.peek();
if (isStartTagEvent(next, QNAME_TAG_JOURNAL_ENTRY)) {
ConsumerJournalEntry journalEntry =
super.readJournalEntry(xmlReader);
journalEntry.setIdentifier(new Date().toString());
return journalEntry;
} else if (isEndTagEvent(next, QNAME_TAG_JOURNAL)) {
return null;
} else {
throw getNotNextMemberOrEndOfGroupException(QNAME_TAG_JOURNAL,