bookcontroller.java~19~
来自「一个java」· JAVA~19~ 代码 · 共 24 行
JAVA~19~
24 行
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;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?