Update DataJournal interface
[controller.git] / opendaylight / md-sal / sal-akka-segmented-journal / src / main / java / org / opendaylight / controller / akka / segjournal / DataJournalEntry.java
index 0713c0212a627eae426b9e551e08b5f8b0696e1c..6899c6e1d652d518dd49ec15e1692ac409b51661 100644 (file)
@@ -20,6 +20,9 @@ import io.atomix.storage.journal.JournalSegment;
  * @author Robert Varga
  */
 abstract class DataJournalEntry {
+    /**
+     * A single data journal entry on its way to the backing file.
+     */
     static final class ToPersistence extends DataJournalEntry {
         private final PersistentRepr repr;
 
@@ -32,6 +35,9 @@ abstract class DataJournalEntry {
         }
     }
 
+    /**
+     * A single data journal entry on its way from the backing file.
+     */
     static final class FromPersistence extends DataJournalEntry {
         private final String manifest;
         private final String writerUuid;