// GreenPOS is a point of sales application designed for touch screens.
// Copyright (C) 2007-2009 Openbravo, S.L.
// http://code.google.com/p/openbravocustom/
//
// This file is part of GreenPOS.
//
// GreenPOS 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.
//
// GreenPOS 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 GreenPOS. If not, see <http://www.gnu.org/licenses/>.
package com.openbravo.pos.ticket;
import com.openbravo.basic.BasicException;
import com.openbravo.data.loader.DataRead;
import com.openbravo.data.loader.IKeyed;
import com.openbravo.data.loader.SerializerRead;
/**
*
* @author Adrian
* @version
*/
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 */
public HostInfo(String money, String host, String hostsequence) {
m_sMoney = host; // hack to search by hostname
m_sHost = host;
m_Hostsequence = hostsequence;
}
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() { public Object readValues(DataRead dr) throws BasicException {
return new HostInfo(dr.getString(1), dr.getString(2), dr.getString(3));
}};
}
}