1 22 package org.jboss.test.bank.interfaces; 23 24 import java.rmi.*; 25 import javax.ejb.*; 26 27 33 public interface Bank 34 extends EJBObject 35 { 36 38 40 42 44 public String getId() 46 throws RemoteException; 47 48 public String createAccountId(Customer customer) 49 throws RemoteException; 50 51 public String createCustomerId() 52 throws RemoteException; 53 } 54 55 75 | Popular Tags |