| java.lang.Object vqwiki.users.Usergroup
All known Subclasses: vqwiki.users.LdapUsergroup, vqwiki.users.NoUsergroup,
Usergroup | abstract public class Usergroup (Code) | | Abstract class to handle user groups
version: $Revision: 636 $ - $Date: 2006-04-20 02:14:40 +0200 (do, 20 apr 2006) $ author: SinnerSchrader (tobsch) |
getFullnameById | abstract public String getFullnameById(String uid)(Code) | | Get the full name of an user by its user-ID
Parameters: uid - The user-ID of this user The full name of this user |
getInstance | public static Usergroup getInstance()(Code) | | Get an instance of the user group class.
Instance to the user group class |
getKnownEmailById | abstract public String getKnownEmailById(String user)(Code) | | Get the email address of an user by its user-ID
Parameters: uid - The user-ID of this user The email address of this user |
getListOfAllUsers | abstract public List getListOfAllUsers()(Code) | | Get a list of all users.
List of all users. The list contains SelectorBeans with the user-ID as key and the fullusername as label. See Also: vqwiki.servlets.beans.SelectorBean |
getUserDetails | abstract public String getUserDetails(String uid)(Code) | | Get the user details of this user by its user-ID. The user details is a string, which is
set in the admin section. It contains some placeholders, which are replaced by values from
the user repository
Parameters: uid - The user-ID of this user The user details section |
isEmailValidated | public boolean isEmailValidated()(Code) | | Contains the repository valid (already confirmed) email addresses?
If yes, then we can skip the registration process and the user is automatically registered.
true, if so. false otherwise. |
|
|