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 / routing / RouteChange.java
index 0c04b936b668847d6914cefe522190751f10f733..1575cc57cc8f560e91ce9c56ac343e5b09dcd3d5 100644 (file)
@@ -9,6 +9,7 @@ package org.opendaylight.controller.md.sal.common.api.routing;
 
 import java.util.Map;
 import java.util.Set;
+
 /**
  * Event representing change in RPC routing table.
  *
@@ -16,11 +17,11 @@ import java.util.Set;
  * @param <C> Type, which is used to represent Routing context.
  * @param <P> Type of data tree path, which is used to identify route.
  */
-public interface RouteChange<C,P> {
+public interface RouteChange<C, P> {
 
     /**
-     *
      * Returns a map of removed routes in associated routing contexts.
+     *
      * <p>
      * This map represents routes, which were withdrawn from broker local
      * routing table and broker may need to forward RPC to other broker
@@ -29,16 +30,17 @@ public interface RouteChange<C,P> {
      * @return Map of contexts and removed routes
      */
     Map<C,Set<P>> getRemovals();
+
     /**
-    *
-    * Returns a map of announced routes in associated routing contexts.
-    *
-    * This map represents routes, which were announced by broker
-    * and are present in broker's local routing table. This routes
-    * are processed by implementations which are registered
-    * to originating broker.
-    *
-    * @return Map of contexts and announced routes
-    */
-    Map<C,Set<P>> getAnnouncements();
+     * Returns a map of announced routes in associated routing contexts.
+     *
+     * <p>
+     * This map represents routes, which were announced by broker
+     * and are present in broker's local routing table. This routes
+     * are processed by implementations which are registered
+     * to originating broker.
+     *
+     * @return Map of contexts and announced routes
+     */
+    Map<C, Set<P>> getAnnouncements();
 }