Fix checkstyle violations in schema
[ovsdb.git] / schemas / hardwarevtep / src / main / java / org / opendaylight / ovsdb / schema / hardwarevtep / PhysicalSwitch.java
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);
 }