diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-12 12:34:56 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-12 12:34:56 +0000 |
| commit | 6aafa90361f99d5149e582454f91295b4f40b72c (patch) | |
| tree | 29174b272bba4b9cd6a8327804be330c7bfd2cc9 /python/lasso.py | |
| parent | 5617d58e474199f1fef484f34179189070d9f08a (diff) | |
| download | lasso-6aafa90361f99d5149e582454f91295b4f40b72c.tar.gz lasso-6aafa90361f99d5149e582454f91295b4f40b72c.tar.xz lasso-6aafa90361f99d5149e582454f91295b4f40b72c.zip | |
*** empty log message ***
Diffstat (limited to 'python/lasso.py')
| -rw-r--r-- | python/lasso.py | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/python/lasso.py b/python/lasso.py index e126bfe6..51d85650 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -788,20 +788,20 @@ class AuthenticationStatement(Node): ################################################################################ # environs : high level classes ################################################################################ -SignatureMethodRsaSha1 = 1 -SignatureMethodDsaSha1 = 2 +signatureMethodRsaSha1 = 1 +signatureMethodDsaSha1 = 2 -HttpMethodGet = 1 -HttpMethodPost = 2 -HttpMethodRedirect = 3 -HttpMethodSoap = 4 +httpMethodGet = 1 +httpMethodPost = 2 +httpMethodRedirect = 3 +httpMethodSoap = 4 -MessageTypeNone = 0 -MessageTypeAuthnRequest = 1 -MessageTypeAuthnResponse = 2 -MessageTypeRequest = 3 -MessageTypeResponse = 4 -MessageTypeArtifact = 5 +messageTypeNone = 0 +messageTypeAuthnRequest = 1 +messageTypeAuthnResponse = 2 +messageTypeRequest = 3 +messageTypeResponse = 4 +messageTypeArtifact = 5 class Server: """\brief Short desc @@ -849,7 +849,7 @@ class Login: if ret is None: raise AttributeError, name if name == "request": - if lassomod.login_getattr(self, "request_type") == MessageTypeAuthnRequest: + if lassomod.login_getattr(self, "request_type") == messageTypeAuthnRequest: ret = AuthnRequest(None, _obj=ret) # TODO if name == "response": |
