⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 istorefrontservice.java

📁 《基于Eclipse的开源框架技术与实战》[第5章]随书源码
💻 JAVA
字号:
package com.free.struts.storefront.service;import javax.servlet.ServletContext;import java.util.List;import com.free.struts.storefront.catalog.view.ItemDetailView;import com.free.struts.storefront.catalog.view.ItemSummaryView;import com.free.struts.storefront.framework.exceptions.DatastoreException;import com.free.struts.storefront.framework.security.IAuthentication;/** * <p>Title: Eclipse Plugin Development</p> * <p>Description: Free download</p> * <p>Copyright: Copyright (c) 2006</p> * <p>Company: Free</p> * @author gan.shu.man * @version 1.0 */public interface IStorefrontService extends IAuthentication {  public List getFeaturedItems() throws DatastoreException;  public ItemDetailView getItemDetailView( String itemId )    throws DatastoreException; // public void setServletContext( ServletContext ctx );  public void destroy();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -