usersession.java
来自「一个使用EJB开发的真实项目」· Java 代码 · 共 29 行
JAVA
29 行
package ejb;
import javax.ejb.EJBObject;
import java.rmi.RemoteException;
import java.util.List;
public interface UserSession extends EJBObject {
public boolean check(String us, String pw) throws RemoteException;
public boolean inster(String us, String name, String pw,
String shenfenzheng, String telephone, String address,
String youzhengbianma, String email) throws
RemoteException;
public boolean delete(String us) throws RemoteException;
public boolean xiugai(String us, String name, String pw,
String shenfenzheng, String telephone, String address,
String youzhengbianma, String email) throws
RemoteException;
public boolean jiance(String us) throws RemoteException;
public List selectAllUser() throws RemoteException;
public List selectOnlyUser(String userCode) throws RemoteException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?