Package ndg :: Package saml :: Package xml :: Module etree_xacml_profile :: Class XACMLAuthzDecisionStatementElementTree
[hide private]

Class XACMLAuthzDecisionStatementElementTree

source code


Instance Methods [hide private]

Inherited from saml2.xacml_profile.XACMLAuthzDecisionStatement: __getstate__, __init__

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]
XML class e.g. ElementTree or 4Suite XML
toXML(cls, xacmlAuthzDecisionStatement)
Convert the input SAML object into an XML representation.
source code
saml.saml2.common.SAMLObject derived type
fromXML(cls, elem)
Parse from an XML representation into a SAML object.
source code
Class Variables [hide private]

Inherited from saml2.xacml_profile.XACMLAuthzDecisionStatement: DEFAULT_ELEMENT_LOCAL_NAME, DEFAULT_ELEMENT_NAME, TYPE_LOCAL_NAME, TYPE_NAME, xacmlContextRequest, xacmlContextResponse

Properties [hide private]

Inherited from common.SAMLObject: qname

Inherited from object: __class__

Method Details [hide private]

toXML(cls, xacmlAuthzDecisionStatement)
Class Method

source code 

Convert the input SAML object into an XML representation. Abstract method - derived types should implement

Parameters:
  • samlObject - SAML object
Returns: XML class e.g. ElementTree or 4Suite XML
XML representation of SAML Object
Overrides: common.SAMLObject.toXML
(inherited documentation)

fromXML(cls, elem)
Class Method

source code 

Parse from an XML representation into a SAML object. Abstract method

  • derived types should implement
Parameters:
  • xmlObject - XML representation of SAML Object
Returns: saml.saml2.common.SAMLObject derived type
SAML object
Overrides: common.SAMLObject.fromXML
(inherited documentation)