blob: aadbcfb7711f19959cf669bb15dc560b4f7e1c1a [file] [log] [blame]
Madan Jampani08822c42014-11-04 17:17:46 -08001package org.onlab.onos.store.service.impl;
2
3import org.onlab.onos.store.service.ReadResult;
4
Madan Jampani686fa182014-11-04 23:16:27 -08005/**
6 * Result of a read operation executed on the DatabaseStateMachine.
7 */
Madan Jampani08822c42014-11-04 17:17:46 -08008public class InternalReadResult {
9
10 public enum Status {
11 OK,
12 NO_SUCH_TABLE
13 }
14
15 private final Status status;
16 private final ReadResult result;
17
18 public InternalReadResult(Status status, ReadResult result) {
19 this.status = status;
20 this.result = result;
21 }
22
23 public Status status() {
24 return status;
25 }
26
27 public ReadResult result() {
28 return result;
29 }
30
31 @Override
32 public String toString() {
33 return "InternalReadResult [status=" + status + ", result=" + result
34 + "]";
35 }
36}