KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > edu > rice > rubis > beans > SB_StoreBuyNow


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 Bean
8  * @author <a HREF="mailto:cecchet@rice.edu">Emmanuel Cecchet</a> and <a HREF="mailto:julie.marguerite@inrialpes.fr">Julie Marguerite</a>
9  * @version 1.1
10  */

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 comment
17    * @param userId id of the buyer
18    * @param qty quantity of items
19    * @since 1.1
20    */

21   public void createBuyNow(Integer JavaDoc fromId, Integer JavaDoc userId, int qty) throws RemoteException;
22
23
24 }
25
Popular Tags