Package ndg :: Package saml :: Package saml2 :: Module core :: Class AssertionIDRef
[hide private]

Class AssertionIDRef

source code


SAML 2.0 Core AssertionIDRef.

Instance Methods [hide private]
 
__init__(self, **kw)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
dict
__getstate__(self)
Enable pickling
source code
basestring
_getAssertionID(self)
Get the ID of the assertion this references
source code
 
_setAssertionID(self, value)
Sets the ID of the assertion this references.
source code
 
getOrderedChildren(self)
Get attributes for this element as a list - not implemented for this class
source code

Inherited from common.SAMLObject: __setstate__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Methods [hide private]

Inherited from common.SAMLObject: fromXML, toXML

Class Variables [hide private]
None DEFAULT_ELEMENT_LOCAL_NAME = 'AssertionIDRef'
default XML element name - derived classes must specify
ndg.saml.common.xml.QName DEFAULT_ELEMENT_NAME = QName(SAMLConstants.SAML20_NS, DEFAULT_...
Default element name.
Instance Variables [hide private]
basestring __assertionID
assertion identifier
Properties [hide private]
  assertionID
Assertion ID

Inherited from common.SAMLObject: qname

Inherited from object: __class__

Method Details [hide private]

__init__(self, **kw)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Parameters:
  • kw (dict) - keywords for superclass initialisation
Overrides: object.__init__

__getstate__(self)

source code 

Enable pickling

Returns: dict
object's attribute dictionary
Overrides: common.SAMLObject.__getstate__

_getAssertionID(self)

source code 

Get the ID of the assertion this references

Returns: basestring
the ID of the assertion this references

_setAssertionID(self, value)

source code 

Sets the ID of the assertion this references.

Parameters:
  • value (basestring) - the ID of the assertion this references
Raises:
  • TypeError - incorrect type for input value

Class Variable Details [hide private]

DEFAULT_ELEMENT_NAME

Default element name.
Type:
ndg.saml.common.xml.QName
Value:
QName(SAMLConstants.SAML20_NS, DEFAULT_ELEMENT_LOCAL_NAME, SAMLConstan\
ts.SAML20_PREFIX)

Property Details [hide private]

assertionID

Assertion ID

Get Method:
_getAssertionID(self) - Get the ID of the assertion this references
Set Method:
_setAssertionID(self, value) - Sets the ID of the assertion this references.