Fix checkstyle violations in sal-common-api
[controller.git] / opendaylight / md-sal / sal-common-api / src / main / java / org / opendaylight / controller / md / sal / common / api / data / AsyncTransaction.java
index 9855b2245c101e790c8696920052f71a0af0d20b..2fe3760c9d307ab115c0ed2a9be013a0ce50ee3c 100644 (file)
@@ -12,14 +12,15 @@ import org.opendaylight.yangtools.concepts.Path;
 
 
 /**
- *
  * A common parent for all transactions which operate on a conceptual data tree.
  *
+ * <p>
  * See derived transaction types for more concrete behavior:
  * <ul>
  * <li>{@link AsyncReadTransaction} - Read capabilities, user is able to read data from data tree</li>
  * <li>{@link AsyncWriteTransaction} - Write capabilities, user is able to propose changes to data tree</li>
- * <li>{@link AsyncReadWriteTransaction} - Read and Write capabilities, user is able to read state and to propose changes of state.</li>
+ * <li>{@link AsyncReadWriteTransaction} - Read and Write capabilities, user is able to read state and to propose
+ *     changes of state.</li>
  * </ul>
  *
  * <b>Implementation Note:</b> This interface is not intended to be implemented
@@ -33,6 +34,4 @@ public interface AsyncTransaction<P extends Path<P>,D> extends //
 
     @Override
     Object getIdentifier();
-
-
 }