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
 
__init__(self, endpoint, message=None, contact=None, reference=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__repr__(self)
repr(x)
source code

Inherited from Response: getDisplayIdentifier, setEndpoint

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

Class Variables
  status = 'failure'
FAILURE
Instance Variables
  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

Inherited from object: __class__

Method Details

__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)

Instance Variable Details

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.