// uniCenta oPOS - Touch Friendly Point Of Sale // Copyright (c) 2009-2013 uniCenta & previous Openbravo POS works // http://www.unicenta.net/unicentaopos // // This file is part of uniCenta oPOS // // uniCenta oPOS 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. // // uniCenta oPOS 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 uniCenta oPOS. If not, see <http://www.gnu.org/licenses/>. package com.openbravo.pos.admin; import com.openbravo.data.loader.*; import com.openbravo.format.Formats; import com.openbravo.pos.forms.AppLocal; import com.openbravo.pos.forms.BeanFactoryDataSingle; /** * * @author adrianromero */ public class DataLogicAdmin extends BeanFactoryDataSingle { private Session s; private TableDefinition m_tpeople; private TableDefinition m_troles; private TableDefinition m_tresources; /** Creates a new instance of DataLogicAdmin */ public DataLogicAdmin() { } @Override public void init(Session s){ this.s = s; m_tpeople = new TableDefinition(s, "PEOPLE" , new String[] {"ID", "NAME", "APPPASSWORD", "ROLE", "VISIBLE", "CARD", "IMAGE"} , new String[] {"ID", AppLocal.getIntString("label.peoplename"), AppLocal.getIntString("Label.Password"), AppLocal.getIntString("label.role"), AppLocal.getIntString("label.peoplevisible"), AppLocal.getIntString("label.card"), AppLocal.getIntString("label.peopleimage")} , new Datas[] {Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.BOOLEAN, Datas.STRING, Datas.IMAGE} , new Formats[] {Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.BOOLEAN, Formats.STRING, Formats.NULL} , new int[] {0} ); m_troles = new TableDefinition(s, "ROLES" , new String[] {"ID", "NAME", "PERMISSIONS"} , new String[] {"ID", AppLocal.getIntString("Label.Name"), "PERMISSIONS"} , new Datas[] {Datas.STRING, Datas.STRING, Datas.BYTES} , new Formats[] {Formats.STRING, Formats.STRING, Formats.NULL} , new int[] {0} ); m_tresources = new TableDefinition(s, "RESOURCES" , new String[] {"ID", "NAME", "RESTYPE", "CONTENT"} , new String[] {"ID", AppLocal.getIntString("Label.Name"), AppLocal.getIntString("label.type"), "CONTENT"} , new Datas[] {Datas.STRING, Datas.STRING, Datas.INT, Datas.BYTES} , new Formats[] {Formats.STRING, Formats.STRING, Formats.INT, Formats.NULL} , new int[] {0} ); } public final SentenceList getRolesList() { return new StaticSentence(s , "SELECT ID, NAME FROM ROLES ORDER BY NAME" , null , new SerializerReadClass(RoleInfo.class)); } public final TableDefinition getTablePeople() { return m_tpeople; } public final TableDefinition getTableRoles() { return m_troles; } public final TableDefinition getTableResources() { return m_tresources; } public final SentenceList getPeopleList() { return new StaticSentence(s , "SELECT ID, NAME FROM PEOPLE ORDER BY NAME" , null , new SerializerReadClass(PeopleInfo.class)); } }