📄 productorderlocalhome.java
字号:
/*
* @author : Neelesh
* @Version : 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the File : ProductOrderLocalHome.java
* Creation/Modification History :
*
* Neelesh 11-Jan-2003 Created
*
*/
package oracle.otnsamples.vsm.entities;
import java.util.Collection;
import java.util.Date;
// EJB imports
import javax.ejb.CreateException;
import javax.ejb.EJBLocalHome;
import javax.ejb.FinderException;
/**
* Home interface for ProductOrder entity. The interface defines create() and
* finder methods for the entity. Generated by Oracle9i JDeveloper Tool.
*/
public interface ProductOrderLocalHome extends EJBLocalHome {
ProductOrderLocal create( ) throws CreateException;
ProductOrderLocal create( String id, String user, Date date,
String address, String city, String state,
int zip, String country, String phone )
throws CreateException;
ProductOrderLocal findByPrimaryKey( String orderID )
throws FinderException;
Collection findAll( ) throws FinderException;
Collection findLatestOrdersForUser( String userName, int count )
throws FinderException;
Collection findOrdersForUser( String userName )
throws FinderException;
Collection findPendingOrdersForShop( String shopID )
throws FinderException;
ProductOrderLocal create( String id, Date regDate, String userName )
throws CreateException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -