KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > testPackage > ProductCodeTblLocalHome


1
2 package testPackage;
3
4
5 /**
6  * This is the local-home interface for ProductCodeTbl enterprise bean.
7  */

8 public interface ProductCodeTblLocalHome extends javax.ejb.EJBLocalHome JavaDoc {
9     
10     testPackage.ProductCodeTblLocal findByPrimaryKey(java.lang.String JavaDoc key) throws javax.ejb.FinderException JavaDoc;
11
12     public testPackage.ProductCodeTblLocal create(java.lang.String JavaDoc prodCode, java.lang.String JavaDoc discountCode, java.lang.String JavaDoc description) throws javax.ejb.CreateException JavaDoc;
13     
14     
15 }
16
Popular Tags