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