X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fweb%2Fdevices%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fdevices%2Fweb%2FDevicesJsonBean.java;fp=opendaylight%2Fweb%2Fdevices%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fdevices%2Fweb%2FDevicesJsonBean.java;h=0000000000000000000000000000000000000000;hb=42c32160bfd41de57189bb246fec5ffb48ed8e9e;hp=ce0b3763e06bb26f1e3c46e657e8fa4f2e2c5447;hpb=edf5bfcee83c750853253ccfd991ba7000f5f65b;p=controller.git diff --git a/opendaylight/web/devices/src/main/java/org/opendaylight/controller/devices/web/DevicesJsonBean.java b/opendaylight/web/devices/src/main/java/org/opendaylight/controller/devices/web/DevicesJsonBean.java deleted file mode 100644 index ce0b3763e0..0000000000 --- a/opendaylight/web/devices/src/main/java/org/opendaylight/controller/devices/web/DevicesJsonBean.java +++ /dev/null @@ -1,44 +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.devices.web; - -import java.util.List; -import java.util.Map; - -import org.opendaylight.controller.sal.authorization.Privilege; - -public class DevicesJsonBean { - private List columnNames; - private List> nodeData; - private Privilege privilege; - - public List getColumnNames() { - return columnNames; - } - - public void setColumnNames(List columnNames) { - this.columnNames = columnNames; - } - - public List> getNodeData() { - return nodeData; - } - - public void setNodeData(List> nodeData) { - this.nodeData = nodeData; - } - - public void setPrivilege(Privilege privilege) { - this.privilege = privilege; - } - - public Privilege getPrivilege() { - return privilege; - } -}