ItemLocalHome.java
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:1k
源码类别:

百货/超市行业

开发平台:

WINDOWS

  1. /*
  2.  * Generated by XDoclet - Do not edit!
  3.  */
  4. package cmp;
  5. /**
  6.  * Local home interface for Item.
  7.  * @lomboz generated
  8.  */
  9. public interface ItemLocalHome
  10.    extends javax.ejb.EJBLocalHome
  11. {
  12.    public static final String COMP_NAME="java:comp/env/ejb/ItemLocal";
  13.    public static final String JNDI_NAME="ItemLocal";
  14.    public cmp.ItemLocal create(java.lang.String itemID , java.lang.String supplierID , java.lang.String description , java.lang.Integer quantity , java.lang.Float price)
  15.       throws javax.ejb.CreateException;
  16.    public java.util.Collection findAll()
  17.       throws javax.ejb.FinderException;
  18.    public java.util.Collection findBySupplierID(java.lang.String supplierID)
  19.       throws javax.ejb.FinderException;
  20.    public java.util.Collection findByOutOfStock()
  21.       throws javax.ejb.FinderException;
  22.    public cmp.ItemLocal findByPrimaryKey(java.lang.String pk)
  23.       throws javax.ejb.FinderException;
  24. }