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

📄 userlocal.java

📁 《Java网络程序设计.rar》包括三个网络程序的源代码。
💻 JAVA
字号:
/* */package org.impact.stars.organizationmd.user.ejb;import java.util.Collection;import java.util.Locale;import java.rmi.RemoteException;import javax.ejb.EJBLocalObject;import javax.ejb.CreateException;import javax.ejb.FinderException;import javax.ejb.DuplicateKeyException;import org.impact.stars.organizationmd.stakeholder.model.StakeholderModel;import org.impact.stars.organizationmd.stakeholder.ejb.StakeholderLocal;import org.impact.stars.organizationmd.user.exceptions.UserAppException;/** * This is the session facade for the user component. This is implemented * as a session bean which exports interfaces of the Stakeholder and order * components */public interface UserLocal extends EJBLocalObject {    public StakeholderModel getStakeholderDetails(String userId)        throws RemoteException, FinderException;/*    public void changeContactInformation(ContactInformation info,                                         String userId)        throws RemoteException, FinderException;    public boolean createStakeholder(String userId, String password,                          String status, ContactInformation info)        throws RemoteException, CreateException, DuplicateKeyException, UserAppException;    public OrderModel getOrderDetails(int orderId)        throws RemoteException, FinderException;    public int createOrder(String userId, Collection lineItems, Address shipToAddr,                        Address billToAddr,  String shipToFirstName,                        String shipToLastName, String billToFirstName,                        String billToLastName, CreditCard chargeCard,                        String carrier, double totalPrice, Locale locale)        throws RemoteException, CreateException, UserAppException; */}

⌨️ 快捷键说明

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