/** * Revenue Settlement and Sharing System GE * Copyright (C) 2011-2014, Javier Lucio - lucio@tid.es * Telefonica Investigacion y Desarrollo, S.A. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package es.upm.fiware.rss.common; /** * This class contains the constants used over the code. * */ public final class Constants { /** * */ private Constants() { } /** * */ public static final String YES = "Y"; /** * */ public static final String NO = "N"; /** * Text to identify an alarm written in logs. */ public static final String LOG_ALARM = "ALARM DETECTED:"; /** * Encoding UTF-8. */ public static final String ENCODING_UTF8 = "UTF-8"; /** * */ public static final String CAPTURE_TYPE = "P"; /** * */ public static final String CHARGE_TYPE = "C"; /** * */ public static final String REFUND_TYPE = "R"; /** * */ public static final String CAPTURE_STATUS = "D"; /** * */ public static final String REFUNDED_STATUS = "R"; /** * */ public static final String ACCEPTED_STATUS = "A"; }