- __delitem__(self, name)
-
Implements python dictionary interface
- __getitem__(self, name)
-
Implements python dictionary interface
- __setitem__(self, name, value)
-
Implements python dictionary interface
- get(self, name, defaultValue=None)
-
Implements python dictionary 'get' interface for the user data associated with this user
- getPassword(self)
-
Get the SHA1 hash of this users password
- getUserData(self)
-
Returns a dictionary containing key value pairs of user data
- getUsername(self)
-
Get the user name of this user.
- has_key(self, key)
-
Implements python dictionary 'has_key' interface
- items(self)
-
Implements python dictionary 'items' interface
- keys(self)
-
Implements python dictionary 'keys' interface
- setPassword(self, newPasswd)
- setUserData(self, userData)
-
Sets the user data using the specified dictionary
- values(self)
-
Implements python dictionary 'values' interface