|
- Method resolution order:
- RoleUserManagerToFile
- UserKit.UserManagerToFile.UserManagerToFile
- UserKit.UserManager.UserManager
- UserKit.RoleUserManagerMixIn.RoleUserManagerMixIn
- __builtin__.object
Methods defined here:
- __init__(self, userClass=None)
Methods inherited from UserKit.UserManagerToFile.UserManagerToFile:
- activeUsers(self)
- addUser(self, user)
- decoder(self)
- encoder(self)
- inactiveUsers(self)
- initNextSerialNum(self)
- loadUser(self, serialNum, default=<class 'MiscUtils.NoDefault'>)
- Load the user with the given serial number from disk.
If there is no such user, a KeyError will be raised unless
a default value was passed, in which case that value is returned.
- nextSerialNum(self)
- scanSerialNums(self)
- Return a list of all the serial numbers of users found on disk.
Serial numbers are always integers.
- setEncoderDecoder(self, encoder, decoder)
- setUserClass(self, userClass)
- Overridden to mix in UserMixIn to the class that is passed in.
- setUserDir(self, userDir)
- Set the directory where user information is stored.
You should strongly consider invoking initNextSerialNum() afterwards.
- userDir(self)
- userForExternalId(self, externalId, default=<class 'MiscUtils.NoDefault'>)
- userForName(self, name, default=<class 'MiscUtils.NoDefault'>)
- userForSerialNum(self, serialNum, default=<class 'MiscUtils.NoDefault'>)
- users(self)
Methods inherited from UserKit.UserManager.UserManager:
- activeUserTimeout(self)
- cachedUserTimeout(self)
- clearCache(self)
- Clear the cache of the manager.
Use with extreme caution. If your program maintains a reference
to a user object, but the manager loads in a new copy later on,
then consistency problems could occur.
The most popular use of this method is in the regression test suite.
- createUser(self, name, password, userClass=None)
- Return a newly created user that is added to the manager.
If userClass is not specified, the manager's default user class
is instantiated. This not imply that the user is logged in.
This method invokes self.addUser().
See also: userClass(), setUserClass()
- login(self, user, password)
- Return the user if the login is successful, otherwise return None.
- loginExternalId(self, externalId, password)
- loginName(self, userName, password)
- loginSerialNum(self, serialNum, password)
- logout(self, user)
- modifiedUserTimeout(self)
- numActiveUsers(self)
- Return the number of active users, e.g., users that are logged in.
- setActiveUserTimeout(self, value)
- setCachedUserTimeout(self, value)
- setModifiedUserTimeout(self, value)
- shutDown(self)
- Perform any tasks necessary to shut down the user manager.
Subclasses may override and must invoke super as their *last* step.
- userClass(self)
- Return the userClass, which is used by createUser.
The default value is UserKit.User.User.
Data descriptors inherited from UserKit.UserManager.UserManager:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
Methods inherited from UserKit.RoleUserManagerMixIn.RoleUserManagerMixIn:
- addRole(self, role)
- clearRoles(self)
- delRole(self, name)
- hasRole(self, name)
- initUserClass(self)
- Invoked by __init__ to set the default user class to RoleUser.
- role(self, name, default=<class 'MiscUtils.NoDefault'>)
- roles(self)
|