Package ndg :: Package xacml :: Package parsers :: Package etree :: Module resourceattributedesignatorreader
[hide private]

Source Code for Module ndg.xacml.parsers.etree.resourceattributedesignatorreader

 1  """NDG XACML ElementTree based reader for ResourceAttributeDesignator type 
 2   
 3  NERC DataGrid 
 4  """ 
 5  __author__ = "P J Kershaw" 
 6  __date__ = "19/03/10" 
 7  __copyright__ = "(C) 2010 Science and Technology Facilities Council" 
 8  __contact__ = "Philip.Kershaw@stfc.ac.uk" 
 9  __license__ = "BSD - see LICENSE file in top-level directory" 
10  __contact__ = "Philip.Kershaw@stfc.ac.uk" 
11  __revision__ = "$Id: resourceattributedesignatorreader.py 7109 2010-06-28 12:54:57Z pjkersha $" 
12  from ndg.xacml.core.attributedesignator import ResourceAttributeDesignator 
13  from ndg.xacml.parsers.etree.attributedesignatorreader import \ 
14      AttributeDesignatorReaderBase 
15   
16   
17 -class ResourceAttributeDesignatorReader(AttributeDesignatorReaderBase):
18 '''ElementTree based XACML Resource Attribute Designator type parser 19 20 @cvar TYPE: XACML class type that this reader will read values into 21 @type TYPE: abc.ABCMeta 22 ''' 23 TYPE = ResourceAttributeDesignator 24