1 2 package Jt.ejb.examples.bmp; 3 4 import java.rmi.RemoteException ; 5 6 9 public interface MemberLocalHome 10 extends javax.ejb.EJBLocalHome  11 { 12 13 MemberLocal create(String email, String firstName, String lastName) 14 throws javax.ejb.CreateException ; 15 16 MemberLocal findByPrimaryKey (String primaryKey) throws 17 javax.ejb.FinderException ; 18 19 } 20 | Popular Tags |