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

📄 inetstore.java

📁 一个Struts写的网上购物系统,是一个不错的实例.
💻 JAVA
字号:
package netstore.service.ejb;

import java.rmi.RemoteException;
import java.util.List;
import netstore.catalog.view.ItemDetailView;
import netstore.customer.view.UserView;
import netstore.framework.exceptions.*;

/**
 * The business interface for the Netstore session bean
 */
public interface INetstore {

  public UserView authenticate( String email, String password )
    throws InvalidLoginException, ExpiredPasswordException,
      AccountLockedException, DatastoreException, RemoteException;

  public List getFeaturedItems(  ) throws DatastoreException, RemoteException;

  public ItemDetailView getItemDetailView( String itemId )
    throws DatastoreException, RemoteException;
}

⌨️ 快捷键说明

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