Fix checkstyle violations in schema
[ovsdb.git] / schemas / openvswitch / src / main / java / org / opendaylight / ovsdb / schema / openvswitch / Manager.java
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
+}