[Zope] Password 2nd Posting
Daniel G. Rusch
drusch@globalcrossing.com
Fri, 29 Oct 1999 15:20:20 -0500
Thanks for the reply,
Before I posted my question, I crawled around
lib/python/AccessControl/User.py, I saw both the _getPassword and
authenticate methods.
But, getPassword raises the NotImplemented exception as noted below:
def _getPassword(self):
"""Return the password of the user."""
raise NotImplemented
and authenticate calls the getPassword method, as noted below:
def authenticate(self, password, request):
passwrd=self._getPassword()
Am I missing something?
DR