Deprecate messagebus for removal
[controller.git] / opendaylight / md-sal / messagebus-spi / src / main / java / org / opendaylight / controller / messagebus / spi / EventSourceRegistration.java
index dd6cc1a166d6ee514816176e609ebcbb022e274b..d885461b487d4347a89df75ff45a77f8fec229e2 100644 (file)
@@ -12,10 +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.
- *
  */
+@Deprecated(forRemoval = true)
 public interface EventSourceRegistration<T extends EventSource> extends ObjectRegistration<T> {
-
     @Override
     void close();
 }