From e1580d4b512b7fdbaed988e50b8069b66ff688d5 Mon Sep 17 00:00:00 2001 From: Valery Febvre Date: Sun, 11 Jul 2004 00:18:26 +0000 Subject: *** empty log message *** --- python/lasso.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'python/lasso.py') 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) -- cgit