inetstore.java
来自「这是一个够物网的代码!它用的是Strust开发的!是一个好的」· Java 代码 · 共 23 行
JAVA
23 行
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 + =
减小字号Ctrl + -
显示快捷键?