Madan Jampani

Checkstyle corrections.

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