Madan Jampani

Checkstyle corrections.

...@@ -5,10 +5,10 @@ package org.onlab.onos.store.service; ...@@ -5,10 +5,10 @@ package org.onlab.onos.store.service;
5 */ 5 */
6 public enum ReadStatus { 6 public enum ReadStatus {
7 7
8 - /** 8 + /**
9 - * Read completed successfully. 9 + * Read completed successfully.
10 - */ 10 + */
11 - OK, 11 + OK,
12 12
13 /** 13 /**
14 * Read failed due to an invalid table name being specified. 14 * Read failed due to an invalid table name being specified.
......
...@@ -5,18 +5,18 @@ package org.onlab.onos.store.service; ...@@ -5,18 +5,18 @@ package org.onlab.onos.store.service;
5 */ 5 */
6 public enum WriteStatus { 6 public enum WriteStatus {
7 7
8 - /** 8 + /**
9 - * Write completed successfully. 9 + * Write completed successfully.
10 - */ 10 + */
11 OK, 11 OK,
12 12
13 /** 13 /**
14 - * Write was aborted (ex: if one or more write operations in a batch fail, others are aborted) 14 + * Write was aborted (ex: if one or more write operations in a batch fail, others are aborted).
15 */ 15 */
16 ABORTED, 16 ABORTED,
17 17
18 /** 18 /**
19 - * Write failed due to pre-condition failure. (ex: version or value mis-match) 19 + * Write failed due to pre-condition failure. (ex: version or value mis-match).
20 */ 20 */
21 PRECONDITION_VIOLATION, 21 PRECONDITION_VIOLATION,
22 22
......