/** * Global Sensor Networks (GSN) Source Code * Copyright (c) 2006-2014, Ecole Polytechnique Federale de Lausanne (EPFL) * * This file is part of GSN. * * GSN is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * GSN is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GSN. If not, see <http://www.gnu.org/licenses/>. * * File: gsn-tiny/src/tinygsn/gui/android/utils/SubscriptionRow.java * * @author Do Ngoc Hoan */ package tinygsn.gui.android.utils; import java.io.Serializable; public class SensorRow implements Serializable { private static final long serialVersionUID = 7136228216822978309L; private String name; private boolean active; private String info; private boolean managed = false; public boolean isManaged() { return managed; } public void setManaged(boolean managed) { this.managed = managed; } public String getName() { return name; } public void setName(String name) { this.name = name; } public boolean isActive() { return active; } public void setActive(boolean active) { this.active = active; } public String getInfo() { return info; } public void setInfo(String info) { this.info = info; } public SensorRow() { } public SensorRow(String name, boolean active, String info) { this.name = name; this.active = active; this.info = info; } }