📄 accounthome.java
字号:
package ch05.section09;
import javax.ejb.*;
import java.rmi.RemoteException;
import java.util.Enumeration;
import ch05.section08.*;
public interface AccountHome
extends EJBHome {
Account create(String accountID, String ownerName) throws CreateException,
RemoteException;
public Account findByPrimaryKey(PKClass key) throws FinderException,
RemoteException;
public Enumeration findByOwnerName(String name) throws FinderException,
RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -