[RICPLT-1423] Big Red button API - Implementation - Disconnect status 30/630/1 common/v1.0.14 entities/v1.0.14 reader/v1.0.14 v1.0.14
authorib565x <irina.bihalenko@intl.att.com>
Thu, 1 Aug 2019 08:57:22 +0000 (11:57 +0300)
committeririna <ib565x@intl.att.com>
Mon, 5 Aug 2019 08:09:04 +0000 (11:09 +0300)
Signed-off-by: ib565x <irina.bihalenko@intl.att.com>
Change-Id: Ied5ad61f079ff8181b3905606fd440d7a4cd8642

entities/nodeb_info.pb.go
entities/nodeb_info.proto

index 4abbbe1..1fac9f3 100644 (file)
@@ -25,7 +25,7 @@ type ConnectionStatus int32
 const (
        ConnectionStatus_UNKNOWN_CONNECTION_STATUS ConnectionStatus = 0
        ConnectionStatus_CONNECTED                 ConnectionStatus = 1
-       ConnectionStatus_NOT_CONNECTED             ConnectionStatus = 2
+       ConnectionStatus_DISCONNECTED             ConnectionStatus = 2
        ConnectionStatus_CONNECTED_SETUP_FAILED    ConnectionStatus = 3
        ConnectionStatus_CONNECTING                ConnectionStatus = 4
        ConnectionStatus_SHUTTING_DOWN             ConnectionStatus = 5
@@ -35,7 +35,7 @@ const (
 var ConnectionStatus_name = map[int32]string{
        0: "UNKNOWN_CONNECTION_STATUS",
        1: "CONNECTED",
-       2: "NOT_CONNECTED",
+       2: "DISCONNECTED",
        3: "CONNECTED_SETUP_FAILED",
        4: "CONNECTING",
        5: "SHUTTING_DOWN",
@@ -45,7 +45,7 @@ var ConnectionStatus_name = map[int32]string{
 var ConnectionStatus_value = map[string]int32{
        "UNKNOWN_CONNECTION_STATUS": 0,
        "CONNECTED":                 1,
-       "NOT_CONNECTED":             2,
+       "DISCONNECTED":              2,
        "CONNECTED_SETUP_FAILED":    3,
        "CONNECTING":                4,
        "SHUTTING_DOWN":             5,
index 4185292..8cc5af2 100644 (file)
@@ -23,7 +23,7 @@ message NodebInfo{
 enum ConnectionStatus{
     UNKNOWN_CONNECTION_STATUS = 0;
     CONNECTED = 1;
-    NOT_CONNECTED = 2;
+    DISCONNECTED = 2;
     CONNECTED_SETUP_FAILED = 3;
     CONNECTING = 4;
     SHUTTING_DOWN = 5;