checkStyleViolationSeverity=error implemented for mdsal-dom-spi module
[mdsal.git] / dom / mdsal-dom-spi / src / main / java / org / opendaylight / mdsal / dom / spi / DOMNotificationSubscriptionListener.java
index 8bf60a38ac1ce605bebe721fabadb0291a63489d..2e3593ff086d2c76584b7d5aad41a7b9412a3cb7 100644 (file)
@@ -16,17 +16,14 @@ import org.opendaylight.yangtools.yang.model.api.SchemaPath;
  * Listener which is notified when subscriptions changes and
  * provides set of notification types for which currently
  * subscriptions are in place.
- *
  */
 @Beta
 public interface DOMNotificationSubscriptionListener extends EventListener {
 
     /**
-     * Invoked when notification subscription changed
+     * Invoked when notification subscription changed.
      *
-     * @param currentTypes Set of notification types
-     * for which listeners are registered.
+     * @param currentTypes Set of notification types for which listeners are registered.
      */
     void onSubscriptionChanged(Set<SchemaPath> currentTypes);
-
 }