summaryrefslogtreecommitdiffstats
path: root/python/lasso.py
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-07-14 13:29:42 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-07-14 13:29:42 +0000
commit37b91c1e7a48b5f693a8ecd1820900e247313ccd (patch)
treef93ccaf25d630dc151e52e47cbb024cf31108258 /python/lasso.py
parent6dd81a97236a54cde4bf80b18d28b191b13f6127 (diff)
downloadlasso-37b91c1e7a48b5f693a8ecd1820900e247313ccd.tar.gz
lasso-37b91c1e7a48b5f693a8ecd1820900e247313ccd.tar.xz
lasso-37b91c1e7a48b5f693a8ecd1820900e247313ccd.zip
*** empty log message ***
Diffstat (limited to 'python/lasso.py')
-rw-r--r--python/lasso.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/python/lasso.py b/python/lasso.py
index 5a30fe06..d41d93f9 100644
--- a/python/lasso.py
+++ b/python/lasso.py
@@ -928,12 +928,6 @@ class Login:
def dump(self):
return lassomod.login_dump(self)
- def process_authn_response_msg(self, authn_response_msg):
- return lassomod.login_process_authn_response_msg(self, authn_response_msg)
-
- def process_request_msg(self, request_msg):
- return lassomod.login_process_request_msg(self, request_msg)
-
def init_authn_request(self, remote_providerID):
return lassomod.login_init_authn_request(self, remote_providerID)
@@ -948,6 +942,15 @@ class Login:
def must_authenticate(self):
return lassomod.login_must_authenticate(self)
+ def process_authn_response_msg(self, authn_response_msg):
+ return lassomod.login_process_authn_response_msg(self, authn_response_msg)
+
+ def process_request_msg(self, request_msg):
+ return lassomod.login_process_request_msg(self, request_msg)
+
+ def process_response_msg(self, response_msg, remote_providerID):
+ return lassomod.login_process_response_msg(self, response_msg, remote_providerID)
+
providerTypeSp = 1
providerTypeIdp = 2