Fix javadocs and enable doclint
[controller.git] / opendaylight / md-sal / sal-common-api / src / main / java / org / opendaylight / controller / md / sal / common / api / data / AsyncDataChangeListener.java
index 0bdaf7bf3766736aa76337a1e6e772e036ed0cb5..a7a9fef07fe4e91dae595e9831b31a051dfc62de 100644 (file)
@@ -30,6 +30,7 @@ import org.opendaylight.yangtools.concepts.Path;
  * @param <D>
  *            Type of data (payload), which represents data payload
  */
+@Deprecated
 public interface AsyncDataChangeListener<P extends Path<P>, D> extends EventListener {
     /**
      *
@@ -42,8 +43,10 @@ public interface AsyncDataChangeListener<P extends Path<P>, D> extends EventList
      *
      * <p>
      * <b>Note</b>: This method may be invoked from a shared thread pool.
+     * <ul>
      * <li>Implementations <b>SHOULD NOT</b> perform CPU-intensive operations on the calling thread.
      * <li>Implementations <b>MUST NOT block the calling thread</b> - to do so could lead to deadlock
+     * </ul>
      * scenarios.
      *
      *<br>