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

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

 1  """NDG XACML ElementTree based parser for Action type 
 2   
 3  NERC DataGrid 
 4  """ 
 5  __author__ = "P J Kershaw" 
 6  __date__ = "16/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: actionreader.py 7109 2010-06-28 12:54:57Z pjkersha $" 
12  from ndg.xacml.core.action import Action 
13  from ndg.xacml.parsers.etree.targetchildreader import TargetChildReader 
14   
15   
16 -class ActionReader(TargetChildReader):
17 '''ElementTree based parser for Action type 18 @cvar TYPE: XACML type to instantiate from parsed object 19 @type TYPE: type 20 ''' 21 TYPE = Action
22