Package ndg :: Package xacml :: Package parsers :: Module common
[hide private]

Source Code for Module ndg.xacml.parsers.common

 1  """NDG XACML common parsing data 
 2   
 3  NERC DataGrid 
 4  """ 
 5  __author__ = "R B Wilkinson" 
 6  __date__ = "02/11/11" 
 7  __copyright__ = "(C) 2011 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$" 
12   
13 -class Common(object):
14 """ 15 Holds data that is common to different readers when parsing policy 16 documents. 17 """
18 - def __init__(self, policyFinder):
19 """ 20 @param policyFinder: policy finder 21 @type policyFinder: ndg.xacml.finder.policyfinderbase.PolicyFinderBase 22 subclass 23 """ 24 self.policyFinder = policyFinder
25