customerlocalhome.java
来自「噶额外噶外骨骼感广泛高热感 就 啊啊」· Java 代码 · 共 55 行
JAVA
55 行
/*
* @author Neelesh
* @version 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the Application : CustomerLocalHome.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 Country entity. The interface defines create() and
* finder methods for the entity. Generated by Oracle9i JDeveloper Tool.
*/
public interface CustomerLocalHome extends EJBLocalHome {
CustomerLocal create( ) throws CreateException;
CustomerLocal create( String userName, String password, String firstName,
String lastName, String email, String phone,
String address, String city, String state, int zip,
String provider, String cardNumber,
Date expiryDate, String role, String langID )
throws CreateException;
CustomerLocal create( String userName, String firstName, String email,
String address, String city, String state,
String countryID, Integer zip, String phone,
String role, String password )
throws CreateException;
CustomerLocal create( String userName, String firstName, String lastName,
String email, String address, String city,
String state, String countryID, Integer zip,
String phone, String role, String password,
String cardProvider, String cardNumber,
Date cardExpiryDate )
throws CreateException;
CustomerLocal findByPrimaryKey( String primaryKey )
throws FinderException;
Collection findAll( ) throws FinderException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?