diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-11 00:18:26 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-11 00:18:26 +0000 |
| commit | e1580d4b512b7fdbaed988e50b8069b66ff688d5 (patch) | |
| tree | e10a22ec7b06271b2364c29e757a4cd2dcaa3dd2 /python/lasso.py | |
| parent | 3677573bee663ff680489855724dcdc8360e6860 (diff) | |
| download | lasso-e1580d4b512b7fdbaed988e50b8069b66ff688d5.tar.gz lasso-e1580d4b512b7fdbaed988e50b8069b66ff688d5.tar.xz lasso-e1580d4b512b7fdbaed988e50b8069b66ff688d5.zip | |
*** empty log message ***
Diffstat (limited to 'python/lasso.py')
| -rw-r--r-- | python/lasso.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/python/lasso.py b/python/lasso.py index 33f82c6f..009bb867 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -871,6 +871,9 @@ class Login: def build_authn_request_msg(self): return lassomod.login_build_authn_request_msg(self) + def build_request_msg(self): + return lassomod.login_build_request_msg(self) + def init_authn_request(self, remote_providerID): return lassomod.login_init_authn_request(self, remote_providerID) @@ -878,6 +881,10 @@ class Login: return lassomod.login_init_from_authn_request_msg(self, authn_request_msg, authn_request_method) + def init_request(self, response_msg, response_method, remote_providerID): + return lassomod.login_init_request(self, response_msg, + response_method, remote_providerID) + def must_authenticate(self): return lassomod.login_must_authenticate(self) |
