- Timestamp:
- 28/06/10 13:54:57 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/ndg_xacml/ndg/xacml/parsers/etree/policydefaultsreader.py
r7087 r7109 18 18 class PolicyDefaultsReader(ETreeAbstractReader): 19 19 '''ElementTree based XACML PolicyDefaults type parser 20 21 @cvar TYPE: XACML class type that this reader will read values into 22 @type TYPE: type 20 23 ''' 21 24 TYPE = PolicyDefaults 22 25 23 26 def __call__(self, obj): 24 """Parse AttributeValue object""" 27 """Parse Policy defaults object 28 29 @param obj: input object to parse 30 @type obj: ElementTree Element, or stream object 31 @return: new XACML expression instance 32 @rtype: ndg.xacml.core.policydefaults.PolicyDefaults derived type 33 @raise XMLParseError: error reading element 34 """ 25 35 elem = super(PolicyDefaultsReader, self)._parse(obj) 26 36
Note: See TracChangeset
for help on using the changeset viewer.