📄 useraccountmgrifc.java
字号:
package com.sample.model.service.ifc;
import java.rmi.RemoteException;
import java.util.List;
import javax.ejb.CreateException;
import javax.naming.NamingException;
import com.sample.exception.ApplicationException;
import com.sample.model.service.dto.UserAccountDTO;
public interface UserAccountMgrIfc {
public boolean checkUserLogin(String loginName, String password) throws ApplicationException, NamingException, RemoteException, CreateException;
public void saveUserInfo(UserAccountDTO userAccountDTO) throws NamingException, RemoteException, CreateException;
public List getUserList() throws NamingException, RemoteException, CreateException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -