All Packages Class Hierarchy This Package Previous Next Index
|  | 
java.lang.Object | +----Acme.Conf.User
A person who uses the conferencing system. Each user has a userid (guaranteed unique across the system), a real name, an email address, a URL, and a bio. The user also has a list of conferences he or she is interested in.
This is an abstract class with separate implementations on the client and server sides, mirrored via RPC.
 Fetch the software.
 Fetch the entire Acme package.
 
 
 User()
	User()
   
 equals(Object)
	equals(Object)
   getBio()
	getBio()
   getConflist()
	getConflist()
   getEmail()
	getEmail()
   getRealName()
	getRealName()
   getSeentab()
	getSeentab()
   getUrl()
	getUrl()
   getUserid()
	getUserid()
   hashCode()
	hashCode()
   setBio(Session, String)
	setBio(Session, String)
   setEmail(Session, String)
	setEmail(Session, String)
   setRealName(Session, String)
	setRealName(Session, String)
   setUrl(Session, String)
	setUrl(Session, String)
   
 User
User
public User()
 
 getUserid
getUserid
public abstract String getUserid()
 getRealName
getRealName
public abstract String getRealName()
 getEmail
getEmail
public abstract String getEmail()
 getUrl
getUrl
public abstract String getUrl()
 getBio
getBio
public abstract String getBio()
 getConflist
getConflist
public abstract Conflist getConflist()
 getSeentab
getSeentab
public abstract Seentab getSeentab()
 setRealName
setRealName
 public abstract void setRealName(Session session,
                                  String realName)
Only the administrator may do this.
 setEmail
setEmail
 public abstract void setEmail(Session session,
                               String email)
Only the user or the administrator may do this.
 setUrl
setUrl
 public abstract void setUrl(Session session,
                             String url)
Only the user or the administrator may do this.
 setBio
setBio
 public abstract void setBio(Session session,
                             String bio)
Only the user or the administrator may do this.
 hashCode
hashCode
public abstract int hashCode()
 equals
equals
public abstract boolean equals(Object obj)
All Packages Class Hierarchy This Package Previous Next Index
ACME Java ACME Labs