Package openid :: Package consumer :: Module consumer :: Class FailureResponse
[frames] | no frames]

Class FailureResponse

source code

object --+    
         |    
  Response --+
             |
            FailureResponse

A response with a status of FAILURE. Indicates that the OpenID protocol has failed. This could be locally or remotely triggered.

Instance Methods [hide private]
  __init__(self, endpoint, message=None, contact=None, reference=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
  __repr__(self)
repr(x)

Inherited from Response: setEndpoint

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __str__


Class Variables [hide private]
  status = 'failure'
FAILURE

Instance Variables [hide private]
  identity_url
The identity URL for which authenitcation was attempted, if it can be determined.
  message
A message indicating why the request failed, if one is supplied.

Properties [hide private]

Inherited from object: __class__


Method Details [hide private]

__init__(self, endpoint, message=None, contact=None, reference=None)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: object.__init__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(x)
Overrides: object.__repr__
(inherited documentation)

Class Variable Details [hide private]

status


FAILURE
Value:
'failure'                                                              
      

Instance Variable Details [hide private]

identity_url


The identity URL for which authenitcation was attempted, if it can be determined. Otherwise, None.

message


A message indicating why the request failed, if one is supplied. otherwise, None.