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.
public User()
public abstract String getUserid()
public abstract String getRealName()
public abstract String getEmail()
public abstract String getUrl()
public abstract String getBio()
public abstract Conflist getConflist()
public abstract Seentab getSeentab()
public abstract void setRealName(Session session, String realName)
Only the administrator may do this.
public abstract void setEmail(Session session, String email)
Only the user or the administrator may do this.
public abstract void setUrl(Session session, String url)
Only the user or the administrator may do this.
public abstract void setBio(Session session, String bio)
Only the user or the administrator may do this.
public abstract int hashCode()
public abstract boolean equals(Object obj)
All Packages Class Hierarchy This Package Previous Next Index
ACME Java ACME Labs