Commit e317640a authored by Fabien Morin's avatar Fabien Morin

remove self, thanks to nicolas for the review


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@35684 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ab9fe586
...@@ -37,22 +37,22 @@ class IEncryptedPassword(Interface): ...@@ -37,22 +37,22 @@ class IEncryptedPassword(Interface):
encrypted password. encrypted password.
""" """
def checkPassword(self, value): def checkPassword(value):
""" """
Check the password, usefull when changing password Check the password, usefull when changing password
""" """
def setEncodedPassword(self, value, format='default'): def setEncodedPassword(value, format='default'):
""" """
Set an already encoded password. Set an already encoded password.
""" """
def setPassword(self, value) : def setPassword(value) :
""" """
Set the password, only if the password is not empty. Set the password, only if the password is not empty.
""" """
def getPassword(self, *args, **kw): def getPassword(*args, **kw):
""" """
Retrieve password in desired format. Retrieve password in desired format.
......
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