Fix checkstyle violations in schema 27/69027/1
authorTom Pantelis <tompantelis@gmail.com>
Fri, 2 Mar 2018 21:50:05 +0000 (16:50 -0500)
committerTom Pantelis <tompantelis@gmail.com>
Fri, 2 Mar 2018 21:50:05 +0000 (16:50 -0500)
Change-Id: Ifdfeaeee54a69071758b12762fab8093974a5c6e
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
27 files changed:
schemas/hardwarevtep/src/main/java/org/opendaylight/ovsdb/schema/hardwarevtep/LogicalBindingStats.java
schemas/hardwarevtep/src/main/java/org/opendaylight/ovsdb/schema/hardwarevtep/LogicalRouter.java
schemas/hardwarevtep/src/main/java/org/opendaylight/ovsdb/schema/hardwarevtep/LogicalSwitch.java
schemas/hardwarevtep/src/main/java/org/opendaylight/ovsdb/schema/hardwarevtep/Manager.java
schemas/hardwarevtep/src/main/java/org/opendaylight/ovsdb/schema/hardwarevtep/McastMacsLocal.java
schemas/hardwarevtep/src/main/java/org/opendaylight/ovsdb/schema/hardwarevtep/McastMacsRemote.java
schemas/hardwarevtep/src/main/java/org/opendaylight/ovsdb/schema/hardwarevtep/PhysicalLocator.java
schemas/hardwarevtep/src/main/java/org/opendaylight/ovsdb/schema/hardwarevtep/PhysicalLocatorSet.java
schemas/hardwarevtep/src/main/java/org/opendaylight/ovsdb/schema/hardwarevtep/PhysicalPort.java
schemas/hardwarevtep/src/main/java/org/opendaylight/ovsdb/schema/hardwarevtep/PhysicalSwitch.java
schemas/hardwarevtep/src/main/java/org/opendaylight/ovsdb/schema/hardwarevtep/Tunnel.java
schemas/hardwarevtep/src/main/java/org/opendaylight/ovsdb/schema/hardwarevtep/UcastMacsLocal.java
schemas/hardwarevtep/src/main/java/org/opendaylight/ovsdb/schema/hardwarevtep/UcastMacsRemote.java
schemas/hardwarevtep/src/test/java/org/opendaylight/ovsdb/schema/hardwarevtep/HardwareVTEPTest.java
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/FlowSampleCollectorSet.java
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/FlowTable.java
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/IPFIX.java
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/Interface.java
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/Manager.java
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/Mirror.java
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/NetFlow.java
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/OpenVSwitch.java
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/Port.java
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/Qos.java
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/Queue.java
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/SFlow.java
schemas/openvswitch/src/main/java/org/opendaylight/ovsdb/schema/openvswitch/SSL.java

index 8be8f517018b7db7d586578bcd667380243cc0dc..a0a0df3444bcba6e3e75f8fb04fc5b372fb5a319 100644 (file)
@@ -15,30 +15,30 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-@TypedTable(name="Logical_Binding_Stats", database="hardware_vtep", fromVersion="1.0.0")
+@TypedTable(name = "Logical_Binding_Stats", database = "hardware_vtep", fromVersion = "1.0.0")
 public interface LogicalBindingStats extends TypedBaseTable<GenericTableSchema> {
 
-    @TypedColumn(name="bytes_from_local", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "bytes_from_local", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Long> getBytesFromLocalColumn();
 
-    @TypedColumn(name="bytes_from_local", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "bytes_from_local", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setBytesFromLocal(Long bytesFromLocal);
 
-    @TypedColumn(name="packets_from_local", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "packets_from_local", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Long> getPacketsFromLocalColumn();
 
-    @TypedColumn(name="packets_from_local", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "packets_from_local", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setPacketsFromLocal(Long packetsFromLocal);
 
-    @TypedColumn(name="bytes_to_local", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "bytes_to_local", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Long> getBytesToLocalColumn();
 
-    @TypedColumn(name="bytes_to_local", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "bytes_to_local", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setBytesToLocal(Long bytesToLocal);
 
-    @TypedColumn(name="packets_to_local", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "packets_to_local", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Long> getPacketsToLocalColumn();
 
-    @TypedColumn(name="packets_to_local", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "packets_to_local", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setPacketsToLocal(Long packetsToLocal);
 }
index a5a18ec8e6acad74a8a1b575592832d2819740e5..c99da95cd85444b6c99d0dd67ae20f553948c4dc 100644 (file)
@@ -9,7 +9,6 @@
 package org.opendaylight.ovsdb.schema.hardwarevtep;
 
 import java.util.Map;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.notation.UUID;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
@@ -18,52 +17,47 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-@TypedTable(name="Logical_Router", database="hardware_vtep", fromVersion="1.0.0")
+@TypedTable(name = "Logical_Router", database = "hardware_vtep", fromVersion = "1.0.0")
 public interface LogicalRouter extends TypedBaseTable<GenericTableSchema> {
-    @TypedColumn(name="name", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getNameColumn();
 
-    @TypedColumn(name="name", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getName();
 
-    @TypedColumn(name="name", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setName(String name);
 
-
-    @TypedColumn(name="description", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "description", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getDescriptionColumn();
 
-    @TypedColumn(name="description", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "description", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getDescription();
 
-    @TypedColumn(name="description", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "description", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setDescription(String description);
 
-
-    @TypedColumn(name="switch_binding", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "switch_binding", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, UUID>> getSwitchBindingColumn();
 
-    @TypedColumn(name="switch_binding", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "switch_binding", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setSwitchBinding(Map<String, UUID> switchBinding);
 
-
-    @TypedColumn(name="static_routes", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "static_routes", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, String>> getStaticRoutesColumn();
 
-    @TypedColumn(name="static_routes", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "static_routes", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setStaticRoutes(Map<String, String> staticRoutes);
 
-
-    @TypedColumn(name="acl_binding", method=MethodType.GETCOLUMN, fromVersion="1.4.0")
+    @TypedColumn(name = "acl_binding", method = MethodType.GETCOLUMN, fromVersion = "1.4.0")
     Column<GenericTableSchema, Map<String, UUID>> getAclBindingColumn();
 
-    @TypedColumn(name="acl_binding", method=MethodType.SETDATA, fromVersion="1.4.0")
+    @TypedColumn(name = "acl_binding", method = MethodType.SETDATA, fromVersion = "1.4.0")
     void setAclBinding(Map<String, UUID> aclBinding);
 
-
-    @TypedColumn(name="other_config", method=MethodType.GETCOLUMN, fromVersion="1.5.1")
+    @TypedColumn(name = "other_config", method = MethodType.GETCOLUMN, fromVersion = "1.5.1")
     Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn();
 
-    @TypedColumn(name="other_config", method=MethodType.SETDATA, fromVersion="1.5.1")
+    @TypedColumn(name = "other_config", method = MethodType.SETDATA, fromVersion = "1.5.1")
     void setOtherConfig(Map<String, String> otherConfig);
-}
\ No newline at end of file
+}
index 5b1d6209856a4d02784100ab10f81d5c981289b8..3a39231b2b74109102204a69e2ebe4e1d59abac1 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.ovsdb.schema.hardwarevtep;
 
 import java.util.Map;
 import java.util.Set;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
 import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
@@ -18,45 +17,41 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-@TypedTable(name="Logical_Switch", database="hardware_vtep", fromVersion="1.0.0")
+@TypedTable(name = "Logical_Switch", database = "hardware_vtep", fromVersion = "1.0.0")
 public interface LogicalSwitch extends TypedBaseTable<GenericTableSchema> {
-    @TypedColumn(name="name", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getNameColumn();
 
-    @TypedColumn(name="name", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getName();
 
-    @TypedColumn(name="name", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setName(String name);
 
-
-    @TypedColumn(name="description", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "description", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getDescriptionColumn();
 
-    @TypedColumn(name="description", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "description", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getDescription();
 
-    @TypedColumn(name="description", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "description", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setDescription(String description);
 
-
-    @TypedColumn(name="tunnel_key", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "tunnel_key", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getTunnelKeyColumn();
 
-    @TypedColumn(name="tunnel_key", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "tunnel_key", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setTunnelKey(Set<Long> tunnelKey);
 
-
-    @TypedColumn(name="replication_mode", method=MethodType.GETCOLUMN, fromVersion="1.6.0")
+    @TypedColumn(name = "replication_mode", method = MethodType.GETCOLUMN, fromVersion = "1.6.0")
     Column<GenericTableSchema, Set<String>> getReplicationModeColumn();
 
-    @TypedColumn(name="replication_mode", method=MethodType.SETDATA, fromVersion="1.6.0")
+    @TypedColumn(name = "replication_mode", method = MethodType.SETDATA, fromVersion = "1.6.0")
     void setReplicationMode(Set<String> replicationMode);
 
-
-    @TypedColumn(name="other_config", method=MethodType.GETCOLUMN, fromVersion="1.5.1")
+    @TypedColumn(name = "other_config", method = MethodType.GETCOLUMN, fromVersion = "1.5.1")
     Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn();
 
-    @TypedColumn(name="other_config", method=MethodType.SETDATA, fromVersion="1.5.1")
+    @TypedColumn(name = "other_config", method = MethodType.SETDATA, fromVersion = "1.5.1")
     void setOtherConfig(Map<String, String> otherConfig);
-}
\ No newline at end of file
+}
index 37518085b6c620e5fbee031bc633fbe5cc4e0d55..56dec3388c71a5de052dd7062a442c33efe01a39 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.ovsdb.schema.hardwarevtep;
 
 import java.util.Map;
 import java.util.Set;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
 import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
@@ -18,42 +17,42 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-@TypedTable(name="Manager", database="hardware_vtep", fromVersion="1.0.0")
+@TypedTable(name = "Manager", database = "hardware_vtep", fromVersion = "1.0.0")
 public interface Manager extends TypedBaseTable<GenericTableSchema> {
 
-    @TypedColumn(name="target", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "target", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getTargetColumn();
 
-    @TypedColumn(name="target", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "target", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setTarget(String target);
 
-    @TypedColumn(name="max_backoff", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "max_backoff", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getMaxBackoffColumn();
 
-    @TypedColumn(name="max_backoff", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "max_backoff", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setMaxBackoff(Set<Long> maxBackoff);
 
-    @TypedColumn(name="inactivity_probe", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "inactivity_probe", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getInactivityProbeColumn();
 
-    @TypedColumn(name="inactivity_probe", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "inactivity_probe", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setInactivityProbe(Set<Long> inactivityProbe);
 
-    @TypedColumn(name="other_config", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "other_config", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn();
 
-    @TypedColumn(name="other_config", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "other_config", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setOtherConfig(Map<String, String> otherConfig);
 
-    @TypedColumn(name="is_connected", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "is_connected", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Boolean> getIsConnectedColumn();
 
-    @TypedColumn(name="is_connected", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "is_connected", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setIsConnectedColumn(Boolean isConnected);
 
-    @TypedColumn(name="status", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "status", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, String>> getStatusColumn();
 
-    @TypedColumn(name="status", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "status", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setStatus(Map<String, String> status);
-}
\ No newline at end of file
+}
index ab5b653f606f636a121d4e2d2d7f1688eaa3df92..01819ec80b2c9080d336c00a3c0a97bfd5b803b9 100644 (file)
@@ -16,37 +16,35 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-@TypedTable(name="Mcast_Macs_Local", database="hardware_vtep", fromVersion="1.0.0")
+@TypedTable(name = "Mcast_Macs_Local", database = "hardware_vtep", fromVersion = "1.0.0")
 public interface McastMacsLocal extends TypedBaseTable<GenericTableSchema> {
-    @TypedColumn(name="MAC", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "MAC", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getMacColumn();
 
-    @TypedColumn(name="MAC", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "MAC", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getMac();
 
-    @TypedColumn(name="MAC", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "MAC", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setMac(String mac);
 
-
-    @TypedColumn(name="logical_switch", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "logical_switch", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, UUID> getLogicalSwitchColumn();
 
-    @TypedColumn(name="logical_switch", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "logical_switch", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setLogicalSwitch(UUID logicalSwitch);
 
-    @TypedColumn(name="locator_set", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "locator_set", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, UUID> getLocatorSetColumn();
 
-    @TypedColumn(name="locator_set", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "locator_set", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setLocatorSet(UUID locatorSet);
 
-
-    @TypedColumn(name="ipaddr", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "ipaddr", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getIpAddrColumn();
 
-    @TypedColumn(name="ipaddr", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "ipaddr", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getIpAddr();
 
-    @TypedColumn(name="ipaddr", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "ipaddr", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setIpAddress(String ipAddr);
 }
index 4d3e3bfe8126b644852cbfa49a720cf1de97215e..be615d2aadf48f6dba7f67cf3abffe0dc6398358 100644 (file)
@@ -16,37 +16,35 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-@TypedTable(name="Mcast_Macs_Remote", database="hardware_vtep", fromVersion="1.0.0")
+@TypedTable(name = "Mcast_Macs_Remote", database = "hardware_vtep", fromVersion = "1.0.0")
 public interface McastMacsRemote extends TypedBaseTable<GenericTableSchema> {
-    @TypedColumn(name="MAC", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "MAC", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getMacColumn();
 
-    @TypedColumn(name="MAC", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "MAC", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getMac();
 
-    @TypedColumn(name="MAC", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "MAC", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setMac(String mac);
 
-
-    @TypedColumn(name="logical_switch", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "logical_switch", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, UUID> getLogicalSwitchColumn();
 
-    @TypedColumn(name="logical_switch", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "logical_switch", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setLogicalSwitch(UUID logicalSwitch);
 
-    @TypedColumn(name="locator_set", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "locator_set", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, UUID> getLocatorSetColumn();
 
-    @TypedColumn(name="locator_set", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "locator_set", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setLocatorSet(UUID locatorSet);
 
-
-    @TypedColumn(name="ipaddr", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "ipaddr", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getIpAddrColumn();
 
-    @TypedColumn(name="ipaddr", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "ipaddr", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getIpAddr();
 
-    @TypedColumn(name="ipaddr", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "ipaddr", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setIpAddress(String ipAddr);
 }
index 83fe20e3d9e956aeb09512e7c54dc4ae63a3f434..0d7d5758a1f052b6f8cc1bbd0d47665f5e02ef00 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.ovsdb.schema.hardwarevtep;
 
 import java.util.Map;
 import java.util.Set;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
 import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
@@ -18,36 +17,35 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-@TypedTable(name="Physical_Locator", database="hardware_vtep", fromVersion="1.0.0")
+@TypedTable(name = "Physical_Locator", database = "hardware_vtep", fromVersion = "1.0.0")
 public interface PhysicalLocator extends TypedBaseTable<GenericTableSchema> {
-    @TypedColumn(name="encapsulation_type", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "encapsulation_type", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getEncapsulationTypeColumn();
 
-    @TypedColumn(name="encapsulation_type", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "encapsulation_type", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setEncapsulationType(String encapsulationType);
 
-    @TypedColumn(name="dst_ip", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "dst_ip", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getDstIpColumn();
 
-    @TypedColumn(name="dst_ip", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "dst_ip", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setDstIp(String dstIp);
 
-    @TypedColumn(name="bfd", method=MethodType.GETCOLUMN, fromVersion="1.0.0", untilVersion="1.2.0")
+    @TypedColumn(name = "bfd", method = MethodType.GETCOLUMN, fromVersion = "1.0.0", untilVersion = "1.2.0")
     Column<GenericTableSchema, Map<String, String>> getBfdColumn();
 
-    @TypedColumn(name="bfd", method=MethodType.SETDATA, fromVersion="1.0.0", untilVersion="1.2.0")
+    @TypedColumn(name = "bfd", method = MethodType.SETDATA, fromVersion = "1.0.0", untilVersion = "1.2.0")
     void setBfd(Map<String, String> bfd);
 
-    @TypedColumn(name="bfd_status", method=MethodType.GETCOLUMN, fromVersion="1.0.0", untilVersion="1.2.0")
+    @TypedColumn(name = "bfd_status", method = MethodType.GETCOLUMN, fromVersion = "1.0.0", untilVersion = "1.2.0")
     Column<GenericTableSchema, Map<String, String>> getBfdStatusColumn();
 
-    @TypedColumn(name="bfd_status", method=MethodType.SETDATA, fromVersion="1.0.0", untilVersion="1.2.0")
+    @TypedColumn(name = "bfd_status", method = MethodType.SETDATA, fromVersion = "1.0.0", untilVersion = "1.2.0")
     void setBfdStatus(Map<String, String> bfdStatus);
 
-
-    @TypedColumn(name="tunnel_key", method=MethodType.GETCOLUMN, fromVersion="1.5.0")
+    @TypedColumn(name = "tunnel_key", method = MethodType.GETCOLUMN, fromVersion = "1.5.0")
     Column<GenericTableSchema, Set<Long>> getTunnelKeyColumn();
 
-    @TypedColumn(name="tunnel_key", method=MethodType.SETDATA, fromVersion="1.5.0")
+    @TypedColumn(name = "tunnel_key", method = MethodType.SETDATA, fromVersion = "1.5.0")
     void setTunnelKey(Set<Long> tunnelKey);
 }
index 9978fbe13c82f41caaad9c612534fdbd92a14e7f..3d2baae9298c51a5393ca409462a0f2aa2736317 100644 (file)
@@ -9,7 +9,6 @@
 package org.opendaylight.ovsdb.schema.hardwarevtep;
 
 import java.util.Set;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.notation.UUID;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
@@ -18,11 +17,11 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-@TypedTable(name="Physical_Locator_Set", database="hardware_vtep", fromVersion="1.0.0")
+@TypedTable(name = "Physical_Locator_Set", database = "hardware_vtep", fromVersion = "1.0.0")
 public interface PhysicalLocatorSet extends TypedBaseTable<GenericTableSchema> {
-    @TypedColumn(name="locators", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "locators", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<UUID>> getLocatorsColumn();
 
-    @TypedColumn(name="locators", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "locators", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setLocators(Set<UUID> locators);
-}
\ No newline at end of file
+}
index 964b9890ccc72985aacbaa0a1a1e6d3127553eb4..190f3cb2eb758c1a2a70d53b61bd00aa82fa6e5f 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.ovsdb.schema.hardwarevtep;
 
 import java.util.Map;
 import java.util.Set;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.notation.UUID;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
@@ -19,59 +18,53 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-@TypedTable(name="Physical_Port", database="hardware_vtep", fromVersion="1.0.0")
+@TypedTable(name = "Physical_Port", database = "hardware_vtep", fromVersion = "1.0.0")
 public interface PhysicalPort extends TypedBaseTable<GenericTableSchema> {
-    @TypedColumn(name="name", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getNameColumn();
 
-    @TypedColumn(name="name", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getName();
 
-    @TypedColumn(name="name", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setName(String name);
 
-
-    @TypedColumn(name="description", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "description", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getDescriptionColumn();
 
-    @TypedColumn(name="description", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "description", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getDescription();
 
-    @TypedColumn(name="description", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "description", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setDescription(String description);
 
-
-    @TypedColumn(name="vlan_bindings", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "vlan_bindings", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<Long, UUID>> getVlanBindingsColumn();
 
-    @TypedColumn(name="vlan_bindings", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "vlan_bindings", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setVlanBindings(Map<Long, UUID> vlanBindings);
 
-
-    @TypedColumn(name="acl_bindings", method=MethodType.GETCOLUMN, fromVersion="1.4.0")
+    @TypedColumn(name = "acl_bindings", method = MethodType.GETCOLUMN, fromVersion = "1.4.0")
     Column<GenericTableSchema, Map<Long, UUID>> getAclBindingsColumn();
 
-    @TypedColumn(name="acl_bindings", method=MethodType.SETDATA, fromVersion="1.4.0")
+    @TypedColumn(name = "acl_bindings", method = MethodType.SETDATA, fromVersion = "1.4.0")
     void setAclBindings(Map<Long, UUID> aclBindings);
 
-
-    @TypedColumn(name="vlan_stats", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "vlan_stats", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<Long, UUID>> getVlanStatsColumn();
 
-    @TypedColumn(name="vlan_stats", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "vlan_stats", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setVlanStats(Map<Long, UUID> vlanStats);
 
-
-    @TypedColumn(name="other_config", method=MethodType.GETCOLUMN, fromVersion="1.5.1")
+    @TypedColumn(name = "other_config", method = MethodType.GETCOLUMN, fromVersion = "1.5.1")
     Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn();
 
-    @TypedColumn(name="other_config", method=MethodType.SETDATA, fromVersion="1.5.1")
+    @TypedColumn(name = "other_config", method = MethodType.SETDATA, fromVersion = "1.5.1")
     void setOtherConfig(Map<String, String> otherConfig);
 
-
-    @TypedColumn(name="port_fault_status", method=MethodType.GETCOLUMN, fromVersion="1.1.0")
+    @TypedColumn(name = "port_fault_status", method = MethodType.GETCOLUMN, fromVersion = "1.1.0")
     Column<GenericTableSchema, Set<String>> getPortFaultStatusColumn();
 
-    @TypedColumn(name="port_fault_status", method=MethodType.SETDATA, fromVersion="1.1.0")
+    @TypedColumn(name = "port_fault_status", method = MethodType.SETDATA, fromVersion = "1.1.0")
     void setPortFaultStatus(Set<String> portFaultStatus);
 }
index b6bd300e5ba1c95b9bbd82ea2fd0889bde6c7c22..c4756673be9662185713e33c382a28a0d9bed93d 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.ovsdb.schema.hardwarevtep;
 
 import java.util.Map;
 import java.util.Set;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.notation.UUID;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
@@ -19,66 +18,59 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-@TypedTable(name="Physical_Switch", database="hardware_vtep", fromVersion="1.0.0")
+@TypedTable(name = "Physical_Switch", database = "hardware_vtep", fromVersion = "1.0.0")
 public interface PhysicalSwitch extends TypedBaseTable<GenericTableSchema> {
-    @TypedColumn(name="name", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getNameColumn();
 
-    @TypedColumn(name="name", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getName();
 
-    @TypedColumn(name="name", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setName(String name);
 
-
-    @TypedColumn(name="description", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "description", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getDescriptionColumn();
 
-    @TypedColumn(name="description", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "description", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getDescription();
 
-    @TypedColumn(name="description", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "description", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setDescription(String description);
 
-
-    @TypedColumn(name="ports", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "ports", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<UUID>> getPortsColumn();
 
-    @TypedColumn(name="ports", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "ports", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setPorts(Set<UUID> ports);
 
-
-    @TypedColumn(name="management_ips", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "management_ips", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<String>> getManagementIpsColumn();
 
-    @TypedColumn(name="management_ips", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "management_ips", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setManagementIps(Set<String> managementIps);
 
-
-    @TypedColumn(name="tunnel_ips", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "tunnel_ips", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<String>> getTunnelIpsColumn();
 
-    @TypedColumn(name="tunnel_ips", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "tunnel_ips", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setTunnelIps(Set<String> tunnelIps);
 
-
-    @TypedColumn(name="tunnels", method=MethodType.GETCOLUMN, fromVersion="1.3.0")
+    @TypedColumn(name = "tunnels", method = MethodType.GETCOLUMN, fromVersion = "1.3.0")
     Column<GenericTableSchema, Set<UUID>> getTunnels();
 
-    @TypedColumn(name="tunnels", method=MethodType.SETDATA, fromVersion="1.3.0")
+    @TypedColumn(name = "tunnels", method = MethodType.SETDATA, fromVersion = "1.3.0")
     void setTunnels(Set<UUID> tunnels);
 
-
-    @TypedColumn(name="other_config", method=MethodType.GETCOLUMN, fromVersion="1.5.1")
+    @TypedColumn(name = "other_config", method = MethodType.GETCOLUMN, fromVersion = "1.5.1")
     Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn();
 
-    @TypedColumn(name="other_config", method=MethodType.SETDATA, fromVersion="1.5.1")
+    @TypedColumn(name = "other_config", method = MethodType.SETDATA, fromVersion = "1.5.1")
     void setOtherConfig(Map<String, String> otherConfig);
 
-
-    @TypedColumn(name="switch_fault_status", method=MethodType.GETCOLUMN, fromVersion="1.1.0")
+    @TypedColumn(name = "switch_fault_status", method = MethodType.GETCOLUMN, fromVersion = "1.1.0")
     Column<GenericTableSchema, Set<String>> getSwitchFaultStatusColumn();
 
-    @TypedColumn(name="switch_fault_status", method=MethodType.SETDATA, fromVersion="1.1.0")
+    @TypedColumn(name = "switch_fault_status", method = MethodType.SETDATA, fromVersion = "1.1.0")
     void setSwitchFaultStatus(Set<String> switchFaultStatus);
 }
index a235fcefa39b0b6111cc8e8cf86a01e81a0b9a1f..dd1510317d2b93555f32b973ebff5d5d3e08617d 100644 (file)
@@ -9,7 +9,6 @@
 package org.opendaylight.ovsdb.schema.hardwarevtep;
 
 import java.util.Map;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.notation.UUID;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
@@ -18,41 +17,41 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-@TypedTable(name="Tunnel", database="hardware_vtep", fromVersion="1.3.0")
+@TypedTable(name = "Tunnel", database = "hardware_vtep", fromVersion = "1.3.0")
 public interface Tunnel extends TypedBaseTable<GenericTableSchema> {
-    @TypedColumn(name="local", method=MethodType.GETCOLUMN, fromVersion="1.3.0")
+    @TypedColumn(name = "local", method = MethodType.GETCOLUMN, fromVersion = "1.3.0")
     Column<GenericTableSchema, UUID> getLocalColumn();
 
-    @TypedColumn(name="local", method=MethodType.SETDATA, fromVersion="1.3.0")
+    @TypedColumn(name = "local", method = MethodType.SETDATA, fromVersion = "1.3.0")
     void setLocal(UUID local);
 
-    @TypedColumn(name="remote", method=MethodType.GETCOLUMN, fromVersion="1.3.0")
+    @TypedColumn(name = "remote", method = MethodType.GETCOLUMN, fromVersion = "1.3.0")
     Column<GenericTableSchema, UUID> getRemoteColumn();
 
-    @TypedColumn(name="remote", method=MethodType.SETDATA, fromVersion="1.3.0")
+    @TypedColumn(name = "remote", method = MethodType.SETDATA, fromVersion = "1.3.0")
     void setRemote(UUID remote);
 
-    @TypedColumn(name="bfd_config_local", method=MethodType.GETCOLUMN, fromVersion="1.3.0")
+    @TypedColumn(name = "bfd_config_local", method = MethodType.GETCOLUMN, fromVersion = "1.3.0")
     Column<GenericTableSchema, Map<String, String>> getBfdConfigLocalColumn();
 
-    @TypedColumn(name="bfd_config_local", method=MethodType.SETDATA, fromVersion="1.3.0")
+    @TypedColumn(name = "bfd_config_local", method = MethodType.SETDATA, fromVersion = "1.3.0")
     void setBfdConfigLocal(Map<String, String> bfdConfigLocal);
 
-    @TypedColumn(name="bfd_config_remote", method=MethodType.GETCOLUMN, fromVersion="1.3.0")
+    @TypedColumn(name = "bfd_config_remote", method = MethodType.GETCOLUMN, fromVersion = "1.3.0")
     Column<GenericTableSchema, Map<String, String>> getBfdConfigRemoteColumn();
 
-    @TypedColumn(name="bfd_config_remote", method=MethodType.SETDATA, fromVersion="1.3.0")
+    @TypedColumn(name = "bfd_config_remote", method = MethodType.SETDATA, fromVersion = "1.3.0")
     void setBfdConfigRemote(Map<String, String> bfdConfigRemote);
 
-    @TypedColumn(name="bfd_params", method=MethodType.GETCOLUMN, fromVersion="1.3.0")
+    @TypedColumn(name = "bfd_params", method = MethodType.GETCOLUMN, fromVersion = "1.3.0")
     Column<GenericTableSchema, Map<String, String>> getBfdParamsColumn();
 
-    @TypedColumn(name="bfd_params", method=MethodType.SETDATA, fromVersion="1.3.0")
+    @TypedColumn(name = "bfd_params", method = MethodType.SETDATA, fromVersion = "1.3.0")
     void setBfdParams(Map<String, String> bfdParams);
 
-    @TypedColumn(name="bfd_status", method=MethodType.GETCOLUMN, fromVersion="1.3.0")
+    @TypedColumn(name = "bfd_status", method = MethodType.GETCOLUMN, fromVersion = "1.3.0")
     Column<GenericTableSchema, Map<String, String>> getBfdStatusColumn();
 
-    @TypedColumn(name="bfd_status", method=MethodType.SETDATA, fromVersion="1.3.0")
+    @TypedColumn(name = "bfd_status", method = MethodType.SETDATA, fromVersion = "1.3.0")
     void setBfdStatus(Map<String, String> bfdStatus);
 }
index 5387a94fa933490ed4d82b70932a94b77394fd9f..d3e9ea31a4cb28ab9ca42fe243b6ff96c7a7ea88 100644 (file)
@@ -16,37 +16,35 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-@TypedTable(name="Ucast_Macs_Local", database="hardware_vtep", fromVersion="1.0.0")
+@TypedTable(name = "Ucast_Macs_Local", database = "hardware_vtep", fromVersion = "1.0.0")
 public interface UcastMacsLocal extends TypedBaseTable<GenericTableSchema> {
-    @TypedColumn(name="MAC", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "MAC", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getMacColumn();
 
-    @TypedColumn(name="MAC", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "MAC", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getMac();
 
-    @TypedColumn(name="MAC", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "MAC", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setMac(String mac);
 
-
-    @TypedColumn(name="logical_switch", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "logical_switch", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, UUID> getLogicalSwitchColumn();
 
-    @TypedColumn(name="logical_switch", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "logical_switch", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setLogicalSwitch(UUID logicalSwitch);
 
-    @TypedColumn(name="locator", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "locator", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, UUID> getLocatorColumn();
 
-    @TypedColumn(name="locator", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "locator", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setLocator(UUID locator);
 
-
-    @TypedColumn(name="ipaddr", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "ipaddr", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getIpAddrColumn();
 
-    @TypedColumn(name="ipaddr", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "ipaddr", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getIpAddr();
 
-    @TypedColumn(name="ipaddr", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "ipaddr", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setIpAddress(String ipAddr);
 }
index 3eb94e08d5d319c7e310cb2ab8da435a26b9ae54..aea2a272d8f72b46074ad5d986de1e11957fede8 100644 (file)
@@ -16,37 +16,35 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-@TypedTable(name="Ucast_Macs_Remote", database="hardware_vtep", fromVersion="1.0.0")
+@TypedTable(name = "Ucast_Macs_Remote", database = "hardware_vtep", fromVersion = "1.0.0")
 public interface UcastMacsRemote extends TypedBaseTable<GenericTableSchema> {
-    @TypedColumn(name="MAC", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "MAC", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getMacColumn();
 
-    @TypedColumn(name="MAC", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "MAC", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getMac();
 
-    @TypedColumn(name="MAC", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "MAC", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setMac(String mac);
 
-
-    @TypedColumn(name="logical_switch", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "logical_switch", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, UUID> getLogicalSwitchColumn();
 
-    @TypedColumn(name="logical_switch", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "logical_switch", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setLogicalSwitch(UUID logicalSwitch);
 
-    @TypedColumn(name="locator", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "locator", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, UUID> getLocatorColumn();
 
-    @TypedColumn(name="locator", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "locator", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setLocator(UUID locator);
 
-
-    @TypedColumn(name="ipaddr", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "ipaddr", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getIpAddrColumn();
 
-    @TypedColumn(name="ipaddr", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "ipaddr", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getIpAddr();
 
-    @TypedColumn(name="ipaddr", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "ipaddr", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setIpAddress(String ipAddr);
 }
index 306454ac76b35613f728f98596f96d4a6b9ff039..4333baa9c582b02aae9b67cf9784f906ca8e54a0 100644 (file)
@@ -13,7 +13,7 @@ import org.junit.Test;
 
 public class HardwareVTEPTest {
     @Test
-    public void setManagersTest () {
+    public void setManagersTest() {
         assertTrue(true);
     }
 }
index 926267319a34f026173d939887ce533b254c7dba..2d4958fb34a057bd640f88bb4e9d1baa52d9a0b5 100644 (file)
@@ -9,7 +9,6 @@
 package org.opendaylight.ovsdb.schema.openvswitch;
 
 import java.util.Map;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.notation.UUID;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
@@ -19,7 +18,7 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
 /**
- * This class is a typed interface to the Flow_Sample_Collector_Set Table
+ * This class is a typed interface to the Flow_Sample_Collector_Set Table.
  */
 @TypedTable(name = "Flow_Sample_Collector_Set", database = "Open_vSwitch", fromVersion = "7.1.0")
 public interface FlowSampleCollectorSet extends TypedBaseTable<GenericTableSchema> {
index 09b74ce8b6f3f64393af3c0ee27523297351deb7..52b11a12d7105ac21c491ca2c6ff688ca8420706 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.ovsdb.schema.openvswitch;
 
 import java.util.Map;
 import java.util.Set;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
 import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
@@ -19,7 +18,7 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
 /**
- * This class is a typed interface to the Flow_Table Table
+ * This class is a typed interface to the Flow_Table Table.
  */
 @TypedTable(name = "Flow_Table", database = "Open_vSwitch", fromVersion = "6.5.0")
 public interface FlowTable extends TypedBaseTable<GenericTableSchema> {
index a33715932364e54c37312d5263f9d2ac11a8fcf0..929757ecdad6241174041fbc263cf01780d30dbd 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.ovsdb.schema.openvswitch;
 
 import java.util.Map;
 import java.util.Set;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
 import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
@@ -19,43 +18,52 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
 /**
- * This class is a typed interface to the IPFIX Table
+ * This class is a typed interface to the IPFIX Table.
  */
-@TypedTable(name="IPFIX", database="Open_vSwitch", fromVersion="7.1.0")
+@TypedTable(name = "IPFIX", database = "Open_vSwitch", fromVersion = "7.1.0")
+@SuppressWarnings("checkstyle:AbbreviationAsWordInName")
 public interface IPFIX extends TypedBaseTable<GenericTableSchema> {
 
-    @TypedColumn(name="targets", method=MethodType.GETCOLUMN, fromVersion="7.1.0")
+    @TypedColumn(name = "targets", method = MethodType.GETCOLUMN, fromVersion = "7.1.0")
     Column<GenericTableSchema, Set<String>> getTargetsColumn();
-    @TypedColumn(name="targets", method=MethodType.SETDATA, fromVersion="7.1.0")
+
+    @TypedColumn(name = "targets", method = MethodType.SETDATA, fromVersion = "7.1.0")
     void setTargets(Set<String> targets);
 
-    @TypedColumn(name="sampling", method=MethodType.GETCOLUMN, fromVersion="7.1.0")
+    @TypedColumn(name = "sampling", method = MethodType.GETCOLUMN, fromVersion = "7.1.0")
     Column<GenericTableSchema, Set<Long>> getSamplingColumn();
-    @TypedColumn(name="sampling", method=MethodType.SETDATA, fromVersion="7.1.0")
+
+    @TypedColumn(name = "sampling", method = MethodType.SETDATA, fromVersion = "7.1.0")
     void setSampling(Set<Long> sampling);
 
-    @TypedColumn(name="obs_domain_id", method=MethodType.GETCOLUMN, fromVersion="7.1.0")
+    @TypedColumn(name = "obs_domain_id", method = MethodType.GETCOLUMN, fromVersion = "7.1.0")
     Column<GenericTableSchema, Set<Long>> getObsDomainIdColumn();
-    @TypedColumn(name="obs_domain_id", method=MethodType.SETDATA, fromVersion="7.1.0")
+
+    @TypedColumn(name = "obs_domain_id", method = MethodType.SETDATA, fromVersion = "7.1.0")
+    @SuppressWarnings("checkstyle:ParameterName")
     void setObsDomainId(Set<Long> obs_domain_id);
 
-    @TypedColumn(name="obs_point_id", method=MethodType.GETCOLUMN, fromVersion="7.1.0")
+    @TypedColumn(name = "obs_point_id", method = MethodType.GETCOLUMN, fromVersion = "7.1.0")
     Column<GenericTableSchema, Set<Long>> getObsPointIdColumn();
-    @TypedColumn(name="obs_point_id", method=MethodType.SETDATA, fromVersion="7.1.0")
+
+    @TypedColumn(name = "obs_point_id", method = MethodType.SETDATA, fromVersion = "7.1.0")
     void setObsPointId(Set<Long> obsPointId);
 
-    @TypedColumn(name="cache_active_timeout", method=MethodType.GETCOLUMN, fromVersion="7.3.0")
+    @TypedColumn(name = "cache_active_timeout", method = MethodType.GETCOLUMN, fromVersion = "7.3.0")
     Column<GenericTableSchema, Set<Long>> getCacheActiveTimeoutColumn();
-    @TypedColumn(name="cache_active_timeout", method=MethodType.SETDATA, fromVersion="7.3.0")
+
+    @TypedColumn(name = "cache_active_timeout", method = MethodType.SETDATA, fromVersion = "7.3.0")
     void setCacheActiveTimeout(Set<Long> cacheActiveTimeout);
 
-    @TypedColumn(name="cache_max_flows", method=MethodType.GETCOLUMN, fromVersion="7.3.0")
+    @TypedColumn(name = "cache_max_flows", method = MethodType.GETCOLUMN, fromVersion = "7.3.0")
     Column<GenericTableSchema, Set<Long>> getCacheMaxFlowsColumn();
-    @TypedColumn(name="cache_max_flows", method=MethodType.SETDATA, fromVersion="7.3.0")
+
+    @TypedColumn(name = "cache_max_flows", method = MethodType.SETDATA, fromVersion = "7.3.0")
     void setCacheMaxFlows(Set<Long> cacheMaxFlows);
 
-    @TypedColumn(name="external_ids", method=MethodType.GETCOLUMN, fromVersion="7.1.0")
+    @TypedColumn(name = "external_ids", method = MethodType.GETCOLUMN, fromVersion = "7.1.0")
     Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn();
-    @TypedColumn(name="external_ids", method=MethodType.SETDATA, fromVersion="7.1.0")
+
+    @TypedColumn(name = "external_ids", method = MethodType.SETDATA, fromVersion = "7.1.0")
     void setExternalIds(Map<String, String> externalIds);
-}
\ No newline at end of file
+}
index 114cc06b6dac2c85f60bf42a14a3876d5cf24b8c..52723cdd26a9e64845942557dcacdc6ac166e300 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.ovsdb.schema.openvswitch;
 
 import java.util.Map;
 import java.util.Set;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
 import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
@@ -19,181 +18,215 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
 /**
- * This class is a typed interface to the Bridge Table
+ * This class is a typed interface to the Bridge Table.
  */
-@TypedTable(name="Interface", database="Open_vSwitch", fromVersion="1.0.0")
+@TypedTable(name = "Interface", database = "Open_vSwitch", fromVersion = "1.0.0")
 public interface Interface extends TypedBaseTable<GenericTableSchema> {
 
-    @TypedColumn(name="name", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getNameColumn();
-    @TypedColumn(name="name", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "name", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setName(String name);
-    @TypedColumn(name="name", method=MethodType.GETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "name", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getName();
 
-    @TypedColumn(name="type", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "type", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getTypeColumn();
-    @TypedColumn(name="type", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "type", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setType(String type);
 
-    @TypedColumn(name="options", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "options", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, String>> getOptionsColumn();
-    @TypedColumn(name="options", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "options", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setOptions(Map<String, String> options);
 
-    @TypedColumn(name="ingress_policing_rate", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "ingress_policing_rate", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Long> getIngressPolicingRateColumn();
-    @TypedColumn(name="ingress_policing_rate", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "ingress_policing_rate", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setIngressPolicingRate(Long ingressPolicingRate);
 
-    @TypedColumn(name="ingress_policing_burst", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "ingress_policing_burst", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Long> getIngressPolicingBurstColumn();
-    @TypedColumn(name="ingress_policing_burst", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "ingress_policing_burst", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setIngressPolicingBurst(Long ingressPolicingBurst);
 
-    @TypedColumn(name="mac_in_use", method=MethodType.GETCOLUMN, fromVersion="7.1.0")
-    Column<GenericTableSchema,Set<String>> getMacInUseColumn();
-    @TypedColumn(name="mac_in_use", method=MethodType.SETDATA, fromVersion="7.1.0")
+    @TypedColumn(name = "mac_in_use", method = MethodType.GETCOLUMN, fromVersion = "7.1.0")
+    Column<GenericTableSchema, Set<String>> getMacInUseColumn();
+
+    @TypedColumn(name = "mac_in_use", method = MethodType.SETDATA, fromVersion = "7.1.0")
     void setMacInUse(Set<String> macInUse);
 
-    @TypedColumn(name="mac", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "mac", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<String>> getMacColumn();
-    @TypedColumn(name="mac", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "mac", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setMac(Set<String> mac);
 
-    @TypedColumn(name="ifindex", method=MethodType.GETCOLUMN, fromVersion="7.2.1")
+    @TypedColumn(name = "ifindex", method = MethodType.GETCOLUMN, fromVersion = "7.2.1")
     Column<GenericTableSchema, Set<Long>> getIfIndexColumn();
-    @TypedColumn(name="ifindex", method=MethodType.SETDATA, fromVersion="7.2.1")
+
+    @TypedColumn(name = "ifindex", method = MethodType.SETDATA, fromVersion = "7.2.1")
     void setIfIndex(Set<Long> ifIndex);
 
-    @TypedColumn(name="external_ids", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "external_ids", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn();
-    @TypedColumn(name="external_ids", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "external_ids", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setExternalIds(Map<String, String> externalIds);
 
-    @TypedColumn(name="ofport", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "ofport", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getOpenFlowPortColumn();
-    @TypedColumn(name="ofport", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "ofport", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setOpenFlowPort(Set<Long> openFlowPort);
 
-    @TypedColumn(name="ofport_request", method=MethodType.GETCOLUMN, fromVersion="6.2.0")
+    @TypedColumn(name = "ofport_request", method = MethodType.GETCOLUMN, fromVersion = "6.2.0")
     Column<GenericTableSchema, Set<Long>> getOpenFlowPortRequestColumn();
-    @TypedColumn(name="ofport_request", method=MethodType.SETDATA, fromVersion="6.2.0")
+
+    @TypedColumn(name = "ofport_request", method = MethodType.SETDATA, fromVersion = "6.2.0")
     void setOpenFlowPortRequest(Set<Long> openFlowPortRequest);
 
-    @TypedColumn(name="bfd", method=MethodType.GETCOLUMN, fromVersion="7.2.0")
+    @TypedColumn(name = "bfd", method = MethodType.GETCOLUMN, fromVersion = "7.2.0")
     Column<GenericTableSchema, Map<String, String>> getBfdColumn();
-    @TypedColumn(name="bfd", method=MethodType.SETDATA, fromVersion="7.2.0")
+
+    @TypedColumn(name = "bfd", method = MethodType.SETDATA, fromVersion = "7.2.0")
     void setBfd(Map<String, String> bfd);
 
-    @TypedColumn(name="bfd_status", method=MethodType.GETCOLUMN, fromVersion="7.2.0")
+    @TypedColumn(name = "bfd_status", method = MethodType.GETCOLUMN, fromVersion = "7.2.0")
     Column<GenericTableSchema, Map<String, String>> getBfdStatusColumn();
-    @TypedColumn(name="bfd_status", method=MethodType.SETDATA, fromVersion="7.2.0")
+
+    @TypedColumn(name = "bfd_status", method = MethodType.SETDATA, fromVersion = "7.2.0")
     void setBfdStatus(Map<String, String> bfdStatus);
 
-    @TypedColumn(name="monitor", method=MethodType.GETCOLUMN, fromVersion="1.0.0", untilVersion="3.5.0")
+    @TypedColumn(name = "monitor", method = MethodType.GETCOLUMN, fromVersion = "1.0.0", untilVersion = "3.5.0")
     Column<GenericTableSchema, String> getMonitorColumn();
-    @TypedColumn(name="monitor", method=MethodType.SETDATA, fromVersion="1.0.0", untilVersion="3.5.0")
+
+    @TypedColumn(name = "monitor", method = MethodType.SETDATA, fromVersion = "1.0.0", untilVersion = "3.5.0")
     void setMonitor(String monitor);
 
-    @TypedColumn(name="cfm_mpid", method=MethodType.GETCOLUMN, fromVersion="4.0.0")
+    @TypedColumn(name = "cfm_mpid", method = MethodType.GETCOLUMN, fromVersion = "4.0.0")
     Column<GenericTableSchema, Set<Long>> getCfmMpidColumn();
-    @TypedColumn(name="cfm_mpid", method=MethodType.SETDATA)
+
+    @TypedColumn(name = "cfm_mpid", method = MethodType.SETDATA)
     void setCfmMpid(Set<Long> cfmMpid);
 
-    @TypedColumn(name="cfm_remote_mpid", method=MethodType.GETCOLUMN, fromVersion="4.0.0", untilVersion="5.2.0")
+    @TypedColumn(name = "cfm_remote_mpid", method = MethodType.GETCOLUMN, fromVersion = "4.0.0", untilVersion = "5.2.0")
     Column<GenericTableSchema, Set<Long>> getCfmRemoteMpidColumn();
-    @TypedColumn(name="cfm_remote_mpid", method=MethodType.SETDATA, fromVersion="4.0.0", untilVersion="5.2.0")
+
+    @TypedColumn(name = "cfm_remote_mpid", method = MethodType.SETDATA, fromVersion = "4.0.0", untilVersion = "5.2.0")
     void setCfmRemoteMpid(Set<Long> cfmRemoteMpid);
 
-    @TypedColumn(name="cfm_remote_mpids", method=MethodType.GETCOLUMN, fromVersion="6.0.0")
+    @TypedColumn(name = "cfm_remote_mpids", method = MethodType.GETCOLUMN, fromVersion = "6.0.0")
     Column<GenericTableSchema, Set<Long>> getCfmRemoteMpidsColumn();
-    @TypedColumn(name="cfm_remote_mpids", method=MethodType.SETDATA, fromVersion="6.0.0")
+
+    @TypedColumn(name = "cfm_remote_mpids", method = MethodType.SETDATA, fromVersion = "6.0.0")
     void setCfmRemoteMpids(Set<Long> cfmRemoteMpids);
 
-    @TypedColumn(name="cfm_flap_count", method=MethodType.GETCOLUMN, fromVersion="7.3.0")
+    @TypedColumn(name = "cfm_flap_count", method = MethodType.GETCOLUMN, fromVersion = "7.3.0")
     Column<GenericTableSchema, Set<Long>> getCfmFlapCountColumn();
-    @TypedColumn(name="cfm_flap_count", method=MethodType.SETDATA, fromVersion="7.3.0")
+
+    @TypedColumn(name = "cfm_flap_count", method = MethodType.SETDATA, fromVersion = "7.3.0")
     void setCfmFlapCount(Set<Long> cfmFlapCount);
 
-    @TypedColumn(name="cfm_fault", method=MethodType.GETCOLUMN, fromVersion="4.0.0")
+    @TypedColumn(name = "cfm_fault", method = MethodType.GETCOLUMN, fromVersion = "4.0.0")
     Column<GenericTableSchema, Set<Boolean>> getCfmFaultColumn();
-    @TypedColumn(name="cfm_fault", method=MethodType.SETDATA, fromVersion="4.0.0")
+
+    @TypedColumn(name = "cfm_fault", method = MethodType.SETDATA, fromVersion = "4.0.0")
     void setCfmFault(Set<Boolean> cfmFault);
 
-    @TypedColumn(name="cfm_fault_status", method=MethodType.GETCOLUMN, fromVersion="6.6.0")
+    @TypedColumn(name = "cfm_fault_status", method = MethodType.GETCOLUMN, fromVersion = "6.6.0")
     Column<GenericTableSchema, Set<String>> getCfmFaultStatusColumn();
-    @TypedColumn(name="cfm_fault_status", method=MethodType.SETDATA, fromVersion="6.6.0")
+
+    @TypedColumn(name = "cfm_fault_status", method = MethodType.SETDATA, fromVersion = "6.6.0")
     void setCfmFaultStatus(Set<String> cfmFaultStatus);
 
-    @TypedColumn(name="cfm_remote_opstate", method=MethodType.GETCOLUMN, fromVersion="6.10.0")
+    @TypedColumn(name = "cfm_remote_opstate", method = MethodType.GETCOLUMN, fromVersion = "6.10.0")
     Column<GenericTableSchema, Set<String>> getCfmRemoteOpStateColumn();
-    @TypedColumn(name="cfm_remote_opstate", method=MethodType.SETDATA, fromVersion="6.10.0")
+
+    @TypedColumn(name = "cfm_remote_opstate", method = MethodType.SETDATA, fromVersion = "6.10.0")
     void setCfmRemoteOpState(Set<String> cfmRemoteOpState);
 
-    @TypedColumn(name="cfm_health", method=MethodType.GETCOLUMN, fromVersion="6.9.0")
+    @TypedColumn(name = "cfm_health", method = MethodType.GETCOLUMN, fromVersion = "6.9.0")
     Column<GenericTableSchema, Set<Long>> getCfmHealthColumn();
-    @TypedColumn(name="cfmHealth", method=MethodType.SETDATA, fromVersion="6.9.0")
+
+    @TypedColumn(name = "cfmHealth", method = MethodType.SETDATA, fromVersion = "6.9.0")
     void setCfmHealth(Set<Long> cfmHealth);
 
-    @TypedColumn(name="lacp_current", method=MethodType.GETCOLUMN, fromVersion="3.3.0")
+    @TypedColumn(name = "lacp_current", method = MethodType.GETCOLUMN, fromVersion = "3.3.0")
     Column<GenericTableSchema, Set<Boolean>> getLacpCurrentColumn();
-    @TypedColumn(name="lacp_current", method=MethodType.SETDATA, fromVersion="3.3.0")
+
+    @TypedColumn(name = "lacp_current", method = MethodType.SETDATA, fromVersion = "3.3.0")
     void setLacpCurrent(Set<Boolean> lacpCurrent);
 
-    @TypedColumn(name="other_config", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "other_config", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn();
-    @TypedColumn(name="other_config", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "other_config", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setOtherConfig(Map<String, String> otherConfig);
 
-    @TypedColumn(name="statistics", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "statistics", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, Long>> getStatisticsColumn();
-    @TypedColumn(name="statistics", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "statistics", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setStatistics(Map<String, Long> statistics);
 
-    @TypedColumn(name="status", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "status", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, String>> getStatusColumn();
-    @TypedColumn(name="status", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "status", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setStatus(Map<String, String> status);
 
-    @TypedColumn(name="admin_state", method=MethodType.GETCOLUMN, fromVersion="1.0.6")
+    @TypedColumn(name = "admin_state", method = MethodType.GETCOLUMN, fromVersion = "1.0.6")
     Column<GenericTableSchema, Set<String>> getAdminStateColumn();
-    @TypedColumn(name="admin_state", method=MethodType.SETDATA, fromVersion="1.0.6")
+
+    @TypedColumn(name = "admin_state", method = MethodType.SETDATA, fromVersion = "1.0.6")
     void setAdminState(Set<String> adminState);
 
-    @TypedColumn(name="link_state", method=MethodType.GETCOLUMN, fromVersion="1.0.6")
+    @TypedColumn(name = "link_state", method = MethodType.GETCOLUMN, fromVersion = "1.0.6")
     Column<GenericTableSchema, Map<String, String>> getLinkStateColumn();
-    @TypedColumn(name="link_state", method=MethodType.SETDATA, fromVersion="1.0.6")
+
+    @TypedColumn(name = "link_state", method = MethodType.SETDATA, fromVersion = "1.0.6")
     void setLinkState(Map<String, String> linkState);
 
-    @TypedColumn(name="link_resets", method=MethodType.GETCOLUMN, fromVersion="6.2.0")
+    @TypedColumn(name = "link_resets", method = MethodType.GETCOLUMN, fromVersion = "6.2.0")
     Column<GenericTableSchema, Set<String>> getLinkResetsColumn();
-    @TypedColumn(name="link_resets", method=MethodType.SETDATA, fromVersion="6.2.0")
+
+    @TypedColumn(name = "link_resets", method = MethodType.SETDATA, fromVersion = "6.2.0")
     void setLinkResets(Set<String> linkResets);
 
-    @TypedColumn(name="link_speed", method=MethodType.GETCOLUMN, fromVersion="1.0.6")
+    @TypedColumn(name = "link_speed", method = MethodType.GETCOLUMN, fromVersion = "1.0.6")
     Column<GenericTableSchema, Set<Long>> getLinkSpeedColumn();
-    @TypedColumn(name="link_speed", method=MethodType.SETDATA, fromVersion="1.0.6")
+
+    @TypedColumn(name = "link_speed", method = MethodType.SETDATA, fromVersion = "1.0.6")
     void setLinkSpeed(Set<Long> linkSpeed);
 
-    @TypedColumn(name="duplex", method=MethodType.GETCOLUMN, fromVersion="1.0.6")
+    @TypedColumn(name = "duplex", method = MethodType.GETCOLUMN, fromVersion = "1.0.6")
     Column<GenericTableSchema, Set<String>> getDuplexColumn();
-    @TypedColumn(name="duplex", method=MethodType.SETDATA, fromVersion="1.0.6")
+
+    @TypedColumn(name = "duplex", method = MethodType.SETDATA, fromVersion = "1.0.6")
     void setDuplex(Set<Long> duplex);
 
-    @TypedColumn(name="mtu", method=MethodType.GETCOLUMN, fromVersion="1.0.6")
+    @TypedColumn(name = "mtu", method = MethodType.GETCOLUMN, fromVersion = "1.0.6")
     Column<GenericTableSchema, Set<Long>> getMtuColumn();
-    @TypedColumn(name="mtu", method=MethodType.SETDATA, fromVersion="1.0.6")
+
+    @TypedColumn(name = "mtu", method = MethodType.SETDATA, fromVersion = "1.0.6")
     void setMtu(Set<Long> mtu);
 
-    @TypedColumn(name="error", method=MethodType.GETCOLUMN, fromVersion="7.7.0")
+    @TypedColumn(name = "error", method = MethodType.GETCOLUMN, fromVersion = "7.7.0")
     Column<GenericTableSchema, Set<String>> getErrorColumn();
-    @TypedColumn(name="error", method=MethodType.SETDATA, fromVersion="7.7.0")
+
+    @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")
+    @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);
 
+    @TypedColumn(name = "lldp", method = MethodType.SETDATA, fromVersion = "7.11.2")
+    void setLldp(Map<String, String> lldp);
 }
index fab409aa77525f00e44fd8f6bb71eb5a70c6646f..81c98b6d3ebb42d6070b300eb050c4f8af9d6efd 100644 (file)
@@ -8,6 +8,8 @@
 
 package org.opendaylight.ovsdb.schema.openvswitch;
 
+import java.util.Map;
+import java.util.Set;
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
 import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
@@ -15,60 +17,57 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-import java.util.Map;
-import java.util.Set;
-
 /**
- * This class is a typed interface to the Manager Table
+ * This class is a typed interface to the Manager Table.
  */
-@TypedTable (name="Manager", database="Open_vSwitch", fromVersion = "1.0.0")
+@TypedTable(name = "Manager", database = "Open_vSwitch", fromVersion = "1.0.0")
 public interface Manager extends TypedBaseTable<GenericTableSchema> {
 
-    @TypedColumn (name="target", method= MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    @TypedColumn(name = "target", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getTargetColumn();
 
-    @TypedColumn (name="target", method= MethodType.SETDATA, fromVersion = "1.0.0")
-    void setTarget(String target) ;
+    @TypedColumn(name = "target", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setTarget(String target);
 
-    @TypedColumn (name = "is_connected", method = MethodType.GETCOLUMN, fromVersion = "1.1.0")
+    @TypedColumn(name = "is_connected", method = MethodType.GETCOLUMN, fromVersion = "1.1.0")
     Column<GenericTableSchema, Boolean> getIsConnectedColumn();
 
-    @TypedColumn (name = "is_connected", method = MethodType.SETDATA, fromVersion = "1.1.0")
+    @TypedColumn(name = "is_connected", method = MethodType.SETDATA, fromVersion = "1.1.0")
     void setIsConnected(Boolean isConnected);
 
-    @TypedColumn (name = "other_config", method = MethodType.GETCOLUMN, fromVersion = "6.8.0")
+    @TypedColumn(name = "other_config", method = MethodType.GETCOLUMN, fromVersion = "6.8.0")
     Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn();
 
-    @TypedColumn (name = "other_config", method = MethodType.SETDATA, fromVersion = "6.8.0")
+    @TypedColumn(name = "other_config", method = MethodType.SETDATA, fromVersion = "6.8.0")
     void setOtherConfig(Map<String, String> otherConfig);
 
-    @TypedColumn (name = "external_ids", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    @TypedColumn(name = "external_ids", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn();
 
-    @TypedColumn (name = "external_ids", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    @TypedColumn(name = "external_ids", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setExternalIds(Map<String, String> externalIds);
 
-    @TypedColumn (name = "max_backoff", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    @TypedColumn(name = "max_backoff", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getMaxBackoffColumn();
 
-    @TypedColumn (name = "max_backoff", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    @TypedColumn(name = "max_backoff", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setMaxBackoff(Set<Long> maxBackoff);
 
-    @TypedColumn (name = "status", method = MethodType.GETCOLUMN, fromVersion = "1.1.0")
+    @TypedColumn(name = "status", method = MethodType.GETCOLUMN, fromVersion = "1.1.0")
     Column<GenericTableSchema, Map<String, String>> getStatusColumn();
 
-    @TypedColumn (name = "status", method = MethodType.SETDATA, fromVersion = "1.1.0")
+    @TypedColumn(name = "status", method = MethodType.SETDATA, fromVersion = "1.1.0")
     void setStatus(Map<String, String> status);
 
-    @TypedColumn (name = "inactivity_probe", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    @TypedColumn(name = "inactivity_probe", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getInactivityProbeColumn();
 
-    @TypedColumn (name = "inactivity_probe", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    @TypedColumn(name = "inactivity_probe", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setInactivityProbe(Set<Long> inactivityProbe);
 
-    @TypedColumn (name = "connection_mode", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    @TypedColumn(name = "connection_mode", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<String>> getConnectionModeColumn();
 
-    @TypedColumn (name = "connection_mode", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    @TypedColumn(name = "connection_mode", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setConnectionMode(Set<String> connectionMode);
-}
\ No newline at end of file
+}
index 289b6dc85d2d563170869d4b64c7f1ac0485fd79..021c39e5cb7a1a81604b8935fd5e1566c8521d49 100644 (file)
@@ -8,6 +8,8 @@
 
 package org.opendaylight.ovsdb.schema.openvswitch;
 
+import java.util.Map;
+import java.util.Set;
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.notation.UUID;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
@@ -16,69 +18,66 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-import java.util.Map;
-import java.util.Set;
-
 /**
- * This class is a typed interface to the Mirror Table
+ * This class is a typed interface to the Mirror Table.
  */
-@TypedTable (name="Mirror", database="Open_vSwitch", fromVersion="1.0.0")
+@TypedTable(name = "Mirror", database = "Open_vSwitch", fromVersion = "1.0.0")
 public interface Mirror extends TypedBaseTable<GenericTableSchema> {
 
-    @TypedColumn(name="name", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getNameColumn();
 
-    @TypedColumn(name="name", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setName(Set<String> name);
 
-    @TypedColumn(name="name", method=MethodType.GETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.GETDATA, fromVersion = "1.0.0")
     Set<String> getName();
 
-    @TypedColumn(name="select_src_port", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "select_src_port", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<UUID>> getSelectSrcPortColumn();
 
-    @TypedColumn(name="select_src_port", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "select_src_port", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setSelectSrcPort(Set<UUID> selectSrcPort);
 
-    @TypedColumn(name="select_dst_port", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "select_dst_port", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<UUID>> getSelectDstPortColumn();
 
-    @TypedColumn(name="select_dst_port", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "select_dst_port", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setSelectDstPort(Set<UUID> selectDstPrt);
 
-    @TypedColumn(name="select_vlan", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "select_vlan", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getSelectVlanColumn();
 
-    @TypedColumn(name="select_vlan", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "select_vlan", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setSelectVlan(Set<Long> selectVlan);
 
-    @TypedColumn(name="output_port", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "output_port", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<UUID>> getOutputPortColumn();
 
-    @TypedColumn(name="output_port", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "output_port", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setOutputPort(Set<UUID> outputPort);
 
-    @TypedColumn (name="output_vlan", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "output_vlan", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getOutputVlanColumn();
 
-    @TypedColumn (name="output_vlan", method= MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "output_vlan", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setOutputVlan(Set<Long> outputVlan);
 
-    @TypedColumn (name="statistics", method= MethodType.GETCOLUMN, fromVersion="6.4.0")
+    @TypedColumn(name = "statistics", method = MethodType.GETCOLUMN, fromVersion = "6.4.0")
     Column<GenericTableSchema, Map<String, Long>> getStatisticsColumn();
 
-    @TypedColumn (name="statistics", method= MethodType.SETDATA, fromVersion="6.4.0")
+    @TypedColumn(name = "statistics", method = MethodType.SETDATA, fromVersion = "6.4.0")
     void setStatistics(Map<String, Long> statistics);
 
-    @TypedColumn (name="external_ids", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "external_ids", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn();
 
-    @TypedColumn (name="external_ids", method= MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "external_ids", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setExternalIds(Map<String, String> externalIds);
 
-    @TypedColumn (name="select_all", method= MethodType.GETCOLUMN, fromVersion="6.2.0")
+    @TypedColumn(name = "select_all", method = MethodType.GETCOLUMN, fromVersion = "6.2.0")
     Column<GenericTableSchema, Boolean> getSelectAllColumn();
 
-    @TypedColumn (name="select_all", method= MethodType.SETDATA, fromVersion="6.2.0")
+    @TypedColumn(name = "select_all", method = MethodType.SETDATA, fromVersion = "6.2.0")
     void setSelectAll(Boolean selectAll);
-}
\ No newline at end of file
+}
index 733078cb80b48a2aaacb456a9da6ce70c6405dbb..f10fb0229cc6822dee776452f710a536e44d10a3 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.ovsdb.schema.openvswitch;
 
 import java.util.Map;
 import java.util.Set;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
 import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
@@ -19,51 +18,50 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
 /**
- * This class is a typed interface to the NetFlow Table
+ * This class is a typed interface to the NetFlow Table.
  */
-@TypedTable(name="NetFlow", database="Open_vSwitch", fromVersion="1.0.0")
+@TypedTable(name = "NetFlow", database = "Open_vSwitch", fromVersion = "1.0.0")
 public interface NetFlow extends TypedBaseTable<GenericTableSchema> {
 
-    @TypedColumn(name="targets", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "targets", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<String>> getTargetsColumn();
 
-    @TypedColumn(name="targets", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "targets", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setTargets(Set<String> targets);
 
-    @TypedColumn(name="active_timeout", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "active_timeout", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getActiveTimeoutColumn();
 
-    @TypedColumn(name="active_timeout", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "active_timeout", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setActiveTimeout(Long activeTimeout);
 
-    @TypedColumn(name="engine_type", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "engine_type", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getEngineTypeColumn();
 
-    @TypedColumn(name="engine_type", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "engine_type", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setEngineType(Set<Long> engineType);
 
-    @TypedColumn(name="external_ids", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "external_ids", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn();
 
-    @TypedColumn(name="external_ids", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "external_ids", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setExternalIds(Map<String, String> externalIds);
 
-    @TypedColumn(name="active_timeout", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "active_timeout", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getActivityTimeoutColumn();
 
-    @TypedColumn(name="active_timeout", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "active_timeout", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setActivityTimeout(Set<Long> activityTimeout);
 
-    @TypedColumn(name="add_id_to_interface", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "add_id_to_interface", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Boolean>> getAddIdToInterfaceColumn();
 
-    @TypedColumn(name="add_id_to_interface", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "add_id_to_interface", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setAddIdToInterface(Boolean addIdToInterface);
 
-    @TypedColumn(name="engine_id", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "engine_id", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getEngineIdColumn();
 
-    @TypedColumn(name="engine_id", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "engine_id", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setEngineId(Set<Long> engineId);
-
 }
index 07b8e20c9aacc87d2084eb5a5e3d26d3b9fbd3a3..ac2955f718c13a8ba370cf420da0726fe750b8c1 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.ovsdb.schema.openvswitch;
 
 import java.util.Map;
 import java.util.Set;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.notation.UUID;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
@@ -21,89 +20,106 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
 
 /**
- * This class is a typed interface to the Open_vSwitch table
+ * This class is a typed interface to the Open_vSwitch table.
  */
-@TypedTable(name="Open_vSwitch", database="Open_vSwitch", fromVersion="1.0.0")
+@TypedTable(name = "Open_vSwitch", database = "Open_vSwitch", fromVersion = "1.0.0")
 public interface OpenVSwitch extends TypedBaseTable<GenericTableSchema> {
 
-    @TypedColumn(name="bridges", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "bridges", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<UUID>> getBridgesColumn();
-    @TypedColumn(name="bridges", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "bridges", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setBridges(Set<UUID> bridges);
 
-    @TypedColumn(name="managers", method=MethodType.GETCOLUMN, fromVersion="1.0.0", untilVersion="2.0.0")
+    @TypedColumn(name = "managers", method = MethodType.GETCOLUMN, fromVersion = "1.0.0", untilVersion = "2.0.0")
     Column<GenericTableSchema, Set<UUID>> getManagersColumn();
-    @TypedColumn(name="managers", method=MethodType.SETDATA, fromVersion="1.0.0", untilVersion="2.0.0")
+
+    @TypedColumn(name = "managers", method = MethodType.SETDATA, fromVersion = "1.0.0", untilVersion = "2.0.0")
     void setManagers(Set<UUID> managers);
 
-    @TypedColumn(name="manager_options", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "manager_options", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<UUID>> getManagerOptionsColumn();
-    @TypedColumn(name="manager_options", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "manager_options", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setManagerOptions(Set<UUID> managerOptions);
 
-    @TypedColumn(name="ssl", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "ssl", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<UUID>> getSslColumn();
-    @TypedColumn(name="ssl", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "ssl", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setSsl(Set<UUID> ssl);
 
-    @TypedColumn(name="other_config", method=MethodType.GETCOLUMN, fromVersion="5.1.0")
-    Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn() ;
-    @TypedColumn(name="other_config", method=MethodType.SETDATA, fromVersion="5.1.0")
+    @TypedColumn(name = "other_config", method = MethodType.GETCOLUMN, fromVersion = "5.1.0")
+    Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn();
+
+    @TypedColumn(name = "other_config", method = MethodType.SETDATA, fromVersion = "5.1.0")
     void setOtherConfig(Map<String, String> otherConfig);
 
-    @TypedColumn(name="external_ids", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn() ;
-    @TypedColumn(name="external_ids", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "external_ids", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn();
+
+    @TypedColumn(name = "external_ids", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setExternalIds(Map<String, String> externalIds);
 
-    @TypedColumn(name="next_cfg", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "next_cfg", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Long> getNextConfigColumn();
-    @TypedColumn(name="next_cfg", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "next_cfg", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setNextConfig(Long nextConfig);
 
-    @TypedColumn(name="cur_cfg", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "cur_cfg", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Long> getCurrentConfigColumn();
-    @TypedColumn(name="cur_cfg", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "cur_cfg", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setCurrentConfig(Long currentConfig);
 
-    @TypedColumn(name="capabilities", method=MethodType.GETCOLUMN, fromVersion="1.0.0", untilVersion="6.7.0")
+    @TypedColumn(name = "capabilities", method = MethodType.GETCOLUMN, fromVersion = "1.0.0", untilVersion = "6.7.0")
     Column<GenericTableSchema, Map<String, UUID>> getCapabilitiesColumn();
-    @TypedColumn(name="capabilities", method=MethodType.SETDATA, fromVersion="1.0.0", untilVersion="6.7.0")
+
+    @TypedColumn(name = "capabilities", method = MethodType.SETDATA, fromVersion = "1.0.0", untilVersion = "6.7.0")
     void setCapabilities(Map<String, UUID> capabilities);
 
-    @TypedColumn(name="statistics", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "statistics", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, Long>> getStatisticsColumn();
-    @TypedColumn(name="statistics", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "statistics", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setStatistics(Map<String, Long> statistics);
 
-    @TypedColumn(name="ovs_version", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "ovs_version", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<String>> getOvsVersionColumn();
-    @TypedColumn(name="ovs_version", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "ovs_version", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setOvsVersion(Set<String> ovsVersion);
 
-    @TypedColumn(name="db_version", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "db_version", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<String>> getDbVersionColumn();
-    @TypedColumn(name="db_version", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "db_version", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setDbVersion(Set<String> dbVersion);
 
-    @TypedColumn(name="system_type", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "system_type", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<String>> getSystemTypeColumn();
-    @TypedColumn(name="system_type", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "system_type", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setSystemType(Set<String> systemType);
 
-    @TypedColumn(name="system_version", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "system_version", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<String>> getSystemVersionColumn();
-    @TypedColumn(name="system_version", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "system_version", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setSystemVersion(Set<String> systemVersion);
 
-    @TypedColumn(name="datapath_types", method=MethodType.GETCOLUMN, fromVersion="7.12.1")
+    @TypedColumn(name = "datapath_types", method = MethodType.GETCOLUMN, fromVersion = "7.12.1")
     Column<GenericTableSchema, Set<String>> getDatapathTypesColumn();
-    @TypedColumn(name="datapath_types", method=MethodType.SETDATA, fromVersion="7.12.1")
+
+    @TypedColumn(name = "datapath_types", method = MethodType.SETDATA, fromVersion = "7.12.1")
+    @SuppressWarnings("checkstyle:ParameterName")
     void setDatapathTypes(Set<String> datapath_types);
 
-    @TypedColumn(name="iface_types", method=MethodType.GETCOLUMN, fromVersion="7.12.1")
+    @TypedColumn(name = "iface_types", method = MethodType.GETCOLUMN, fromVersion = "7.12.1")
     Column<GenericTableSchema, Set<String>> getIfaceTypesColumn();
-    @TypedColumn(name="iface_types", method=MethodType.SETDATA, fromVersion="7.12.1")
-    void setIfaceTypes(Set<String> iface_types);
 
+    @TypedColumn(name = "iface_types", method = MethodType.SETDATA, fromVersion = "7.12.1")
+    @SuppressWarnings("checkstyle:ParameterName")
+    void setIfaceTypes(Set<String> iface_types);
 }
index e7f92f24349d6649d852b9a01409f4b66b420a33..105fafdd4ea4d9f6efdc952d9dd6141cb8820af8 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.ovsdb.schema.openvswitch;
 
 import java.util.Map;
 import java.util.Set;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.notation.UUID;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
@@ -20,101 +19,121 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
 /**
- * This class is a typed interface to the Port Table
+ * This class is a typed interface to the Port Table.
  */
-@TypedTable(name="Port", database="Open_vSwitch", fromVersion="1.0.0")
+@TypedTable(name = "Port", database = "Open_vSwitch", fromVersion = "1.0.0")
 public interface Port extends TypedBaseTable<GenericTableSchema> {
 
-    @TypedColumn(name="name", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "name", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, String> getNameColumn();
-    @TypedColumn(name="name", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "name", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setName(String name);
-    @TypedColumn(name="name", method=MethodType.GETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "name", method = MethodType.GETDATA, fromVersion = "1.0.0")
     String getName();
 
-    @TypedColumn(name="interfaces", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "interfaces", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<UUID>> getInterfacesColumn();
-    @TypedColumn(name="interfaces", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "interfaces", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setInterfaces(Set<UUID> interfaces);
 
-    @TypedColumn(name="trunks", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "trunks", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getTrunksColumn();
-    @TypedColumn(name="trunks", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "trunks", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setTrunks(Set<Long> trunks);
 
-    @TypedColumn(name="tag", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "tag", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getTagColumn();
 
-    @TypedColumn(name="tag", method=MethodType.SETDATA, fromVersion="1.0.0")
+    @TypedColumn(name = "tag", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setTag(Set<Long> tag);
 
-    @TypedColumn(name="vlan_mode", method=MethodType.GETCOLUMN, fromVersion="6.1.0")
+    @TypedColumn(name = "vlan_mode", method = MethodType.GETCOLUMN, fromVersion = "6.1.0")
     Column<GenericTableSchema, Set<String>> getVlanModeColumn();
-    @TypedColumn(name="vlan_mode", method=MethodType.SETDATA, fromVersion="6.1.0")
+
+    @TypedColumn(name = "vlan_mode", method = MethodType.SETDATA, fromVersion = "6.1.0")
     void setVlanMode(Set<String> vlanMode);
 
-    @TypedColumn(name="qos", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "qos", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<UUID>> getQosColumn();
-    @TypedColumn(name="qos", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "qos", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setQos(Set<UUID> qos);
 
-    @TypedColumn(name="mac", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "mac", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<String>> getMacColumn();
-    @TypedColumn(name="mac", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "mac", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setMac(Set<String> mac);
 
-    @TypedColumn(name="bond_type", method=MethodType.GETCOLUMN, fromVersion="1.0.2", untilVersion="1.0.3")
+    @TypedColumn(name = "bond_type", method = MethodType.GETCOLUMN, fromVersion = "1.0.2", untilVersion = "1.0.3")
     Column<GenericTableSchema, Set<String>> getBondTypeColumn();
-    @TypedColumn(name="bond_type", method=MethodType.SETDATA)
+
+    @TypedColumn(name = "bond_type", method = MethodType.SETDATA)
+    @SuppressWarnings("checkstyle:ParameterName")
     void setBondType(Set<String> bond_type);
 
-    @TypedColumn(name="bond_mode", method=MethodType.GETCOLUMN, fromVersion="1.0.4")
+    @TypedColumn(name = "bond_mode", method = MethodType.GETCOLUMN, fromVersion = "1.0.4")
     Column<GenericTableSchema, Set<String>> getBondModeColumn();
-    @TypedColumn(name="bond_mode", method=MethodType.SETDATA, fromVersion="1.0.4")
+
+    @TypedColumn(name = "bond_mode", method = MethodType.SETDATA, fromVersion = "1.0.4")
+    @SuppressWarnings("checkstyle:ParameterName")
     void setBondMode(Set<String> bond_mode);
 
-    @TypedColumn(name="lacp", method=MethodType.GETCOLUMN, fromVersion="1.3.0")
+    @TypedColumn(name = "lacp", method = MethodType.GETCOLUMN, fromVersion = "1.3.0")
     Column<GenericTableSchema, Set<String>> getLacpColumn();
-    @TypedColumn(name="lacp", method=MethodType.SETDATA, fromVersion="1.3.0")
+
+    @TypedColumn(name = "lacp", method = MethodType.SETDATA, fromVersion = "1.3.0")
     void setLacp(Set<String> lacp);
 
-    @TypedColumn(name="bond_updelay", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "bond_updelay", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getBondUpDelayColumn();
-    @TypedColumn(name="bond_updelay", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "bond_updelay", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setBondUpDelay(Set<Long> bondUpDelay);
 
-    @TypedColumn(name="bond_downdelay", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "bond_downdelay", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Long>> getBondDownDelayColumn();
-    @TypedColumn(name="bond_downdelay", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "bond_downdelay", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setBondDownDelay(Set<Long> bondDownDelay);
 
-    @TypedColumn(name="bond_fake_iface", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "bond_fake_iface", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Boolean>> getBondFakeInterfaceColumn();
-    @TypedColumn(name="bond_fake_iface", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "bond_fake_iface", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setBondFakeInterface(Set<Boolean> bondFakeInterface);
 
-    @TypedColumn(name="fake_bridge", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "fake_bridge", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Set<Boolean>> getFakeBridgeColumn();
-    @TypedColumn(name="fake_bridge", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "fake_bridge", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setFakeBridge(Set<Boolean> fakeBridge);
 
-    @TypedColumn(name="status", method=MethodType.GETCOLUMN, fromVersion="6.2.0")
+    @TypedColumn(name = "status", method = MethodType.GETCOLUMN, fromVersion = "6.2.0")
     Column<GenericTableSchema, Map<String, String>> getStatusColumn();
-    @TypedColumn(name="status", method=MethodType.SETDATA, fromVersion="6.2.0")
+
+    @TypedColumn(name = "status", method = MethodType.SETDATA, fromVersion = "6.2.0")
     void setStatus(Map<String, String> status);
 
-    @TypedColumn(name="statistics", method=MethodType.GETCOLUMN, fromVersion="6.3.0")
+    @TypedColumn(name = "statistics", method = MethodType.GETCOLUMN, fromVersion = "6.3.0")
     Column<GenericTableSchema, Map<String, Long>> getStatisticsColumn();
-    @TypedColumn(name="statistics", method=MethodType.SETDATA)
+
+    @TypedColumn(name = "statistics", method = MethodType.SETDATA)
     void setStatistics(Map<String, Long> statistics);
 
-    @TypedColumn(name="other_config", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "other_config", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn();
-    @TypedColumn(name="other_config", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "other_config", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setOtherConfig(Map<String, String> otherConfig);
 
-    @TypedColumn(name="external_ids", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
+    @TypedColumn(name = "external_ids", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
     Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn();
-    @TypedColumn(name="external_ids", method=MethodType.SETDATA, fromVersion="1.0.0")
+
+    @TypedColumn(name = "external_ids", method = MethodType.SETDATA, fromVersion = "1.0.0")
     void setExternalIds(Map<String, String> externalIds);
 }
index 61413e8930098a237c28f6a292648d78177d12e2..f33037e1c29b48ec8ccf266a5b7d9a73292aea5c 100644 (file)
@@ -8,7 +8,7 @@
 
 package org.opendaylight.ovsdb.schema.openvswitch;
 
-
+import java.util.Map;
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.notation.UUID;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
@@ -17,35 +17,33 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-import java.util.Map;
-
 /**
- *  This class is a typed interface to the QoS Table
+ *  This class is a typed interface to the QoS Table.
  */
-@TypedTable (name="QoS", database="Open_vSwitch", fromVersion="1.0.0")
+@TypedTable(name = "QoS", database = "Open_vSwitch", fromVersion = "1.0.0")
 public interface Qos extends TypedBaseTable<GenericTableSchema> {
 
-    @TypedColumn (name="queues", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Map<Long, UUID>> getQueuesColumn() ;
+    @TypedColumn(name = "queues", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Map<Long, UUID>> getQueuesColumn();
 
-    @TypedColumn (name="queues", method= MethodType.SETDATA, fromVersion="1.0.0")
-    void setQueues(Map<Long, UUID> queues) ;
+    @TypedColumn(name = "queues", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setQueues(Map<Long, UUID> queues);
 
-    @TypedColumn (name="type", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, String> getTypeColumn() ;
+    @TypedColumn(name = "type", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, String> getTypeColumn();
 
-    @TypedColumn (name="type", method= MethodType.SETDATA, fromVersion="1.0.0")
-    void setType(String type) ;
+    @TypedColumn(name = "type", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setType(String type);
 
-    @TypedColumn (name="other_config", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn() ;
+    @TypedColumn(name = "other_config", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn();
 
-    @TypedColumn (name="other_config", method= MethodType.SETDATA, fromVersion="1.0.0")
-    void setOtherConfig(Map<String, String> otherConfig) ;
+    @TypedColumn(name = "other_config", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setOtherConfig(Map<String, String> otherConfig);
 
-    @TypedColumn (name="external_ids", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn() ;
+    @TypedColumn(name = "external_ids", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn();
 
-    @TypedColumn (name="external_ids", method= MethodType.SETDATA, fromVersion="1.0.0")
-    void setExternalIds(Map<String, String> externalIds) ;
-}
\ No newline at end of file
+    @TypedColumn(name = "external_ids", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setExternalIds(Map<String, String> externalIds);
+}
index 2e32573b41847ea29304db8615892a46db435173..6c63d64320c6ae400689498c6fd92f159fa3858f 100644 (file)
@@ -8,7 +8,8 @@
 
 package org.opendaylight.ovsdb.schema.openvswitch;
 
-
+import java.util.Map;
+import java.util.Set;
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
 import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
@@ -16,30 +17,27 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-import java.util.Map;
-import java.util.Set;
-
 /**
- * This class is a typed interface to the Queue Table
+ * This class is a typed interface to the Queue Table.
  */
-@TypedTable (name="Queue", database="Open_vSwitch", fromVersion="1.0.0")
+@TypedTable(name = "Queue", database = "Open_vSwitch", fromVersion = "1.0.0")
 public interface Queue extends TypedBaseTable<GenericTableSchema> {
 
-    @TypedColumn (name="dscp", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Set<Long>> getDscpColumn() ;
+    @TypedColumn(name = "dscp", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Set<Long>> getDscpColumn();
 
-    @TypedColumn (name="dscp", method= MethodType.SETDATA, fromVersion="6.4.0")
-    void setDscp(Set<Long> dscp) ;
+    @TypedColumn(name = "dscp", method = MethodType.SETDATA, fromVersion = "6.4.0")
+    void setDscp(Set<Long> dscp);
 
-    @TypedColumn (name="other_config", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn() ;
+    @TypedColumn(name = "other_config", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Map<String, String>> getOtherConfigColumn();
 
-    @TypedColumn (name="other_config", method= MethodType.SETDATA, fromVersion="1.0.0")
-    void setOtherConfig(Map<String, String> otherConfig) ;
+    @TypedColumn(name = "other_config", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setOtherConfig(Map<String, String> otherConfig);
 
-    @TypedColumn (name="external_ids", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn() ;
+    @TypedColumn(name = "external_ids", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn();
 
-    @TypedColumn (name="external_ids", method= MethodType.SETDATA, fromVersion="1.0.0")
-    void setExternalIds(Map<String, String> externalIds) ;
-}
\ No newline at end of file
+    @TypedColumn(name = "external_ids", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setExternalIds(Map<String, String> externalIds);
+}
index 82cd94e75fcbc3fb91c66808c6706af2d7896871..5def350a6900783cc5d45f25dc1497e5bef6f648 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.ovsdb.schema.openvswitch;
 
 import java.util.Map;
 import java.util.Set;
-
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
 import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
@@ -19,37 +18,43 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
 /**
- * This class is a typed interface to the SFlow Table
+ * This class is a typed interface to the SFlow Table.
  */
-@TypedTable(name="sFlow", database="Open_vSwitch", fromVersion="1.0.0")
+@TypedTable(name = "sFlow", database = "Open_vSwitch", fromVersion = "1.0.0")
 public interface SFlow extends TypedBaseTable<GenericTableSchema> {
-    @TypedColumn(name="targets", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Set<String>> getTargetsColumn() ;
-    @TypedColumn(name="targets", method=MethodType.SETDATA, fromVersion="1.0.0")
-    void setTargets(Set<String> targets) ;
-
-    @TypedColumn(name="agent", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Set<String>> getAgentColumn() ;
-    @TypedColumn(name="agent", method=MethodType.SETDATA, fromVersion="1.0.0")
-    void setAgent(Set<String> agent) ;
-
-    @TypedColumn(name="external_ids", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn() ;
-    @TypedColumn(name="external_ids", method=MethodType.SETDATA, fromVersion="1.0.0")
-    void setExternalIds(Map<String, String> externalIds) ;
-
-    @TypedColumn(name="header", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Set<Long>> getHeaderColumn() ;
-    @TypedColumn(name="header", method=MethodType.SETDATA, fromVersion="1.0.0")
-    void setHeader(Set<Long> header) ;
-
-    @TypedColumn(name="polling", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Set<Long>> getPollingColumn() ;
-    @TypedColumn(name="polling", method=MethodType.SETDATA, fromVersion="1.0.0")
-    void setPolling(Set<Long> polling) ;
-
-    @TypedColumn(name="sampling", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Set<Long>> getSamplingColumn() ;
-    @TypedColumn(name="sampling", method=MethodType.SETDATA, fromVersion="1.0.0")
-    void setSampling(Set<Long> sampling) ;
-}
\ No newline at end of file
+    @TypedColumn(name = "targets", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Set<String>> getTargetsColumn();
+
+    @TypedColumn(name = "targets", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setTargets(Set<String> targets);
+
+    @TypedColumn(name = "agent", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Set<String>> getAgentColumn();
+
+    @TypedColumn(name = "agent", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setAgent(Set<String> agent);
+
+    @TypedColumn(name = "external_ids", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn();
+
+    @TypedColumn(name = "external_ids", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setExternalIds(Map<String, String> externalIds);
+
+    @TypedColumn(name = "header", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Set<Long>> getHeaderColumn();
+
+    @TypedColumn(name = "header", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setHeader(Set<Long> header);
+
+    @TypedColumn(name = "polling", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Set<Long>> getPollingColumn();
+
+    @TypedColumn(name = "polling", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setPolling(Set<Long> polling);
+
+    @TypedColumn(name = "sampling", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Set<Long>> getSamplingColumn();
+
+    @TypedColumn(name = "sampling", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setSampling(Set<Long> sampling);
+}
index 9b5a172708201ab8c8b403f7c7a5b3c9609e1e76..68d71aa36a671b36ce68d7f41e2b16bbabb86336 100644 (file)
@@ -8,6 +8,7 @@
 
 package org.opendaylight.ovsdb.schema.openvswitch;
 
+import java.util.Map;
 import org.opendaylight.ovsdb.lib.notation.Column;
 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
 import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
@@ -15,41 +16,40 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
-import java.util.Map;
-
 /**
- * This class is a typed interface to the SSL Table
+ * This class is a typed interface to the SSL Table.
  */
-@TypedTable (name="SSL", database="Open_vSwitch", fromVersion="1.0.0")
+@TypedTable(name = "SSL", database = "Open_vSwitch", fromVersion = "1.0.0")
 public interface SSL extends TypedBaseTable<GenericTableSchema> {
 
-    @TypedColumn (name="ca_cert", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, String> getCaCertColumn() ;
+    @TypedColumn(name = "ca_cert", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, String> getCaCertColumn();
 
-    @TypedColumn (name="ca_cert", method= MethodType.SETDATA, fromVersion="1.0.0")
-    void setCaCert(String caCert) ;
+    @TypedColumn(name = "ca_cert", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setCaCert(String caCert);
 
-    @TypedColumn (name="external_ids", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn() ;
+    @TypedColumn(name = "external_ids", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Map<String, String>> getExternalIdsColumn();
 
-    @TypedColumn (name="external_ids", method= MethodType.SETDATA, fromVersion="1.0.0")
-    void setExternalIds(Map<String, String> externalIds) ;
+    @TypedColumn(name = "external_ids", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setExternalIds(Map<String, String> externalIds);
 
-    @TypedColumn (name="bootstrap_ca_cert", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, Boolean> getBootstrapCaCertColumn() ;
+    @TypedColumn(name = "bootstrap_ca_cert", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, Boolean> getBootstrapCaCertColumn();
 
-    @TypedColumn (name="bootstrap_ca_cert", method= MethodType.SETDATA, fromVersion="1.0.0")
-    void setBootstrapCaCert(Boolean bootstrapCaCert) ;
+    @TypedColumn(name = "bootstrap_ca_cert", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setBootstrapCaCert(Boolean bootstrapCaCert);
 
-    @TypedColumn (name="certificate", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, String> getCertificateColumn() ;
+    @TypedColumn(name = "certificate", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, String> getCertificateColumn();
 
-    @TypedColumn (name="certificate", method= MethodType.SETDATA, fromVersion="1.0.0")
-    void setCertificate(String certificate) ;
+    @TypedColumn(name = "certificate", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    void setCertificate(String certificate);
 
-    @TypedColumn (name="private_key", method= MethodType.GETCOLUMN, fromVersion="1.0.0")
-    Column<GenericTableSchema, String> getPrivateKeyColumn() ;
+    @TypedColumn(name = "private_key", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
+    Column<GenericTableSchema, String> getPrivateKeyColumn();
 
-    @TypedColumn (name="private_key", method= MethodType.SETDATA, fromVersion="1.0.0")
-    void setPrivateKey(String private_key) ;
-}
\ No newline at end of file
+    @TypedColumn(name = "private_key", method = MethodType.SETDATA, fromVersion = "1.0.0")
+    @SuppressWarnings("checkstyle:ParameterName")
+    void setPrivateKey(String private_key);
+}