Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Madan Jampani
2014-11-12 02:18:28 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c65d8debb7c2cdc000a34daca93a19981012053e
c65d8deb
1 parent
c22123de
Checkstyle corrections.
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
core/api/src/main/java/org/onlab/onos/store/service/ReadStatus.java
core/api/src/main/java/org/onlab/onos/store/service/WriteStatus.java
core/api/src/main/java/org/onlab/onos/store/service/ReadStatus.java
View file @
c65d8de
...
...
@@ -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.
...
...
core/api/src/main/java/org/onlab/onos/store/service/WriteStatus.java
View file @
c65d8de
...
...
@@ -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
,
...
...
Please
register
or
login
to post a comment