Uses of Class
ejava.examples.ejbsessionbank.bl.BankException
-
Packages that use BankException Package Description ejava.examples.ejbsessionbank.bl ejava.examples.ejbsessionbank.blimpl ejava.examples.ejbsessionbank.ejb -
-
Uses of BankException in ejava.examples.ejbsessionbank.bl
Methods in ejava.examples.ejbsessionbank.bl that throw BankException Modifier and Type Method Description Owner
Teller. addOwner(long ownerId, String accountNumber)
Account
Teller. closeAccount(String acctNum)
Account
Teller. createAccount(String accNum)
Owner
Teller. createOwner(String firstName, String lastName, String ssn)
Account
Teller. getAccount(String acctNum)
List<Account>
Teller. getAccounts(int index, int count)
Ledger
Teller. getLedger()
double
Teller. getLedgerAveBalance()
long
Teller. getLedgerCount()
double
Teller. getLedgerSum()
List<Account>
Teller. getOverdrawnAccounts(int index, int count)
List<Owner>
Teller. getOwners(int index, int count)
Owner
Teller. openAccount(long ownerId, String accountNumber)
void
Teller. removeOwner(long ownerId)
void
Teller. updateAccount(Account account)
-
Uses of BankException in ejava.examples.ejbsessionbank.blimpl
Methods in ejava.examples.ejbsessionbank.blimpl that throw BankException Modifier and Type Method Description Owner
TellerImpl. addOwner(long ownerId, String accountNumber)
Account
TellerImpl. closeAccount(String accountNum)
Account
TellerImpl. createAccount(String accountNum)
Owner
TellerImpl. createOwner(String firstName, String lastName, String ssn)
Account
TellerImpl. getAccount(String accountNum)
List<Account>
TellerImpl. getAccounts(int index, int count)
Ledger
TellerImpl. getLedger()
double
TellerImpl. getLedgerAveBalance()
long
TellerImpl. getLedgerCount()
double
TellerImpl. getLedgerSum()
List<Account>
TellerImpl. getOverdrawnAccounts(int index, int count)
List<Owner>
TellerImpl. getOwners(int index, int count)
Owner
TellerImpl. openAccount(long ownerId, String accountNumber)
void
TellerImpl. updateAccount(Account account)
-
Uses of BankException in ejava.examples.ejbsessionbank.ejb
Methods in ejava.examples.ejbsessionbank.ejb that throw BankException Modifier and Type Method Description Owner
TellerEJB. addOwner(long ownerId, String accountNumber)
Account
TellerEJB. closeAccount(String acctNum)
Account
TellerEJB. createAccount(String accountNumber)
Owner
TellerEJB. createOwner(String firstName, String lastName, String ssn)
Account
TellerEJB. getAccount(String acctNum)
List<Account>
TellerEJB. getAccounts(int index, int count)
Ledger
TellerEJB. getLedger()
Ledger
TellerEJB. getLedger2()
This method takes advantage of the DAO/Business logic knowledge of how to create a DTO.Ledger
TellerRemote. getLedger2()
double
TellerEJB. getLedgerAveBalance()
This method is and example of a method that may be too fine for a remote method and should be encapsulated in a remote facade call.long
TellerEJB. getLedgerCount()
This method is and example of a method that may be too fine for a remote method and should be encapsulated in a remote facade call.double
TellerEJB. getLedgerSum()
This method is and example of a method that may be too fine for a remote method and should be encapsulated in a remote facade call.List<Account>
TellerEJB. getOverdrawnAccounts(int index, int count)
List<Owner>
TellerEJB. getOwners(int index, int count)
List<OwnerDTO>
TellerEJB. getOwnersDTO(int index, int count)
List<OwnerDTO>
TellerRemote. getOwnersDTO(int index, int count)
List<Owner>
TellerEJB. getOwnersLoaded(int index, int count)
List<Owner>
TellerRemote. getOwnersLoaded(int index, int count)
List<Owner>
TellerEJB. getOwnersPOJO(int index, int count)
List<Owner>
TellerRemote. getOwnersPOJO(int index, int count)
Owner
TellerEJB. openAccount(long ownerId, String accountNumber)
void
TellerEJB. removeOwner(long ownerId)
void
TellerEJB. updateAccount(Account account)
-