1 11 12 package freeforums.user; 13 14 import java.rmi.RemoteException ; 15 import javax.ejb.*; 16 17 public interface User extends EJBObject { 18 19 public String getUserName() throws RemoteException ; 20 public void setUserName(String userName) throws RemoteException ; 21 22 public String getPassword() throws RemoteException ; 23 public void setPassword(String password) throws RemoteException ; 24 25 public String getRealName() throws RemoteException ; 26 public void setRealName(String realName) throws RemoteException ; 27 28 public String getEmailAddress() throws RemoteException ; 29 public void setEmailAddress(String emailAddress) throws RemoteException ; 30 31 public boolean isSuperUser() throws RemoteException ; 32 public void setSuperUser(boolean superUser) throws RemoteException ; 33 34 } 35 | Popular Tags |