📄 catalogejblocal.java
字号:
package com.jdon.estore.catalog;import javax.ejb.*;import java.util.*;import com.jdon.estore.model.*;import com.jdon.controller.model.PageIterator;public interface CatalogEJBLocal extends javax.ejb.EJBLocalObject { public Category getCategory(String catId) throws Exception; public int getCategoryAllCount() throws Exception; public PageIterator getCategories(int start, int count) throws Exception; public Product getProduct(String productId) throws Exception; public int getProductAllCount(String catId) throws Exception; public PageIterator getProducts(String catId, int start, int count) throws Exception; public Item getItem(String itemId) throws Exception; public PageIterator getItems(String productId, int start, int size) throws Exception; public PageIterator searchItems(String query, int start, int size) throws Exception; public byte[] getImage(String Id) throws Exception;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -