summaryrefslogtreecommitdiff
path: root/src/saml2/client_base.py
diff options
context:
space:
mode:
authorErick Tryzelaar <erick.tryzelaar@gmail.com>2014-12-24 20:13:03 -0800
committerErick Tryzelaar <erick.tryzelaar@gmail.com>2015-04-06 17:18:12 -0700
commitf4169837c128cf64f3aa439ee9fa8833480b3139 (patch)
tree266430ce99aa06a9a8fe1230b6b2b89d1a582bfe /src/saml2/client_base.py
parentd38e94715be08e838e0c9c51676604d1c82669d7 (diff)
downloadpysaml2-f4169837c128cf64f3aa439ee9fa8833480b3139.tar.gz
Add support for SingleSignOnService with HTTP-POST binding
Warning, this changes the return type of `prepare_for_authentication` by including the chosen binding, and opens the door for supporting other SingleSignOnService bindings.
Diffstat (limited to 'src/saml2/client_base.py')
-rw-r--r--src/saml2/client_base.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/saml2/client_base.py b/src/saml2/client_base.py
index de433874..4f6c20cd 100644
--- a/src/saml2/client_base.py
+++ b/src/saml2/client_base.py
@@ -71,6 +71,10 @@ class VerifyError(SAMLError):
pass
+class SignonError(SAMLError):
+ pass
+
+
class LogoutError(SAMLError):
pass