e06bdffa8369001b17ebfb69563bbe4c
来自「《精通SOA:基于服务总线的Struts+EJB+Web Service整合应用」· 代码 · 共 15 行
TXT
15 行
package com.sample.model.service.ifc;
import java.rmi.RemoteException;
import java.util.List;
import javax.xml.rpc.ServiceException;
import wsClient.UserAccountDTO;
public interface UserAccountMgrIfc {
public boolean checkUserLogin(String loginName, String password) throws ServiceException, RemoteException;
public void saveUserInfo(UserAccountDTO userAccountDTO) throws ServiceException, RemoteException;
public List getUserList() throws ServiceException, RemoteException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?