Class MeaTransactionLimit


  • public class MeaTransactionLimit
    extends java.lang.Object
    Object for holding max amount limit for a single transaction for specified currency. Amount value includes decimals, the last two digits. 10000 = 100.00 EUR.
    • Constructor Summary

      Constructors 
      Constructor Description
      MeaTransactionLimit​(java.util.Currency currency, int maxAmount)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Currency getCurrency()
      Returns transaction limit currency.
      int getMaxAmount()
      Return transaction limit max amount, amount value includes decimals.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • MeaTransactionLimit

        public MeaTransactionLimit​(java.util.Currency currency,
                                   int maxAmount)
    • Method Detail

      • getCurrency

        public java.util.Currency getCurrency()
        Returns transaction limit currency.
        Returns:
        The transaction limit currency.
      • getMaxAmount

        public int getMaxAmount()
        Return transaction limit max amount, amount value includes decimals. The last two digits of value are decimals. 10000 = 100.00 EUR.
        Returns:
        The transaction limit max amount.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object