summaryrefslogtreecommitdiffstats
path: root/python/lasso.py
diff options
context:
space:
mode:
authorNicolas Clapies <nclapies@entrouvert.com>2004-07-22 10:11:46 +0000
committerNicolas Clapies <nclapies@entrouvert.com>2004-07-22 10:11:46 +0000
commitbc0d80c4673c93c4d1ee05c006f139991b4ce52f (patch)
tree5bb0d67d9417caf650e5eb489d862bb4b4676fef /python/lasso.py
parentcd2c24d5867381e3b51e4f2bcf58e1e90f1ad561 (diff)
downloadlasso-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.py7
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);