// Chromis POS - The New Face of Open Source POS // Copyright (c) (c) 2015-2016 // http://www.chromis.co.uk // // This file is part of Chromis POS // // Chromis POS 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. // // Chromis POS 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 Chromis POS. If not, see <http://www.gnu.org/licenses/>. package uk.chromis.pos.ticket; import uk.chromis.basic.BasicException; import uk.chromis.data.loader.DataRead; import uk.chromis.data.loader.IKeyed; import uk.chromis.data.loader.SerializerRead; public class HostInfo implements IKeyed { //MONEY HOST HOSTSEQUENCE DATESTART DATEEND //private static final long serialVersionUID = 8612449444103L; private String m_sMoney; private String m_sHost; private String m_Hostsequence; /** Creates new CategoryInfo * @param money * @param host * @param hostsequence */ public HostInfo(String money, String host, String hostsequence) { m_sMoney = host; // hack to search by hostname m_sHost = host; m_Hostsequence = hostsequence; } @Override public Object getKey() { return m_sMoney; } public String getHostsequence() { return m_Hostsequence; } public void setHostsequence(String m_Hostsequence) { this.m_Hostsequence = m_Hostsequence; } public String getHost() { return m_sHost; } public void setHost(String m_sHost) { this.m_sHost = m_sHost; } public String getMoney() { return m_sMoney; } public void setMoney(String m_sMoney) { this.m_sMoney = m_sMoney; } @Override public String toString() { return m_sHost; } public static SerializerRead getSerializerRead() { return new SerializerRead() { @Override public Object readValues(DataRead dr) throws BasicException { return new HostInfo(dr.getString(1), dr.getString(2), dr.getString(3)); } }; } }