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 Account
BankRepository.createAccountFor
(User user) Creates the account for.static Account
BankRepository.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 void
BankRepository.deleteAccount
(Account account) Delete acount.static void
Save.void
Transfer an amount from one accout to another account.void
Account.transfer
(BigDecimal amount, Account to) Transfer an amount from one accout to another account.static void
BankRepository.transfer
(Account from, int toNumber, BigDecimal amount) Transfer money from one account to another account.static void
BankRepository.transfer
(Account from, Account to, BigDecimal amount) Transfer money from one account to another account.