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