Methods Summary |
---|
public final java.lang.String | getAdapter()Returns the adapter name.
return adapter;
|
public final java.lang.String | getConfiguration()Returns the adapter configuration for the provider.
return configuration;
|
public final java.lang.String | getCurrency()Returns the currency of the payment.
return currency;
|
public final java.lang.String | getName()Returns the provider name.
return name;
|
public final int | getNumPriceTags()Returns the number of price tags defined for the provider.
return (prices != null) ? prices.length : 0;
|
public final java.lang.String | getPaySpecificPriceInfo(int index)Returns the provider specific price information for the given price tag.
return paySpecificPriceInfo[index];
|
public final double | getPrice(int index)Returns the price for the given price tag.
return prices[index];
|