userlocalhome.java
来自「CroftSoft Code Library是一个开源的可移植的纯Java游戏库」· Java 代码 · 共 43 行
JAVA
43 行
package com.croftsoft.apps.wyrm.entity;
import java.rmi.*;
import java.util.*;
import javax.ejb.*;
/*********************************************************************
* Local home interface for User EJB.
*
* @version
* 2002-10-03
* @since
* 2002-09-30
* @author
* <a href="http://alumni.caltech.edu/~croft">David Wallace Croft</a>
*********************************************************************/
public interface UserLocalHome
extends EJBLocalHome
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
{
public UserLocal create ( String username )
throws CreateException, EJBException;
public UserLocal findByPrimaryKey ( Long id )
throws FinderException, EJBException;
public UserLocal findByUsername ( String username )
throws FinderException, EJBException;
public Collection findAll ( )
throws FinderException, EJBException;
public String [ ] getUsernames ( )
throws FinderException, EJBException;
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?