Checkstyle enforcer
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / discovery / IDiscoveryService.java
index 3dda38ef56f11d720b5c4587669cb8341ec0ffab..f640ac2a33f80db4ea24dfbed440c5bb69e7b1ed 100644 (file)
@@ -16,18 +16,18 @@ import org.opendaylight.controller.sal.core.Property;
 import org.opendaylight.controller.sal.core.UpdateType;
 
 /**
- * The interface class provides the methods to notify the listener when an edge
- * is added/deleted/changed
+ * The interface provides the methods to notify the listener when an edge is
+ * added/deleted/changed.
  */
 public interface IDiscoveryService {
     /**
      * The methods is called when an edge is added/deleted/changed
      *
-     * @param edge                     {@link org.opendaylight.controller.sal.core.Edge} being updated
-     * @param type             {@link org.opendaylight.controller.sal.core.UpdateType}
-     * @param props            set of {@link org.opendaylight.controller.sal.core.Property} like
-     *                                                 {@link org.opendaylight.controller.sal.core.Bandwidth} and/or
-     *                                                 {@link org.opendaylight.controller.sal.core.Latency} etc.
+     * @param edge                      {@link org.opendaylight.controller.sal.core.Edge} being updated
+     * @param type              {@link org.opendaylight.controller.sal.core.UpdateType}
+     * @param props             set of {@link org.opendaylight.controller.sal.core.Property} like
+     *                                          {@link org.opendaylight.controller.sal.core.Bandwidth} and/or
+     *                                          {@link org.opendaylight.controller.sal.core.Latency} etc.
      */
     public void notifyEdge(Edge edge, UpdateType type, Set<Property> props);
 }