KickJava   Java API By Example, From Geeks To Geeks.

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


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_ViewBidHistory 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_ViewBidHistory extends EJBObject, Remote {
12
13    /**
14    * Bids list header printed function
15    *
16    * @return a string in html format
17    * @since 1.1
18    */

19   public String JavaDoc printBidHistoryHeader() throws RemoteException;
20
21  /**
22    * Bids list footer printed function
23    *
24    * @return a string in html format
25    * @since 1.1
26    */

27   public String JavaDoc printBidHistoryFooter() throws RemoteException;
28
29   /**
30    * Get the list of bids related to a specific item.
31    *
32    * @return a string in html format
33    * @since 1.1
34    */

35   public String JavaDoc getBidHistory(Integer JavaDoc itemId) throws RemoteException;
36
37  
38 }
39
Popular Tags