| java.lang.Object org.jboss.test.util.ejb.SessionSupport org.jboss.test.banknew.ejb.TellerSessionBean
All known Subclasses: org.jboss.test.banknew.ejb.TellerSessionSession,
TellerSessionBean | public class TellerSessionBean extends SessionSupport (Code) | | The Session bean represents a bank.
author: Andreas Schaefer version: $Revision: 57211 $ |
Method Summary | |
public AccountData | createAccount(String pCustomerId, int pType, float pInitialDeposit) | public CustomerData | createCustomer(String pBankId, String pName, float pInitialDeposit) | public void | deposit(String pToAccountId, float pAmount) | public AccountData | getAccount(String pCustomerId, int pType) | public AccountData | getAccount(String pAccountId) | public Collection | getAccounts(String pCustomerId) | public CustomerData | getCustomer(String pCustomerId) | public Collection | getCustomers(String pBankId) | public void | removeAccount(String pAccountId) | public void | removeAccount(String pCustomerId, int pType) | public void | removeCustomer(String pCustomerId) | public void | transfer(String pFromAccountId, String pToAccountId, float pAmount) | public void | withdraw(String pFromAccountId, float pAmount) |
|
|