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

de.adorsys.ledgers.middleware.api.service.CurrencyService Maven / Gradle / Ivy

There is a newer version: 4.17
Show newest version
package de.adorsys.ledgers.middleware.api.service;

import java.util.Currency;
import java.util.Set;

public interface CurrencyService {

    /**
     * @return list of supported currencies
     */
    Set getSupportedCurrencies();

    /**
     * Return boolean value if currency is supported
     *
     * @param currency currency used
     */
    boolean isCurrencyValid(Currency currency);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy