diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-23 16:34:39 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-23 16:34:39 +0000 |
| commit | a11f5fe9c4dbfae919102824c86c343bd59240c5 (patch) | |
| tree | 9834c710a52210159d3b1557f914a771e75ce803 /python/lasso.py | |
| parent | e2f33ecf5a89b10591b77c9666c9d4d57a836799 (diff) | |
| download | lasso-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.py | 11 |
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 |
