Add blacklist capability to yang-store-impl.
[controller.git] / opendaylight / config / yang-store-api / src / main / java / org / opendaylight / controller / config / yang / store / api / YangStoreService.java
index 3ac4b84fdb2e1b203d9508dfb01f16b0db76af08..15619a88cc41b3ac88e59469b3e72563de0e1b5c 100644 (file)
@@ -7,8 +7,6 @@
  */
 package org.opendaylight.controller.config.yang.store.api;
 
-import org.opendaylight.controller.config.yang.store.spi.YangStoreListener;
-
 /**
  * Yang store OSGi service
  */
@@ -21,10 +19,4 @@ public interface YangStoreService {
      */
     YangStoreSnapshot getYangStoreSnapshot() throws YangStoreException;
 
-
-    /**
-     * Allows for registering for change notifications.
-     */
-    YangStoreListenerRegistration registerListener(YangStoreListener listener);
-
 }