OpenDaylight Controller functional modules.
[controller.git] / opendaylight / web / troubleshoot / src / main / java / org / opendaylight / controller / troubleshoot / web / TroubleshootingJsonBean.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.opendaylight.controller.troubleshoot.web;
11
12 import java.util.HashMap;
13 import java.util.List;
14
15 public class TroubleshootingJsonBean {
16     private List<String> columnNames;
17     private List<HashMap<String, String>> nodeData;
18
19     public List<String> getColumnNames() {
20         return columnNames;
21     }
22
23     public void setColumnNames(List<String> columnNames) {
24         this.columnNames = columnNames;
25     }
26
27     public List<HashMap<String, String>> getNodeData() {
28         return nodeData;
29     }
30
31     public void setNodeData(List<HashMap<String, String>> nodeData) {
32         this.nodeData = nodeData;
33     }
34 }