Bug 5149: Support LLDP on ovsdb interface
[ovsdb.git] / schemas / openvswitch / src / main / java / org / opendaylight / ovsdb / schema / openvswitch / Interface.java
index 934245bcc476fe70221b506fab7d1c613a5257e6..e0bd8a20a7662ac64ea8e7feea668805cf93cbe9 100644 (file)
@@ -191,4 +191,9 @@ public interface Interface extends TypedBaseTable<GenericTableSchema> {
     @TypedColumn(name="error", method=MethodType.SETDATA, fromVersion="7.7.0")
     void setError(Set<String> error);
 
+    @TypedColumn(name="lldp", method=MethodType.GETCOLUMN, fromVersion="7.11.2")
+    Column<GenericTableSchema, Map<String, String>> getLldpColumn();
+    @TypedColumn(name="lldp", method=MethodType.SETDATA, fromVersion="7.11.2")
+    void setLldp(Map<String, String> lldp);
+
 }