1 package edu.rice.rubis.beans; 2 3 import javax.ejb.*; 4 import java.rmi.*; 5 6 11 public interface SB_BrowseCategories extends EJBObject, Remote { 12 13 19 public String getCategories(String regionName, String userName, String password) throws RemoteException; 20 21 28 29 public String printCategory(Category category) throws RemoteException; 30 31 36 public String printCategoryByRegion(Category category, int regionId) throws RemoteException; 37 38 43 public String printCategoryToSellItem(Category category, int userId) throws RemoteException; 44 45 } 46 | Popular Tags |