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

com.ebay.sdk.helper.PaymentServiceHelper Maven / Gradle / Ivy

Go to download

This SDK enables you to use Java to make API calls in the eBay Trading API, which is an XML API. This maven build is provided by tonicsoft for convenience and is an exact copy of version 981 of the project distributed by eBay via the official eBay SDK website.

The newest version!
/*
Copyright (c) 2013 eBay, Inc.
This program is licensed under the terms of the eBay Common Development and
Distribution License (CDDL) Version 1.0 (the "License") and any subsequent  version 
thereof released by eBay.  The then-current version of the License can be found 
at http://www.opensource.org/licenses/cddl1.php and in the eBaySDKLicense file that 
is under the root directory at /LICENSE.txt.
*/

package com.ebay.sdk.helper;

import java.util.Enumeration;
import java.util.Hashtable;

import com.ebay.sdk.helper.ui.ControlTagItem;
import com.ebay.soap.eBLBaseComponents.BuyerPaymentMethodCodeType;
import com.ebay.soap.eBLBaseComponents.SiteCodeType;

/**
 * A helper class to retrieve the available payment services/methods for a given site.
 */
public class PaymentServiceHelper
{
  static Hashtable _paymentServiceMap = new Hashtable();
  static PaymentServiceHelper _paymentServiceHelper = new PaymentServiceHelper();

  // Service cache
  static Hashtable _paymentServices = new Hashtable();

  static {
    _paymentServiceMap.put(new Integer(0), new ControlTagItem("Money Order or Cashier's Check", BuyerPaymentMethodCodeType.MOCC));
    _paymentServiceMap.put(new Integer(1), new ControlTagItem("Personal Check", BuyerPaymentMethodCodeType.PERSONAL_CHECK));
    _paymentServiceMap.put(new Integer(2), new ControlTagItem("Visa or Master Card", BuyerPaymentMethodCodeType.VISA_MC));
    _paymentServiceMap.put(new Integer(3), new ControlTagItem("American Express", BuyerPaymentMethodCodeType.AM_EX));
    _paymentServiceMap.put(new Integer(4), new ControlTagItem("Discover Card", BuyerPaymentMethodCodeType.DISCOVER));
    _paymentServiceMap.put(new Integer(8), new ControlTagItem("Payment Option See Description", BuyerPaymentMethodCodeType.PAYMENT_SEE_DESCRIPTION));
    _paymentServiceMap.put(new Integer(17), new ControlTagItem("PayPal", BuyerPaymentMethodCodeType.PAY_PAL));
    _paymentServiceMap.put(new Integer(20), new ControlTagItem("Credit Card Accepted", BuyerPaymentMethodCodeType.CC_ACCEPTED));
  }

  private PaymentServiceHelper() {
  }

  /**
   * Return an instance of PaymentServiceHelper
   * @return PaymentServiceHelper
   */
  public static PaymentServiceHelper getInstance()
  {
    return _paymentServiceHelper;
  }

  /**
   * Return the map of available payment services/methods for a given site.
   * @param siteId SiteCodeType
   * @return Hashtable
   */
  public Hashtable getPaymentServiceMap(SiteCodeType siteId)
  {
    Hashtable paymentServices = (Hashtable) _paymentServices.get(siteId);
    if (paymentServices == null) {
      Hashtable map = eBayDetailsHelper.getInstance().getDetailEntryMapWithIntValue(siteId, PAYMENT_OPTION);
      paymentServices = new Hashtable();

      Enumeration keys = map.keys();
      while (keys.hasMoreElements()) {
        Object key = keys.nextElement();
        Object entry = _paymentServiceMap.get(key);
        if (entry != null) {
          paymentServices.put(key, entry);
        }
      }
      _paymentServices.put(siteId, paymentServices);
    }

    return paymentServices;
  }

  private static String PAYMENT_OPTION = "PaymentOption";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy