usersession.java~9~

来自「一个使用EJB开发的真实项目」· JAVA~9~ 代码 · 共 26 行

JAVA~9~
26
字号
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 + =
减小字号Ctrl + -
显示快捷键?