istorefrontservice.java

来自「《基于Eclipse的开源框架技术与实战》[第5章]随书源码」· Java 代码 · 共 30 行

JAVA
30
字号
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 + =
减小字号Ctrl + -
显示快捷键?