All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.abavilla.fpi.load.util.LoadConst Maven / Gradle / Ivy

Go to download

FPI Reactive backend Topup API, contains usage for DTOne and GlobeLabs Rewards API with callback functionality

The newest version!
/******************************************************************************
 * FPI Application - Abavilla                                                 *
 * Copyright (C) 2022  Vince Jerald Villamora                                 *
 *                                                                            *
 * This program 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.                                        *
 *                                                                            *
 * 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 General Public License for more details.                               *
 *                                                                            *
 * You should have received a copy of the GNU General Public License          *
 * along with this program.  If not, see .     *
 ******************************************************************************/

package com.abavilla.fpi.load.util;

import java.util.Locale;

public abstract class LoadConst {

  /**
   * Default {@link Locale} to use across FPI Applications
   */
  public static final Locale DEFAULT_LOCALE = Locale.US;

  public static final String PH_CURRENCY = "PHP";

  public static final String PH_REGION_CODE = "PH";

  public static final String PROV_GL = "GlobeLabs";

  public static final String PROV_DTONE = "DTOne";

  public static final String NO_LOAD_PROVIDER_AVAILABLE = "No Load provider available";

  /**
   * Successful status code for globelabs provider
   */
  public static final String GL_SUCCESS_STS = "SUCCESS";

  /**
   * Successful status code for dtone provider
   */
  public static final long DT_SUCCESS_STS = 70000L;

  /**
   * Failed status code for globelabs provider
   */
  public static final String GL_FAILED_STS = "FAILED";

  /**
   * Failed status code for dtone provider when reloading a postpaid number with prepaid credits
   */
  public static final long DT_INVPREPAID_STS = 90000L;

  /**
   * Failed status code for dtone provider when number is not in operator
   */
  public static final long DT_OPMISMATCH_STS = 90200L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy