Bug 868: Remove AD-SAL components which were deprecated in Lithium
[controller.git] / opendaylight / adsal / web / troubleshoot / src / main / java / org / opendaylight / controller / troubleshoot / web / TroubleshootingJsonBean.java
diff --git a/opendaylight/adsal/web/troubleshoot/src/main/java/org/opendaylight/controller/troubleshoot/web/TroubleshootingJsonBean.java b/opendaylight/adsal/web/troubleshoot/src/main/java/org/opendaylight/controller/troubleshoot/web/TroubleshootingJsonBean.java
deleted file mode 100644 (file)
index 3c9a8b0..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-
-/*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.controller.troubleshoot.web;
-
-import java.util.List;
-import java.util.Map;
-
-public class TroubleshootingJsonBean {
-    private List<String> columnNames;
-    private List<Map<String, String>> nodeData;
-
-    public List<String> getColumnNames() {
-        return columnNames;
-    }
-
-    public void setColumnNames(List<String> columnNames) {
-        this.columnNames = columnNames;
-    }
-
-    public List<Map<String, String>> getNodeData() {
-        return nodeData;
-    }
-
-    public void setNodeData(List<Map<String, String>> nodeData) {
-        this.nodeData = nodeData;
-    }
-}