Fix javadocs and enable doclint
[controller.git] / opendaylight / md-sal / sal-dom-spi / src / main / java / org / opendaylight / controller / sal / core / spi / data / DOMStoreThreePhaseCommitCohort.java
index 986a153efb2e45b481f66729e8c362deced8a1c9..ec54e42cd7aa61a46be3f38fe2b9138e06dd48e9 100644 (file)
@@ -13,7 +13,7 @@ import com.google.common.util.concurrent.ListenableFuture;
  * Interface implemented by the {@link DOMStore} and exposed for each {@link DOMStoreWriteTransaction}
  * upon its transition to Ready state. The frontend (DOMStore user) uses this interface to drive the
  * commit procedure across potentially multiple DOMStores using the Three-Phase-Commit (3PC) Protocol,
- * as described in {@link https://en.wikipedia.org/wiki/Three-phase_commit}.
+ * as described in <a href="https://en.wikipedia.org/wiki/Three-phase_commit">Three-Phase-Commit Protocol</a>.
  */
 public interface DOMStoreThreePhaseCommitCohort {
 
@@ -29,6 +29,7 @@ public interface DOMStoreThreePhaseCommitCohort {
      *         true if transaction is approved by data store.
      *         <li>false if the transaction is not approved by data store and
      *         should be aborted.
+     *         </ul>
      */
     ListenableFuture<Boolean> canCommit();