Uses of Class
ejava.examples.ejbsessionbank.bo.Account
-
-
Uses of Account in ejava.examples.ejbsessionbank.bl
Methods in ejava.examples.ejbsessionbank.bl that return Account Modifier and Type Method Description Account
Teller. closeAccount(String acctNum)
Account
Teller. createAccount(String accNum)
Account
Teller. getAccount(String acctNum)
Methods in ejava.examples.ejbsessionbank.bl that return types with arguments of type Account Modifier and Type Method Description List<Account>
Teller. getAccounts(int index, int count)
List<Account>
Teller. getOverdrawnAccounts(int index, int count)
Methods in ejava.examples.ejbsessionbank.bl with parameters of type Account Modifier and Type Method Description void
Teller. updateAccount(Account account)
-
Uses of Account in ejava.examples.ejbsessionbank.blimpl
Methods in ejava.examples.ejbsessionbank.blimpl that return Account Modifier and Type Method Description Account
TellerImpl. closeAccount(String accountNum)
Account
TellerImpl. createAccount(String accountNum)
Account
TellerImpl. getAccount(String accountNum)
Methods in ejava.examples.ejbsessionbank.blimpl that return types with arguments of type Account Modifier and Type Method Description List<Account>
TellerImpl. getAccounts(int index, int count)
List<Account>
TellerImpl. getOverdrawnAccounts(int index, int count)
Methods in ejava.examples.ejbsessionbank.blimpl with parameters of type Account Modifier and Type Method Description void
TellerImpl. updateAccount(Account account)
-
Uses of Account in ejava.examples.ejbsessionbank.bo
Fields in ejava.examples.ejbsessionbank.bo with type parameters of type Account Modifier and Type Field Description private Collection<Account>
Owner. accounts
Methods in ejava.examples.ejbsessionbank.bo that return types with arguments of type Account Modifier and Type Method Description Collection<Account>
Owner. getAccounts()
Method parameters in ejava.examples.ejbsessionbank.bo with type arguments of type Account Modifier and Type Method Description void
Owner. setAccounts(Collection<Account> accounts)
-
Uses of Account in ejava.examples.ejbsessionbank.dao
Methods in ejava.examples.ejbsessionbank.dao that return Account Modifier and Type Method Description Account
AccountDAO. createAccount(Account account)
Account
AccountDAO. getAccountById(long id)
Account
AccountDAO. getAccountByNum(String acctNum)
Account
AccountDAO. removeAccount(Account account)
Account
AccountDAO. updateAccount(Account account)
Methods in ejava.examples.ejbsessionbank.dao that return types with arguments of type Account Modifier and Type Method Description List<Account>
AccountDAO. findAccounts(String queryName, Map<String,Object> params, int index, int count)
Methods in ejava.examples.ejbsessionbank.dao with parameters of type Account Modifier and Type Method Description Account
AccountDAO. createAccount(Account account)
List<Owner>
OwnerDAO. getAccountOwners(Account account)
Account
AccountDAO. removeAccount(Account account)
Account
AccountDAO. updateAccount(Account account)
-
Uses of Account in ejava.examples.ejbsessionbank.ejb
Methods in ejava.examples.ejbsessionbank.ejb that return Account Modifier and Type Method Description Account
TellerEJB. closeAccount(String acctNum)
Account
TellerEJB. createAccount(String accountNumber)
Account
TellerEJB. getAccount(String acctNum)
Methods in ejava.examples.ejbsessionbank.ejb that return types with arguments of type Account Modifier and Type Method Description List<Account>
TellerEJB. getAccounts(int index, int count)
List<Account>
TellerEJB. getOverdrawnAccounts(int index, int count)
Methods in ejava.examples.ejbsessionbank.ejb with parameters of type Account Modifier and Type Method Description void
TellerEJB. updateAccount(Account account)
-
Uses of Account in ejava.examples.ejbsessionbank.jpa
Methods in ejava.examples.ejbsessionbank.jpa that return Account Modifier and Type Method Description Account
JPAAccountDAO. createAccount(Account account)
Account
JPAAccountDAO. getAccountById(long id)
Account
JPAAccountDAO. getAccountByNum(String acctNum)
Account
JPAAccountDAO. removeAccount(Account account)
Account
JPAAccountDAO. updateAccount(Account account)
Methods in ejava.examples.ejbsessionbank.jpa that return types with arguments of type Account Modifier and Type Method Description List<Account>
JPAAccountDAO. findAccounts(String queryName, Map<String,Object> params, int index, int count)
Methods in ejava.examples.ejbsessionbank.jpa with parameters of type Account Modifier and Type Method Description Account
JPAAccountDAO. createAccount(Account account)
List<Owner>
JPAOwnerDAO. getAccountOwners(Account account)
Account
JPAAccountDAO. removeAccount(Account account)
Account
JPAAccountDAO. updateAccount(Account account)
-