Fix InstanceNotificationPublishService javadoc 63/100663/1
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 20 Apr 2022 07:40:53 +0000 (09:40 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Wed, 20 Apr 2022 07:40:53 +0000 (09:40 +0200)
We have bad references here, fix them up.

Change-Id: I58a23cb616f808f33840ebfe3abf53345d21fe76
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
binding/mdsal-binding-api/src/main/java/org/opendaylight/mdsal/binding/api/InstanceNotificationPublishService.java

index de0c8649b5cc61baf4cc5a0e319e6f62599d6bbb..ed4a3ddc552fbcf6f05cd5b7977db4c1f47cdb07 100644 (file)
@@ -40,11 +40,12 @@ public interface InstanceNotificationPublishService extends BindingService {
      * Interface for publishing {@link InstanceNotification} of a particular type bound to an instantiation. There are
      * three methods of submission, following the patters from {@link java.util.concurrent.BlockingQueue}:
      * <ul>
-     *   <li>{@link #putNotification(InstanceNotification)}, which may block indefinitely if the implementation cannot
-     *       allocate resources to accept the notification,</li>
-     *   <li>{@link #offerNotification(InstanceNotification)}, which does not block if face of resource starvation,</li>
-     *   <li>{@link #offerNotification(InstanceNotification, int, TimeUnit)}, which may block for specified time if
-     *       resources are thin.</li>
+     *   <li>{@link #putNotification(InstanceIdentifier, InstanceNotification)}, which may block indefinitely if the
+     *       implementation cannot allocate resources to accept the notification,</li>
+     *   <li>{@link #offerNotification(InstanceIdentifier, InstanceNotification)}, which does not block if face of
+     *       resource starvation,</li>
+     *   <li>{@link #offerNotification(InstanceIdentifier, InstanceNotification, int, TimeUnit)}, which may block for
+     *       specified time if resources are thin.</li>
      * </ul>
      *
      * <p>