BitOhenry

ONOS-3200 unify code formation and fix grammar problem

Change-Id: I806fe861433eb4715b6e068609a0b2c2a19babf6
...@@ -204,7 +204,7 @@ public interface OvsdbClientService extends OvsdbRPC { ...@@ -204,7 +204,7 @@ public interface OvsdbClientService extends OvsdbRPC {
204 String getControllerUuid(String controllerName, String controllerTarget); 204 String getControllerUuid(String controllerName, String controllerTarget);
205 205
206 /** 206 /**
207 - * Gets the Ovs uuid. 207 + * Gets the OVS uuid.
208 * 208 *
209 * @param dbName database name 209 * @param dbName database name
210 * @return ovs uuid, empty if no uuid is find 210 * @return ovs uuid, empty if no uuid is find
...@@ -212,7 +212,7 @@ public interface OvsdbClientService extends OvsdbRPC { ...@@ -212,7 +212,7 @@ public interface OvsdbClientService extends OvsdbRPC {
212 String getOvsUuid(String dbName); 212 String getOvsUuid(String dbName);
213 213
214 /** 214 /**
215 - * Gets the ovsdb database schema. 215 + * Gets the OVSDB database schema.
216 * 216 *
217 * @param dbName database name 217 * @param dbName database name
218 * @return database schema 218 * @return database schema
...@@ -220,7 +220,7 @@ public interface OvsdbClientService extends OvsdbRPC { ...@@ -220,7 +220,7 @@ public interface OvsdbClientService extends OvsdbRPC {
220 ListenableFuture<DatabaseSchema> getOvsdbSchema(String dbName); 220 ListenableFuture<DatabaseSchema> getOvsdbSchema(String dbName);
221 221
222 /** 222 /**
223 - * Gets the ovsdb table updates. 223 + * Gets the OVSDB table updates.
224 * 224 *
225 * @param dbName database name 225 * @param dbName database name
226 * @param id random uuid 226 * @param id random uuid
...@@ -229,7 +229,7 @@ public interface OvsdbClientService extends OvsdbRPC { ...@@ -229,7 +229,7 @@ public interface OvsdbClientService extends OvsdbRPC {
229 ListenableFuture<TableUpdates> monitorTables(String dbName, String id); 229 ListenableFuture<TableUpdates> monitorTables(String dbName, String id);
230 230
231 /** 231 /**
232 - * Gets the ovsdb config operation result. 232 + * Gets the OVSDB config operation result.
233 * 233 *
234 * @param dbName database name 234 * @param dbName database name
235 * @param operations the list of operations 235 * @param operations the list of operations
...@@ -239,7 +239,7 @@ public interface OvsdbClientService extends OvsdbRPC { ...@@ -239,7 +239,7 @@ public interface OvsdbClientService extends OvsdbRPC {
239 List<Operation> operations); 239 List<Operation> operations);
240 240
241 /** 241 /**
242 - * Gets the ovsdb database schema from local. 242 + * Gets the OVSDB database schema from local.
243 * 243 *
244 * @param dbName database name 244 * @param dbName database name
245 * @return database schema 245 * @return database schema
...@@ -247,17 +247,17 @@ public interface OvsdbClientService extends OvsdbRPC { ...@@ -247,17 +247,17 @@ public interface OvsdbClientService extends OvsdbRPC {
247 DatabaseSchema getDatabaseSchema(String dbName); 247 DatabaseSchema getDatabaseSchema(String dbName);
248 248
249 /** 249 /**
250 - * Gets the ovsdb row from local ovsdb store. 250 + * Gets the OVSDB row from local OVSDB store.
251 * 251 *
252 * @param dbName database name 252 * @param dbName database name
253 * @param tableName table name 253 * @param tableName table name
254 * @param uuid row uuid 254 * @param uuid row uuid
255 - * @return row ovsdb row 255 + * @return row OVSDB row
256 */ 256 */
257 Row getRow(String dbName, String tableName, String uuid); 257 Row getRow(String dbName, String tableName, String uuid);
258 258
259 /** 259 /**
260 - * Removes the ovsdb row from local ovsdb store. 260 + * Removes the OVSDB row from local OVSDB store.
261 * 261 *
262 * @param dbName database name 262 * @param dbName database name
263 * @param tableName table name 263 * @param tableName table name
...@@ -266,25 +266,25 @@ public interface OvsdbClientService extends OvsdbRPC { ...@@ -266,25 +266,25 @@ public interface OvsdbClientService extends OvsdbRPC {
266 void removeRow(String dbName, String tableName, String uuid); 266 void removeRow(String dbName, String tableName, String uuid);
267 267
268 /** 268 /**
269 - * Updates the local ovsdb store. 269 + * Updates the local OVSDB store.
270 * 270 *
271 * @param dbName database name 271 * @param dbName database name
272 * @param tableName table name 272 * @param tableName table name
273 * @param uuid row uuid 273 * @param uuid row uuid
274 - * @param row ovsdb row 274 + * @param row OVSDB row
275 */ 275 */
276 void updateOvsdbStore(String dbName, String tableName, String uuid, Row row); 276 void updateOvsdbStore(String dbName, String tableName, String uuid, Row row);
277 277
278 /** 278 /**
279 - * Gets ovsdb local ports. 279 + * Gets OVSDB local ports.
280 * 280 *
281 * @param ifaceids the ifaceid that needed 281 * @param ifaceids the ifaceid that needed
282 - * @return ovsdb ports 282 + * @return OVSDB ports
283 */ 283 */
284 Set<OvsdbPort> getLocalPorts(Iterable<String> ifaceids); 284 Set<OvsdbPort> getLocalPorts(Iterable<String> ifaceids);
285 285
286 /** 286 /**
287 - * Disconnects the ovsdb server. 287 + * Disconnects the OVSDB server.
288 */ 288 */
289 void disconnect(); 289 void disconnect();
290 } 290 }
......
...@@ -22,7 +22,7 @@ import java.util.Objects; ...@@ -22,7 +22,7 @@ import java.util.Objects;
22 import org.onlab.packet.IpAddress; 22 import org.onlab.packet.IpAddress;
23 23
24 /** 24 /**
25 - * The class representing a OpenStack Compute or Network nodeId. 25 + * The class representing a nodeId of node which using ovsdb connection.
26 * This class is immutable. 26 * This class is immutable.
27 */ 27 */
28 public final class OvsdbNodeId { 28 public final class OvsdbNodeId {
......