catalogejblocal.java
来自「用JBuilder+Jboos+mysql实现的EJB项目」· Java 代码 · 共 30 行
JAVA
30 行
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 + =
减小字号Ctrl + -
显示快捷键?