1 package edu.rice.rubis.beans; 2 3 import javax.ejb.*; 4 import java.rmi.*; 5 6 11 public interface IDManager extends EJBObject, Remote { 12 13 20 public Integer getId() throws RemoteException; 21 22 28 public Integer getNextCategoryID() throws RemoteException; 29 30 36 public Integer getNextRegionID() throws RemoteException; 37 38 44 public Integer getNextUserID() throws RemoteException; 45 46 52 public Integer getNextItemID() throws RemoteException; 53 54 60 public Integer getNextCommentID() throws RemoteException; 61 62 68 public Integer getNextBidID() throws RemoteException; 69 70 76 public Integer getNextBuyNowID() throws RemoteException; 77 78 } 79 | Popular Tags |