Break out ControllerUpdate and Remove into seperate commands
[ovsdb.git] / southbound / southbound-impl / src / main / java / org / opendaylight / ovsdb / southbound / ovsdb / transact / TransactCommandAggregator.java
index 7ebf19790725e15b9229ebc5bd5a443f22da6b14..117634fbb1b37f29ac75bf0f68654fea1d45d8bd 100644 (file)
@@ -26,6 +26,9 @@ public class TransactCommandAggregator implements TransactCommand {
         this.operationalState = state;
         this.changes = changes;
         commands.add(new BridgeCreateCommand(state,changes));
+        commands.add(new OpenVSwitchBridgeAddCommand());
+        commands.add(new ControllerUpdateCommand(state,changes));
+        commands.add(new ControllerRemovedCommand(state,changes));
         commands.add(new BridgeRemovedCommand(state,changes));
         commands.add(new TerminationPointCreateCommand(state,changes));
         commands.add(new TerminationPointDeleteCommand(state, changes));