Remove DOMDataTreeProducer-related classes
[controller.git] / opendaylight / md-sal / messagebus-spi / src / main / java / org / opendaylight / controller / messagebus / spi / EventSourceRegistration.java
index 06af7c12c815f09bfc0ca6185e2601df375a531a..d885461b487d4347a89df75ff45a77f8fec229e2 100644 (file)
@@ -12,11 +12,9 @@ import org.opendaylight.yangtools.concepts.ObjectRegistration;
 /**
  * Instance of EventSourceRegistration is returned by {@link EventSourceRegistry#registerEventSource(EventSource)}
  * and it is used to unregister EventSource.
- *
  */
-public interface EventSourceRegistration <T extends EventSource> extends ObjectRegistration<T>{
-
+@Deprecated(forRemoval = true)
+public interface EventSourceRegistration<T extends EventSource> extends ObjectRegistration<T> {
     @Override
-    public void close();
-
+    void close();
 }