Uses of Class
clazzfish.sample.jdbc.Account
Packages that use Account
-
Uses of Account in clazzfish.sample.jdbc
Methods in clazzfish.sample.jdbc that return AccountModifier and TypeMethodDescriptionstatic AccountBankRepository.createAccountFor(User user) Creates the account for.static AccountBankRepository.getAccount(int number) Gets the account.Methods in clazzfish.sample.jdbc that return types with arguments of type AccountModifier and TypeMethodDescriptionstatic Collection<Account> BankRepository.getAccounts()Gets a list of all accounts.static Collection<Account> BankRepository.getAccountsFor(User user) Gets the accounts for.Methods in clazzfish.sample.jdbc with parameters of type AccountModifier and TypeMethodDescriptionstatic voidBankRepository.deleteAccount(Account account) Delete acount.static voidSave.voidTransfer an amount from one accout to another account.voidAccount.transfer(BigDecimal amount, Account to) Transfer an amount from one accout to another account.static voidBankRepository.transfer(Account from, int toNumber, BigDecimal amount) Transfer money from one account to another account.static voidBankRepository.transfer(Account from, Account to, BigDecimal amount) Transfer money from one account to another account.