Adding nemo engine.
[nemo.git] / nemo-renderers / openflow-renderer / src / main / java / org / opendaylight / nemo / renderer / openflow / entity / NodeBean.java
1 /*\r
2  * Copyright (c) 2015 Huawei, Inc. and others. All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 package org.opendaylight.nemo.renderer.openflow.entity;\r
9 \r
10 import org.opendaylight.nemo.renderer.openflow.entity.PortBean;\r
11 import java.util.List;\r
12 \r
13 public class NodeBean {\r
14 \r
15     private String nodeID;\r
16     private String nodeType;\r
17     private String nodeCapacity;\r
18     private List<PortBean> portList;\r
19 \r
20     public String getNodeID() {\r
21         return nodeID;\r
22     }\r
23 \r
24     public void setNodeID(String nodeID) {\r
25         this.nodeID = nodeID;\r
26     }\r
27 \r
28     public String getNodeType() {\r
29         return nodeType;\r
30     }\r
31 \r
32     public void setNodeType(String nodeType) {\r
33         this.nodeType = nodeType;\r
34     }\r
35 \r
36     public String getNodeCapacity() {\r
37         return nodeCapacity;\r
38     }\r
39 \r
40     public void setNodeCapacity(String nodeCapacity) {\r
41         this.nodeCapacity = nodeCapacity;\r
42     }\r
43 \r
44     public List<PortBean> getPortList() {\r
45         return portList;\r
46     }\r
47 \r
48     public void setPortList(List<PortBean> portList) {\r
49         this.portList = portList;\r
50     }\r
51 \r
52 }\r
53 \r