Switch to MD-SAL APIs
[openflowplugin.git] / applications / notification-supplier / src / main / java / org / opendaylight / openflowplugin / applications / notification / supplier / NotificationSupplierDefinition.java
index 4dde777fdbfece42a6eb093347dd261a22937210..3e59568f6f36d2e0ac6eea51786fbd143efbefc5 100644 (file)
@@ -5,16 +5,15 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.openflowplugin.applications.notification.supplier;
 
-import org.opendaylight.controller.md.sal.binding.api.DataTreeChangeListener;
+import org.opendaylight.mdsal.binding.api.DataTreeChangeListener;
 import org.opendaylight.yangtools.yang.binding.DataObject;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 
 /**
  * Default definition for every Notification Supplier. Migration from notification
- * to {@link org.opendaylight.controller.md.sal.binding.api.DataTreeChangeListener} has one
+ * to {@link DataTreeChangeListener} has one
  * keyed component - WildCarded Path which represent a changes checker in DataStoreTreeNode
  *
  * @param <O> - {@link DataObject} represent Data Tree Item from DataStore
@@ -23,11 +22,10 @@ public interface NotificationSupplierDefinition<O extends DataObject> extends Au
 
     /**
      * Method return wildCardPath for Listener registration and for identify
-     * the correct KeyInstanceIdentifier from Data Tree Item in DataStore;
+     * the correct KeyInstanceIdentifier from Data Tree Item in DataStore.
      *
      * @return {@link InstanceIdentifier}
      */
     InstanceIdentifier<O> getWildCardPath();
-
 }