1 4 package test.interfaces; 5 6 13 public interface CustomerHome 14 extends test.interfaces.PersonHome 15 { 16 public static final String COMP_NAME="java:comp/env/ejb/Customer"; 17 public static final String JNDI_NAME="blah/bank/Customer"; 18 19 public test.interfaces.Customer create(test.interfaces.CustomerNormalValue data) 20 throws javax.ejb.CreateException ,java.rmi.RemoteException ; 21 22 public test.interfaces.Customer findByPrimaryKey(test.interfaces.CustomerPK pk) 23 throws javax.ejb.FinderException ,java.rmi.RemoteException ; 24 25 public void copyToArchive(test.interfaces.CustomerPK pk) 26 throws java.rmi.RemoteException ; 27 28 } 29 | Popular Tags |