Added insertControllerRow and fixed getSerializedRow. getRows still need to return...
[ovsdb.git] / northbound / ovsdb / src / main / java / org / opendaylight / ovsdb / northbound / OVSDBNorthbound.java
index 47c6fde9e55fcb967759911791fab0ed16d63a76..e6b7aba4a88de22437e139362d2a528d5e0f1df7 100644 (file)
@@ -192,7 +192,7 @@ public class OVSDBNorthbound {
         //Table<?> row = null;
         String row = null;
         try {
-            row = ovsdbTable.getRow(node, ovsTableName, rowUuid);
+            row = ovsdbTable.getSerializedRow(node, ovsTableName, rowUuid);
         } catch (Exception e) {
             throw new BadRequestException(e.getMessage());
         }
@@ -242,7 +242,7 @@ public class OVSDBNorthbound {
         //Map<String, Table<?>> rows = null;
         String rows = null;
         try {
-            rows = ovsdbTable.getRows(node, ovsTableName);
+            rows = ovsdbTable.getSerializedRows(node, ovsTableName);
         } catch (Exception e) {
             throw new BadRequestException(e.getMessage());
         }