Adding nemo engine.
[nemo.git] / nemo-renderers / openflow-renderer / src / main / java / org / opendaylight / nemo / renderer / openflow / entity / ResourceBean.java
1 /*
2  * Copyright (c) 2015 Huawei, Inc. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.nemo.renderer.openflow.entity;
10 import org.opendaylight.nemo.renderer.openflow.entity.NodeBean;
11 import org.opendaylight.nemo.renderer.openflow.entity.LinkBean;
12 import org.opendaylight.nemo.renderer.openflow.entity.HostBean;
13
14 import java.util.List;
15
16 public class ResourceBean {
17         public List<NodeBean> getNodelist() {
18                 return nodelist;
19         }
20
21         public void setNodelist(List<NodeBean> nodelist) {
22                 this.nodelist = nodelist;
23         }
24
25         private List<NodeBean> nodelist;
26
27         public List<LinkBean> getLinklist() {
28                 return linklist;
29         }
30
31         public void setLinklist(List<LinkBean> linklist) {
32                 this.linklist = linklist;
33         }
34
35         private List<LinkBean> linklist;
36
37         public List<HostBean> getHostlist() {
38                 return hostlist;
39         }
40
41         public void setHostlist(List<HostBean> hostlist) {
42                 this.hostlist = hostlist;
43         }
44
45         private List<HostBean> hostlist;
46         
47         //getter ,setter 
48 }
49