inetstore.java
来自「一个netstore的完整代码,他使用了j2ee和webservice技术,并使」· 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 + -
显示快捷键?