📄 bookstoremgrifc.java
字号:
package com.bkstore.model.service.ifc;
import java.rmi.RemoteException;
import java.util.List;
import javax.xml.rpc.ServiceException;
import com.bkstore.ejb.sessionbean.ArrayOf_tns2_OrderItemDTO;
import com.bkstore.model.service.dto.BookDTO;
import com.bkstore.model.service.dto.OrderDTO;
import com.bkstore.model.service.dto.UserAccountDTO;
public interface BookStoreMgrIfc {
public boolean checkUserLogin(String loginName, String password) throws ServiceException, RemoteException;
public void saveUserInfo(UserAccountDTO userAccountDTO) throws ServiceException, RemoteException;
public List getUserList() throws ServiceException, RemoteException;
public void updateAccountBalance(UserAccountDTO userAccountDTO) throws java.rmi.RemoteException, ServiceException;
public UserAccountDTO getUserInfo(String loginName) throws ServiceException, RemoteException;
public void createBook(BookDTO createBookBookDTO) throws java.rmi.RemoteException, ServiceException;
public BookDTO getBook(int getBookBookID) throws java.rmi.RemoteException, ServiceException;
public com.bkstore.ejb.sessionbean.ArrayOf_tns2_BookDTO getBookList() throws java.rmi.RemoteException, ServiceException;
public void createOrderItem(ArrayOf_tns2_OrderItemDTO orderItemDTOs) throws java.rmi.RemoteException, ServiceException;
public int createOrder(OrderDTO orderDTO) throws java.rmi.RemoteException, com.bkstore.exception.ApplicationException, ServiceException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -