OpenDaylight Controller functional modules.
[controller.git] / opendaylight / web / devices / src / main / java / org / opendaylight / controller / devices / web / DevicesJsonBean.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, 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.controller.devices.web;
10
11 import java.util.List;
12 import java.util.Map;
13
14 public class DevicesJsonBean {
15     private List<String> columnNames;
16     private List<Map<String, String>> nodeData;
17
18     public List<String> getColumnNames() {
19         return columnNames;
20     }
21
22     public void setColumnNames(List<String> columnNames) {
23         this.columnNames = columnNames;
24     }
25
26     public List<Map<String, String>> getNodeData() {
27         return nodeData;
28     }
29
30     public void setNodeData(List<Map<String, String>> nodeData) {
31         this.nodeData = nodeData;
32     }
33 }