ItemHome.java
资源名称:MyStore.rar [点击查看]
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:1k
源码类别:
百货/超市行业
开发平台:
WINDOWS
- /*
- * Generated by XDoclet - Do not edit!
- */
- package cmp;
- /**
- * Home interface for Item.
- * @lomboz generated
- */
- public interface ItemHome
- extends javax.ejb.EJBHome
- {
- public static final String COMP_NAME="java:comp/env/ejb/Item";
- public static final String JNDI_NAME="ItemBean";
- public cmp.Item create(java.lang.String itemID , java.lang.String supplierID , java.lang.String description , java.lang.Integer quantity , java.lang.Float price)
- throws javax.ejb.CreateException,java.rmi.RemoteException;
- public java.util.Collection findAll()
- throws javax.ejb.FinderException,java.rmi.RemoteException;
- public java.util.Collection findBySupplierID(java.lang.String supplierID)
- throws javax.ejb.FinderException,java.rmi.RemoteException;
- public java.util.Collection findByOutOfStock()
- throws javax.ejb.FinderException,java.rmi.RemoteException;
- public cmp.Item findByPrimaryKey(java.lang.String pk)
- throws javax.ejb.FinderException,java.rmi.RemoteException;
- }