inetstoreservice.java

来自「这是一个够物网的代码!它用的是Strust开发的!是一个好的」· Java 代码 · 共 26 行

JAVA
26
字号
package netstore.service;

import javax.servlet.ServletContext;
import java.util.List;
import netstore.catalog.view.ItemDetailView;
import netstore.catalog.view.ItemSummaryView;
import netstore.framework.exceptions.DatastoreException;
import netstore.framework.security.IAuthentication;
/**
 * The business interface for the Netstore Application. It defines all
 * of the methods that a client may call on the Netstore application.
 *
 * This interface extends the IAuthentication interface to create a
 * cohesive interface for the Netstore application.
 */
public interface INetstoreService 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 + -
显示快捷键?