Bug 2214 - Unable to set the external_ids field of the Qos object 65/12465/1
authorFlavio Fernandes <ffernand@redhat.com>
Mon, 3 Nov 2014 16:59:25 +0000 (11:59 -0500)
committerFlavio Fernandes <ffernand@redhat.com>
Mon, 3 Nov 2014 16:59:25 +0000 (11:59 -0500)
Fix typo on external_ids for QoS table, to conform with
http://openvswitch.org/ovs-vswitchd.conf.db.5.pdf page 38.

Change-Id: I97ac25bf1355b18d9944de3e78bbe6edadd3399d
Signed-off-by: Flavio Fernandes <ffernand@redhat.com>
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/Qos.java

index b853ede8a9b808ff1257f82df9b5ad50eafc37a3..481a31e57a55f7170e741e69bfb8a8430d47a20c 100644 (file)
@@ -45,9 +45,9 @@ public interface Qos extends TypedBaseTable<GenericTableSchema> {
     @TypedColumn (name="other_config", method= MethodType.SETDATA, fromVersion="1.0.0")
     public void setOtherConfig(Map<String, String> otherConfig) ;
 
-    @TypedColumn (name="externalIds", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn (name="external_ids", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
     public Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn() ;
 
-    @TypedColumn (name="externalIds", method= MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn (name="external_ids", method= MethodType.SETDATA, fromVersion="1.0.0")
     public void setExternalIds(Map<String, String> externalIds) ;
 }
\ No newline at end of file