📄 customercontroller.java
字号:
package bookstore.ejb;import bookstore.util.*;import javax.ejb.*;import java.util.*;import java.rmi.*;public interface CustomerController extends javax.ejb.EJBObject { public String createCustomer(CustomerDetails customerValue) throws Exception, RemoteException; public CustomerDetails getCustomerValueByAccount(String account) throws RemoteException; public void removeCustomer(String customerId) throws NoSuchEntityException, RemoteException; public void updateCustomer(CustomerDetails customerValue) throws NoSuchEntityException,RemoteException; public CustomerDetails getCustomerValue(String customerId) throws RemoteException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -