inetstoreservice.java
来自「网上商店 新增功能: 1」· Java 代码 · 共 28 行
JAVA
28 行
package netstore.service;
import javax.servlet.ServletContext;
import java.util.List;
import netstore.framework.exceptions.DatastoreException;
import netstore.framework.security.IAuthentication;
import netstore.businessobjects.*;
import netstore.framework.ShoppingCart;
/**
* 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. 继承IAuthentication接口
*/
public interface INetstoreService extends IAuthentication {
public void setServletContext(ServletContext ctx);
public ServletContext getServletContext();
public void destroy();
public int getRowCount();
public void setRowCount(int rowCount);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?