Package org.openbankdata.core.client

Examples of org.openbankdata.core.client.PageIterator


  @Override
  public List<Transaction> getTransactions(Account pAccount, LocalDate pFromDateTime,
      LocalDate pToDateTime) {
    List<Transaction> transactions = new ArrayList<Transaction>();

    PageIterator it =
        new PageIterator(getBankRequest(pAccount, pFromDateTime, pToDateTime), mBankClient);
    for (BankResponse response : it) {
      transactions.addAll(parseTransactions(response));
    }

    return filterTransactions(transactions, pFromDateTime, pToDateTime);
View Full Code Here

TOP

Related Classes of org.openbankdata.core.client.PageIterator

Copyright © 2018 www.massapicom. 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.