contactinfolocalhome.java
来自「《J2EE企业级应用开发》一书的配套源代码」· Java 代码 · 共 31 行
JAVA
31 行
package com.j2eeapp.cdstore.customer;
import javax.ejb.*;
import com.j2eeapp.cdstore.vo.ContactInfo;
import com.j2eeapp.cdstore.vo.Address;
public interface ContactInfoLocalHome extends EJBLocalHome
{
/**
* @J2EE_METHOD -- findByPrimaryKey
* Called by the client to find an EJB bean instance, usually find by primary key.
* @throws javax.ejb.FinderException
*/
public com.j2eeapp.cdstore.customer.ContactInfoLocal findByPrimaryKey (String primaryKey)
throws FinderException;
/**
* @J2EE_METHOD -- create
* Called by the client to create an EJB bean instance. It requires a matching pair in
* the bean class, i.e. ejbCreate().
* @throws java.rmi.RemoteException
* @throws javax.ejb.CreateException
*/
public ContactInfoLocal create (String name)
throws CreateException;
public ContactInfoLocal create(String name, String telephone,
String email, Address address) throws CreateException;
public ContactInfoLocal create(ContactInfo contactInfo) throws CreateException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?