/*
Copyright 2010 Cesar Valiente Gordo
This file is part of QuiteSleep.
QuiteSleep 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.
QuiteSleep 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 QuiteSleep. If not, see <http://www.gnu.org/licenses/>.
*/
package es.cesar.quitesleep.settings;
public class DDBBValues {
//------ Contact -------------------------------//
public static final String CONTACT_ID = "contactId";
public static final String CONTACT_NAME = "contactName";
public static final String BANNED = "banned";
//-------- Phone -----------------------------------//
public static final String CONTACT = "contact";
public static final String CONTACT_PHONE = "contactPhone";
public static final String USED_TO_SEND = "usedToSend";
//-------- Mail --------------------------------//
public static final String CONTACT_MAIL = "contactMail";
//Also used here: CONTACT and USED_TO_SEND
//-------- Schedule --------------------------------//
public static final String START_SCHEDULE = "startSchedule";
public static final String END_SCHEDULE = "endSchedule";
public static final String START_FORMAT_SCHEDULE = "startFormatSchedule";
public static final String END_FORMAT_SCHEDULE = "endFormatSchedule";
//-------- Banned --------------------------------------//
public static final String SCHEDULE = "schedule";
//Also used here: CONTACT
//-------- CallLog ---------------------------------//
public static final String PHONE = "phone";
public static final String NUM_ORDER = "numOrder";
public static final String NUM_SEND_SMS = "numSendSms";
public static final String NUM_SEND_MAIL = "numSendMail";
}