bookstoremgrifc.java

来自「《精通SOA:基于服务总线的Struts+EJB+Web Service整合应用」· Java 代码 · 共 26 行

JAVA
26
字号
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 + =
减小字号Ctrl + -
显示快捷键?