📄 useraccountmgrimp.java
字号:
package com.sample.model.service.imp;
import java.util.ArrayList;
import java.util.List;
import com.sample.exception.ApplicationException;
import com.sample.model.service.dto.UserAccountDTO;
import com.sample.model.service.ifc.UserAccountMgrIfc;
public class UserAccountMgrImp implements UserAccountMgrIfc {
private static ArrayList users = new ArrayList();
private static int accountID = 0;
public boolean checkUserLogin(String loginName, String password) throws ApplicationException{
for(int i=0; i<users.size(); i++){
UserAccountDTO userAccountDTO = (UserAccountDTO) users.get(i);
if(userAccountDTO.getLoginName().equals(loginName))
{
if(userAccountDTO.getPassword().equals(password))
return true;
else
throw new ApplicationException("loginNameNotMatched");
}
}
throw new ApplicationException("noSuchLoginName");
}
public void saveUserInfo(UserAccountDTO userAccountDTO) {
userAccountDTO.setUserAccountID(new Integer(accountID++));
users.add(userAccountDTO);
}
public List getUserList() {
return users;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -