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

📄 useraccountmgrimp.java

📁 精通SOA开发环境书中各章实例源码
💻 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 + -