From 37b91c1e7a48b5f693a8ecd1820900e247313ccd Mon Sep 17 00:00:00 2001 From: Valery Febvre Date: Wed, 14 Jul 2004 13:29:42 +0000 Subject: *** empty log message *** --- python/lasso.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'python/lasso.py') 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 -- cgit