1 13 14 package freeforums.user; 15 16 import javax.ejb.EJBObject ; 17 import javax.ejb.*; 18 import java.rmi.RemoteException ; 19 import org.jdom.*; 20 21 public interface UserManager extends EJBObject { 22 23 public Document addUser(Document userDetails) throws RemoteException ; 24 25 public Document modifyUser(Document userDetails) throws RemoteException ; 26 27 public Document getUser(Document userName) throws RemoteException ; 28 29 public Document loginUser(Document loginDocument) throws RemoteException ; 30 31 public Document addUserToForum(Document userDetails) throws RemoteException ; 32 33 public Document removeUserFromForum(Document userDetails) throws RemoteException ; 34 35 public Document findAll() throws RemoteException , FinderException; 36 37 } 38 | Popular Tags |