Update DOMStoreThreePhaseCommitCohort design
[mdsal.git] / dom / mdsal-dom-spi / src / main / java / org / opendaylight / mdsal / dom / spi / store / DOMStoreTransaction.java
index 1a17cfb7935dbfe25e4dea448e540a9ea0f93d1a..37bffa37343644bd5e3ce319fe92e0c17447a04a 100644 (file)
@@ -10,19 +10,19 @@ package org.opendaylight.mdsal.dom.spi.store;
 import org.opendaylight.yangtools.concepts.Identifiable;
 
 /**
- * DOM Data Store transaction
+ * DOM Data Store transaction.
  *
+ * <p>
  * See {@link DOMStoreReadTransaction}, {@link DOMStoreWriteTransaction} and {@link DOMStoreReadWriteTransaction}
  * for specific transaction types.
- *
  */
 public interface DOMStoreTransaction extends AutoCloseable, Identifiable<Object> {
     /**
-     * Unique identifier of the transaction
+     * Unique identifier of the transaction.
      */
     @Override
-    public Object getIdentifier();
+    Object getIdentifier();
 
     @Override
     void close();
-}
+}
\ No newline at end of file