1 package edu.rice.rubis.beans; 2 3 import javax.ejb.*; 4 import java.rmi.*; 5 6 11 public interface SB_ViewUserInfo extends EJBObject, Remote { 12 13 21 public String getComments(UserHome userHome, Integer userId) throws RemoteException; 22 23 30 public String getUserInfo(Integer userId) throws RemoteException; 31 32 38 public String printCommentHeader() throws RemoteException; 39 40 48 public String printComment(String userName, Comment comment) throws RemoteException; 49 50 56 public String printCommentFooter() throws RemoteException; 57 58 59 } 60 | Popular Tags |