1 package edu.rice.rubis.beans;2 3 import javax.ejb.*;4 import java.rmi.*;5 6 /**7 * This is the Remote Interface of the SB_StoreBuyNow Bean8 * @author <a HREF="mailto:cecchet@rice.edu">Emmanuel Cecchet</a> and <a HREF="mailto:julie.marguerite@inrialpes.fr">Julie Marguerite</a>9 * @version 1.110 */11 public interface SB_StoreBuyNow extends EJBObject, Remote {12 13 /**14 * Create a buyNow and update the item.15 *16 * @param itemId id of the item related to the comment17 * @param userId id of the buyer18 * @param qty quantity of items19 * @since 1.120 */21 public void createBuyNow(Integer fromId, Integer userId, int qty) throws RemoteException;22 23 24 }25