Examples of freeAmount()


Examples of org.zeroexchange.money.currency.CurrencyManager.freeAmount()

    @Override
    public void freeAmount(BigDecimal amount, ZECurrency currencyCode,
            User user) {
        CurrencyManager moneyAmountProvider = getCurrencyManager(currencyCode);
        if(moneyAmountProvider != null) {
            moneyAmountProvider.freeAmount(amount, currencyCode, user);
        }
    }

    /**
     * {@inheritDoc}
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.