diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-08-09 14:55:59 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-08-09 14:55:59 +0000 |
| commit | bb6c3b4957353068dfcf5a9a8d22d2703591787e (patch) | |
| tree | 711997ae2473af70c1b4575ee43b375484b6ca15 /python | |
| parent | b13decd314a04547ae1f1d8e0ab56ed767109cf4 (diff) | |
| download | lasso-bb6c3b4957353068dfcf5a9a8d22d2703591787e.tar.gz lasso-bb6c3b4957353068dfcf5a9a8d22d2703591787e.tar.xz lasso-bb6c3b4957353068dfcf5a9a8d22d2703591787e.zip | |
Update
Diffstat (limited to 'python')
| -rw-r--r-- | python/lasso.py | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/python/lasso.py b/python/lasso.py index 9f070467..3e7b12d4 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -1174,8 +1174,8 @@ class Login(Profile): if errorCode: raise newError(errorCode, 'lasso_login_build_artifact_msg') - def build_authn_request_msg(self): - errorCode = lassomod.login_build_authn_request_msg(self) + def build_authn_request_msg(self, remote_providerID): + errorCode = lassomod.login_build_authn_request_msg(self, remote_providerID) if errorCode: raise newError(errorCode, 'lasso_login_build_authn_request_msg') @@ -1194,8 +1194,8 @@ class Login(Profile): def dump(self): return lassomod.login_dump(self) - def init_authn_request(self, remote_providerID): - errorCode = lassomod.login_init_authn_request(self, remote_providerID) + def init_authn_request(self): + errorCode = lassomod.login_init_authn_request(self) if errorCode: raise newError(errorCode, 'lasso_login_init_authn_request') @@ -1475,13 +1475,18 @@ class Lecp(Login): if errorCode: raise newError(errorCode, 'lasso_lecp_build_authn_request_envelope_msg') - def build_authn_response_envelope_msg(self): - errorCode = lassomod.lecp_build_authn_response_envelope_msg(self) + def build_authn_response_envelope_msg(self, authentication_result, + authenticationMethod, + reauthenticateOnOrAfter): + errorCode = lassomod.lecp_build_authn_response_envelope_msg(self, + authentication_result, + authenticationMethod, + reauthenticateOnOrAfter) if errorCode: raise newError(errorCode, 'lasso_lecp_build_authn_response_envelope_msg') - def build_authn_request_msg(self): - errorCode = lassomod.lecp_build_authn_request_msg(self) + def build_authn_request_msg(self, remote_providerID): + errorCode = lassomod.lecp_build_authn_request_msg(self, remote_providerID) if errorCode: raise newError(errorCode, 'lasso_lecp_build_authn_request_msg') @@ -1493,8 +1498,8 @@ class Lecp(Login): def destroy(self): lassomod.lecp_destroy(self) - def init_authn_request(self, remote_providerID): - errorCode = lassomod.lecp_init_authn_request(self, remote_providerID) + def init_authn_request(self): + errorCode = lassomod.lecp_init_authn_request(self) if errorCode: raise newError(errorCode, 'lasso_lecp_init_authn_request') |
