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

📄 useraccountmgrimp.java

📁 《精通SOA:基于服务总线的Struts+EJB+Web Service整合应用开发》原书的实例代码
💻 JAVA
字号:
package com.sample.model.service.imp;

import java.rmi.RemoteException;
import java.util.ArrayList;
import java.util.List;
import org.apache.axis.AxisFault;

import javax.xml.rpc.ServiceException;

import com.sample.ejb.sessionbean.ArrayOf_tns2_UserAccountDTO;
import com.sample.ejb.sessionbean.UserAccountMgr;
import com.sample.ejb.sessionbean.UserAccountMgrServiceLocator;
import com.sample.model.service.dto.UserAccountDTO;
import com.sample.model.service.ifc.UserAccountMgrIfc;

public class UserAccountMgrImp implements  UserAccountMgrIfc {
	
	private UserAccountMgr getUserAccountMgr() throws ServiceException
	{
		UserAccountMgrServiceLocator userAccountMgrLocator = new UserAccountMgrServiceLocator();
		UserAccountMgr userAccountMgr = userAccountMgrLocator.getUserAccountMgr();
		return userAccountMgr;
	}
	
	public boolean checkUserLogin(String loginName, String password) throws ServiceException, RemoteException {

		return getUserAccountMgr().checkUserLogin(loginName,password);

	}
	
	public void saveUserInfo(UserAccountDTO userAccountDTO) throws ServiceException, RemoteException {
		getUserAccountMgr().saveUserInfo(userAccountDTO);
	}
	
    public List getUserList() throws ServiceException, RemoteException {
    	
    	ArrayList list = new ArrayList();
		ArrayOf_tns2_UserAccountDTO userAccountArrays = getUserAccountMgr().getUserList();
		UserAccountDTO[] userAccountDTOs = userAccountArrays.getUserAccountDTO();
		
		for (int i=0; i<userAccountDTOs.length; i++) {
			list.add(userAccountDTOs[i]);
			
		}
		return list;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -