📄 shoppingfacade.java
字号:
package com.j2eeapp.cdstore.cart;
import com.j2eeapp.cdstore.customer.CustomerLocal;
import java.rmi.RemoteException;
import javax.ejb.*;
public interface ShoppingFacade extends EJBObject
{
/**
* @J2EE_METHOD -- setUserId
*/
public void setUserId (String userId) throws RemoteException;
/**
* @J2EE_METHOD -- getUserId
*/
public String getUserId () throws RemoteException;
/**
* @J2EE_METHOD -- getShoppingCart
*/
public ShoppingCart getShoppingCart () throws RemoteException;
/**
* @J2EE_METHOD -- getCustomer
*/
public CustomerLocal getCustomer () throws RemoteException;
/**
* @J2EE_METHOD -- createCustomer
*/
public CustomerLocal createCustomer () throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -