Android Open Source - android_sdk Intent Constant






From Project

Back to project page android_sdk.

License

The source code is released under:

GNU Lesser General Public License

If you think the Android project android_sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2013  Spunk Media Pvt Ltd (www.qubecell.com)
 *//*w w w. ja va  2s .  c o m*/

package com.qubecell.constants;

/**
 * The IntentConstant class is used to store constants values which is used
 * in passing extra information via Intent.
 * @author Eninov
 *
 */
public class IntentConstant 
{
  /*
   * Mandatory parameters : Authenticated user for event charge request.
   */
  public static final String USERNAME = "Username";

  /*
   * Mandatory parameters : Authenticated password of USERNAME for event charge request.
   */
  public static final String PASSWORD = "Password";

  /*
   * Mandatory parameters : Authenticated user to send msisdn request
   */
  public static final String MSISDN_USERNAME = "msisdnUsername";

  /*
   * Mandatory parameters : Authenticated password of MSISDN_USERNAME for msisdn request
   */
  public static final String MSISDN_PASSWORD = "msisdnPassword";

  /*
   *  Product id  used in case of no data connection, 
   *  If product id is set then charging will allow even if offline mode
   *  else not.
   */
  public static final String PRODUCT_ID = "productId";

  /*
   * Mandatory parameters : Product if of Vodafone operator.
   */
  public static final String VODA_PRODUCT_ID = "vodaproductId";

  /*
   * Mandatory parameters : Product if of Airtel operator.
   */
  public static final String AIRTEL_PRODUCT_ID = "airtelproductId";

  /*
   * Mandatory parameters : Product if of Idea operator.
   */
  public static final String IDEA_PRODUCT_ID = "ideaproductId";

  /*
   * Mandatory parameters : Product if of Tata operator.
   */
  public static final String TATA_PRODUCT_ID = "tataproductId";

  /*
   * Mandatory parameters : Event charge authentication unique key.
   */
  public static final String KEY = "key";

  /*
   * Mandatory parameters : Msisdn authentication unique key.
   */
  public static final String MSISDN_KEY = "msisdnKey";
  public static final String OPERATOR_INFO = "operatorInfo";
  public static final String TRANSACTION_ID = "transactionId";
  public static final String MSISDN = "msisdn";
  public static final String MESSAGE = "message";

  /*
   * Mandatory parameters : Event charge detection amount in Indian Rupee.
   */
  public static final String PAY_AMOUNT = "payAmount";

  /*
   * Application tittle.
   */
  //public static final String TITTLE_TEXT = "tittleText";

  /*
   * Application tittle.
   */
  //public static final String APPLICATION_TITTLE = "appTittle";


  /*
   * Set color of theme in integer
   */
  public static final String THEME_COLOR = "themeColor";
  public static final String PAYMENT_RESULT = "paymentResult";
  public static final String CLOSE_PROGRESSBAR = "closeProgressbar";  
  public static final String ARRAY_LIST = "arrayList";
  public static final String OPERATION = "operation";
  public static final String OPERATION_TYPE = "operationType"; 

  /*
   * Set error message be displayed when msisdn response failed
   */
  public static final String MSISDN_ERROR_MSG = "msisdnErrorMsg";


  /*
   * Set message be displayed when event charge success.
   */
  public static final String EVENTCHARGE_STATUS_MSG = "eventchargeStatusMsg";

  /*
   * Set message be displayed when event charge failed.
   */
  public static final String EVENTCHARGE_ERROR_MSG = "eventchargeErrorMsg";

  /*
   * Set error message be displayed when sending OTP failed.
   */
  public static final String SENDOTP_ERROR_MSG = "sendotpErrorMsg";  
}




Java Source Code List

com.qubecell.beans.BaseBean.java
com.qubecell.beans.CheckStatusRespBean.java
com.qubecell.beans.EventChargeRespBean.java
com.qubecell.beans.MsisdnRespBean.java
com.qubecell.beans.OperatorDetails.java
com.qubecell.beans.OperatorsRespBean.java
com.qubecell.beans.ResponseBaseBean.java
com.qubecell.beans.SendOTPRespBean.java
com.qubecell.beans.ValidateOTPRespBean.java
com.qubecell.constants.ApplicationActivities.java
com.qubecell.constants.CheckstatusServerRespCode.java
com.qubecell.constants.ConstantStrings.java
com.qubecell.constants.EventChargeServerRespCode.java
com.qubecell.constants.HttpConstant.java
com.qubecell.constants.IntentConstant.java
com.qubecell.constants.MerchantData.java
com.qubecell.constants.MessageResponseCode.java
com.qubecell.constants.MobileOperators.java
com.qubecell.constants.MsisdnServerRespCode.java
com.qubecell.constants.NetworkResponseCode.java
com.qubecell.constants.NetworkResponse.java
com.qubecell.constants.NetworkURL.java
com.qubecell.constants.PaymentResult.java
com.qubecell.constants.ProductIds.java
com.qubecell.constants.QubecellResult.java
com.qubecell.constants.SendOTPServerRespCode.java
com.qubecell.constants.ServerCommand.java
com.qubecell.constants.ThemeConfigurationVariables.java
com.qubecell.constants.ValidateOTPServerRespCode.java
com.qubecell.constants.WidgetsTagName.java
com.qubecell.elogger.ELogger.java
com.qubecell.network.AsyncClient.java
com.qubecell.network.NetworkController.java
com.qubecell.receivers.SMSReceiver.java
com.qubecell.smsmgr.QubecellSMSManager.java
com.qubecell.ui.BaseActivity.java
com.qubecell.ui.QubecellActivity.java
com.qubecell.ui.ResultActivity.java
com.qubecell.ui.SelectOperatorActivity.java
com.qubecell.ui.ValidateOTPActivity.java
com.qubecell.utility.CommonUtility.java
com.qubecell.utility.ImageBase64.java
com.qubecell.xmlparser.XMLParser.java
com.qubecell.xmlparser.XMLfunctions.java
com.qubecelltestapp.ui.MerchantActivity.java