Fix checkstyle violations in sal-dom-spi
[controller.git] / opendaylight / md-sal / sal-dom-spi / src / main / java / org / opendaylight / controller / sal / core / spi / data / DOMStoreTransactionFactory.java
index 433d575cd1193661c6fee3bad890a154f7ad2bf1..f33c0a4e58d27f2317a07174a6af3c7726aa72f8 100644 (file)
@@ -16,8 +16,7 @@ package org.opendaylight.controller.sal.core.spi.data;
  * Underlying {@link DOMStore} or {@link DOMStoreTransactionChain}.
  *
  * <p>
- * See {@link DOMStore} or {@link DOMStoreTransactionChain} for concrete
- * variations of this factory.
+ * See DOMStore, DOMStoreTransactionChain for concrete variations of this factory.
  *
  * <p>
  * <b>Note:</b> This interface is used only to define common functionality
@@ -28,15 +27,13 @@ package org.opendaylight.controller.sal.core.spi.data;
 public interface DOMStoreTransactionFactory {
 
     /**
-     *
-     * Creates a read only transaction
+     * Creates a read only transaction.
      *
      * <p>
      * Creates a new read-only transaction, which provides read access to
      * snapshot of current state.
      *
-     * See {@link DOMStoreReadTransaction} for more information.
-     *
+     * @see DOMStoreReadTransaction for more information.
      * @return new {@link DOMStoreReadTransaction}
      * @throws IllegalStateException
      *             If state of factory prevents allocating new transaction.
@@ -45,22 +42,18 @@ public interface DOMStoreTransactionFactory {
     DOMStoreReadTransaction newReadOnlyTransaction();
 
     /**
-     * Creates write only transaction
-     *
-     * <p>
-     * See {@link DOMStoreWriteTransaction} for more information.
+     * Creates write only transaction.
      *
+     * @see DOMStoreWriteTransaction for more information.
      * @return new {@link DOMStoreWriteTransaction}
      * @throws IllegalStateException If state of factory prevents allocating new transaction.
      */
     DOMStoreWriteTransaction newWriteOnlyTransaction();
 
     /**
-     * Creates Read-Write transaction
-     *
-     * <p>
-     * See {@link DOMStoreReadWriteTransaction} for more information.
+     * Creates Read-Write transaction.
      *
+     * @see DOMStoreReadWriteTransaction for more information.
      * @return  new {@link DOMStoreWriteTransaction}
      * @throws IllegalStateException If state of factory prevents allocating new transaction.
      */