Merge changes Iec115491,I5b6f87c7,I6c05abf0
[netvirt.git] / plugin / src / main / java / org / opendaylight / ovsdb / plugin / impl / ConfigurationServiceImpl.java
index 63c57e2fbaab81f45daf145a85022a6132ebc8fd..56aea7e9fd0f89f008704d41f7a767bdc230174b 100644 (file)
@@ -1175,16 +1175,28 @@ public class ConfigurationServiceImpl implements IPluginInBridgeDomainConfigServ
         return null;
     }
 
+    @Override
+    public UUID insertRow(Node node, String databaseName, String tableName, String parentTable, UUID parentUuid,
+                          String parentColumn, Row<GenericTableSchema> row) throws OvsdbPluginException {
+        throw new OvsdbPluginException("Not implemented Yet");
+    }
+
     @Override
     public UUID insertRow(Node node, String databaseName, String tableName,
-            UUID parentUuid, Row<GenericTableSchema> row)
+            UUID parentRowUuid, Row<GenericTableSchema> row)
             throws OvsdbPluginException {
         throw new OvsdbPluginException("Not implemented Yet");
     }
 
+    @Override
+    public Row<GenericTableSchema> insertTree(Node node, String databaseName, String tableName, String parentTable, UUID parentRowUuid,
+                                              String parentColumn, Row<GenericTableSchema> row) throws OvsdbPluginException {
+        throw new OvsdbPluginException("Not implemented Yet");
+    }
+
     @Override
     public Row<GenericTableSchema> insertTree(Node node, String databaseName,
-            String tableName, UUID parentUuid, Row<GenericTableSchema> row)
+            String tableName, UUID parentRowUuid, Row<GenericTableSchema> row)
             throws OvsdbPluginException {
         throw new OvsdbPluginException("Not implemented Yet");
     }
@@ -1196,11 +1208,16 @@ public class ConfigurationServiceImpl implements IPluginInBridgeDomainConfigServ
         throw new OvsdbPluginException("Not implemented Yet");
     }
 
+    @Override
+    public void deleteRow(Node node, String databaseName, String tableName, String parentTable, UUID parentRowUuid,
+            String parentColumn, UUID rowUuid) throws OvsdbPluginException {
+        throw new OvsdbPluginException("Not implemented Yet");
+    }
+
     @Override
     public void deleteRow(Node node, String databaseName, String tableName,
             UUID rowUuid) throws OvsdbPluginException {
         throw new OvsdbPluginException("Not implemented Yet");
-
     }
 
     @Override