Commit aaeb1489 authored by Chris McDonough's avatar Chris McDonough

First cut at a minimalist user folder API.

parent 2ee28e32
class IStandardUserFolder:
def getUser(self, name):
"""
Returns the user object specified by name. If there is no
user named 'name' in the user folder, return None.
"""
def getUsers(self):
"""
Returns a sequence of all user objects which reside in the user
folder.
"""
def getUserNames(self):
"""
Returns a sequence of names of the users which reside in the user
folder.
"""
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment