Local-ucast-macs not cleared from oper-topo DS.
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / transactions / md / HwvtepOperationalCommandAggregator.java
index 1aa57767ed98f966b0b8ba91df61291ba7cae384..5575424afea6283e0eec1ec454d4fa9a381ead88 100644 (file)
@@ -63,4 +63,20 @@ public class HwvtepOperationalCommandAggregator implements TransactionCommand {
         }
         connectionInstance.getDeviceInfo().onOperDataAvailable();
     }
+
+    @Override
+    public void onSuccess() {
+
+        for (TransactionCommand command : commands) {
+            command.onSuccess();
+        }
+    }
+
+    @Override
+    public void onFailure() {
+        for (TransactionCommand command : commands) {
+            command.onFailure();
+        }
+    }
+
 }