summaryrefslogtreecommitdiffstats
path: root/python/lasso.py
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-07-23 16:34:39 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-07-23 16:34:39 +0000
commita11f5fe9c4dbfae919102824c86c343bd59240c5 (patch)
tree9834c710a52210159d3b1557f914a771e75ce803 /python/lasso.py
parente2f33ecf5a89b10591b77c9666c9d4d57a836799 (diff)
downloadlasso-a11f5fe9c4dbfae919102824c86c343bd59240c5.tar.gz
lasso-a11f5fe9c4dbfae919102824c86c343bd59240c5.tar.xz
lasso-a11f5fe9c4dbfae919102824c86c343bd59240c5.zip
Added lasso_user_get_authentication_method()
Done in Python too.
Diffstat (limited to 'python/lasso.py')
-rw-r--r--python/lasso.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/python/lasso.py b/python/lasso.py
index 855ba163..135e3a0a 100644
--- a/python/lasso.py
+++ b/python/lasso.py
@@ -871,14 +871,17 @@ class User:
def destroy(self):
lassomod.user_destroy(self)
- def get_assertion(self, providerID):
- return Node(lassomod.user_get_assertion(self, providerID))
+ def get_assertion(self, remote_providerID):
+ return Node(lassomod.user_get_assertion(self, remote_providerID))
+
+ def get_authentication_method(self, remote_providerID):
+ return lassomod.user_get_authentication_method(self, remote_providerID)
def get_next_assertion_remote_providerID(self):
return lassomod.user_get_next_assertion_remote_providerID(self)
- def remove_assertion(self, providerID):
- lassomod.user_remove_assertion(self, providerID)
+ def remove_assertion(self, remote_providerID):
+ lassomod.user_remove_assertion(self, remote_providerID)
loginProtocolProfileBrwsArt = 1
loginProtocolProfileBrwsPost = 2