fix for a bug reported by alessio.dallapiazza@gmail.com (AttributeError: users)

This commit is contained in:
Miroslav Stampar 2010-12-25 09:13:57 +00:00
parent 6845d402fa
commit 9853c1ec7f

View File

@ -43,3 +43,19 @@ class Enumeration(GenericEnumeration):
logger.warn(warnMsg)
return []
def getCurrentUser(self):
warnMsg = "on Microsoft Access it is not possible to enumerate the current user"
logger.warn(warnMsg)
def getUsers(self):
warnMsg = "on Microsoft Access it is not possible to enumerate the users"
logger.warn(warnMsg)
return []
def getPrivileges(self, *args):
warnMsg = "on Microsoft Access it is not possible to enumerate the user privileges"
logger.warn(warnMsg)
return {}