External api proposal
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / md / core / sal / NotificationComposer.java
index a0421eb9bcdf817d48a4695f1254ec7e19ab2bdc..72c7d38a5507560c4c1a2c6f8a63bacac391a52c 100644 (file)
@@ -7,16 +7,17 @@
  */
 package org.opendaylight.openflowplugin.api.openflow.md.core.sal;
 
+import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.transaction.rev150304.TransactionId;
 import org.opendaylight.yangtools.yang.binding.Notification;
 
 /**
  * @param <N> type of notification
- * 
  */
 public interface NotificationComposer<N extends Notification> {
     
     /**
+     * @param xid corresponding OF transaction id
      * @return notification instance
      */
-    N compose();
+    N compose(TransactionId xid);
 }