📄 userhome.java
字号:
/* * UserHome.java * * Created on 2003年5月13日, 上午10:04 *//** * * @author administrator */import java.util.*;import java.rmi.RemoteException;import javax.ejb.*;public interface UserHome extends EJBHome {//home method //create a user.we don't use for this programm. public User create() throws RemoteException, CreateException; //find the user with the specific PrimaryKey public User findByPrimaryKey(String id) throws FinderException, RemoteException; //find the book with the specific bookName public Collection findByUserName(String userName) throws FinderException, RemoteException; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -