usersession.java~4~
来自「一个使用EJB开发的真实项目」· JAVA~4~ 代码 · 共 23 行
JAVA~4~
23 行
package ejb;
import javax.ejb.EJBObject;
import java.rmi.RemoteException;
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;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?