⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usersession.java~7~

📁 一个使用EJB开发的真实项目
💻 JAVA~7~
字号:
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;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -