1 22 package org.jboss.test.jca.bank.interfaces; 23 24 27 public interface Teller extends javax.ejb.EJBObject 28 { 29 33 public void setUp() throws java.rmi.RemoteException ; 34 35 39 public void tearDown() throws java.rmi.RemoteException ; 40 41 48 public void transfer(org.jboss.test.jca.bank.interfaces.Account from, org.jboss.test.jca.bank.interfaces.Account to, 49 int amount) throws java.rmi.RemoteException ; 50 51 57 public org.jboss.test.jca.bank.interfaces.Account createAccount(java.lang.Integer id) 58 throws java.rmi.RemoteException ; 59 60 66 public int getAccountBalance(java.lang.Integer id) throws java.rmi.RemoteException ; 67 68 77 public void transferTest(org.jboss.test.jca.bank.interfaces.AccountLocal from, 78 org.jboss.test.jca.bank.interfaces.AccountLocal to, int amount, int iter) throws java.rmi.RemoteException ; 79 80 } 81 | Popular Tags |