Add RIC instance list and controller method
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / model / RanDetailsTransport.java
index 237ebb0..130a1c5 100644 (file)
@@ -22,7 +22,7 @@ package org.oransc.ric.portal.dashboard.model;
 import org.oransc.ric.e2mgr.client.model.GetNodebResponse;
 import org.oransc.ric.e2mgr.client.model.NodebIdentity;
 
-public class RanDetailsTransport {
+public class RanDetailsTransport implements IDashboardResponse {
 
        private NodebIdentity nodebIdentity;
        private GetNodebResponse nodebStatus;
@@ -61,4 +61,10 @@ public class RanDetailsTransport {
                return this;
        }
 
+       @Override
+       public String toString() {
+               return this.getClass().getName() + "[nodebIdentity=" + getNodebIdentity() + ", nodebStatus=" + getNodebStatus()
+                               + "]";
+       }
+
 }