Bug:129 Connection Manager Dashlet
[controller.git] / opendaylight / web / devices / src / main / java / org / opendaylight / controller / devices / web / NodeJsonBean.java
index 61d4f2f91a6e322abf937198436d0d13596afe19..e5f2b6a2c0ece9c671a21bbe87d4ada97a61f973 100644 (file)
@@ -13,6 +13,7 @@ import java.util.List;
 public class NodeJsonBean {
     String nodeId;
     String nodeName;
+    String nodeType;
     List<PortJsonBean> nodePorts;
 
     public String getNodeId() {
@@ -23,6 +24,10 @@ public class NodeJsonBean {
         return nodeName;
     }
 
+    public String getNodeType() {
+        return nodeType;
+    }
+
     public List<PortJsonBean> getNodePorts() {
         return nodePorts;
     }
@@ -35,6 +40,10 @@ public class NodeJsonBean {
         this.nodeName = nodeName;
     }
 
+    public void setNodeType(String nodeType) {
+        this.nodeType = nodeType;
+    }
+
     public void setNodePorts(List<PortJsonBean> port) {
         this.nodePorts = port;
     }