diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2004-07-22 10:11:46 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2004-07-22 10:11:46 +0000 |
| commit | bc0d80c4673c93c4d1ee05c006f139991b4ce52f (patch) | |
| tree | 5bb0d67d9417caf650e5eb489d862bb4b4676fef /python/lasso.py | |
| parent | cd2c24d5867381e3b51e4f2bcf58e1e90f1ad561 (diff) | |
| download | lasso-bc0d80c4673c93c4d1ee05c006f139991b4ce52f.tar.gz lasso-bc0d80c4673c93c4d1ee05c006f139991b4ce52f.tar.xz lasso-bc0d80c4673c93c4d1ee05c006f139991b4ce52f.zip | |
update of logout example with test of the request soap
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 b61a0d96..5bbebda8 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -47,6 +47,13 @@ def shutdown(): """ return lassomod.shutdown() +# request types : +RequestTypeLogin = 1 +RequestTypeLogout = 2 +RequestTypeFederationTermination = 3 +RequestRegisterNameIdentifier = 4 +RequestTypeNameIdentifierMapping = 5 + def get_request_type_from_soap_msg(soap_buffer): return lassomod.profile_context_get_request_type_from_soap_msg(soap_buffer); |
