📄 bookcontroller.java
字号:
package bookstore.ejb;import bookstore.util.*;import javax.ejb.*;import java.util.*;import java.rmi.*;public interface BookController extends javax.ejb.EJBObject{ public String createBook(BookDetails bookValue) throws Exception, RemoteException; public void removeBook(String bookId) throws NoSuchEntityException, RemoteException; public void updateBook(BookDetails bookValue) throws NoSuchEntityException, RemoteException; public ArrayList getBooksByName(String name) throws ObjectNotFoundException, RemoteException; public ArrayList getBooksBySort(String Sort) throws ObjectNotFoundException, RemoteException; public ArrayList getBooksByConditions(BookDetails bookValue) throws ObjectNotFoundException,RemoteException; public ArrayList getRecommendedBooks() throws ObjectNotFoundException,RemoteException; public ArrayList getHotBooks() throws ObjectNotFoundException,RemoteException; public ArrayList getBooksNeeded() throws ObjectNotFoundException,RemoteException; public ArrayList getBooksInShort() throws ObjectNotFoundException,RemoteException; public ArrayList getNewBooks() throws ObjectNotFoundException,RemoteException; public ArrayList getBargainBooks() throws ObjectNotFoundException,RemoteException; public BookDetails getBookValue(String bookId) throws RemoteException; public ArrayList getTopTenPreMonth() throws ObjectNotFoundException,RemoteException; public ArrayList getTopTenSaleNum() throws ObjectNotFoundException,RemoteException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -