public interface DepositAccountService
| Modifier and Type | Method and Description |
|---|---|
boolean |
confirmationOfFunds(FundsConfirmationRequestBO requestBO) |
DepositAccountBO |
createDepositAccount(DepositAccountBO depositAccount,
String userName) |
void |
depositCash(String accountId,
AmountBO amount,
String user) |
List<DepositAccountBO> |
findByAccountNumberPrefix(String accountNumberPrefix) |
DepositAccountDetailsBO |
getDepositAccountByIban(String iban,
LocalDateTime refTime,
boolean withBalances) |
DepositAccountDetailsBO |
getDepositAccountById(String accountId,
LocalDateTime refTime,
boolean withBalances) |
List<DepositAccountDetailsBO> |
getDepositAccountsByIban(List<String> ibans,
LocalDateTime refTime,
boolean withBalances) |
TransactionDetailsBO |
getTransactionById(String accountId,
String transactionId) |
List<TransactionDetailsBO> |
getTransactionsByDates(String accountId,
LocalDateTime dateFrom,
LocalDateTime dateTo) |
String |
readIbanById(String id) |
DepositAccountBO createDepositAccount(DepositAccountBO depositAccount, String userName) throws DepositAccountNotFoundException
DepositAccountNotFoundExceptionDepositAccountDetailsBO getDepositAccountByIban(String iban, LocalDateTime refTime, boolean withBalances) throws DepositAccountNotFoundException
DepositAccountNotFoundExceptionList<DepositAccountDetailsBO> getDepositAccountsByIban(List<String> ibans, LocalDateTime refTime, boolean withBalances) throws DepositAccountNotFoundException
DepositAccountNotFoundExceptionDepositAccountDetailsBO getDepositAccountById(String accountId, LocalDateTime refTime, boolean withBalances) throws DepositAccountNotFoundException
DepositAccountNotFoundExceptionTransactionDetailsBO getTransactionById(String accountId, String transactionId) throws TransactionNotFoundException
TransactionNotFoundExceptionList<TransactionDetailsBO> getTransactionsByDates(String accountId, LocalDateTime dateFrom, LocalDateTime dateTo) throws DepositAccountNotFoundException
DepositAccountNotFoundExceptionboolean confirmationOfFunds(FundsConfirmationRequestBO requestBO) throws DepositAccountNotFoundException
DepositAccountNotFoundExceptionList<DepositAccountBO> findByAccountNumberPrefix(String accountNumberPrefix)
void depositCash(String accountId, AmountBO amount, String user) throws DepositAccountNotFoundException
DepositAccountNotFoundExceptionCopyright © 2019. All rights reserved.