Package ndg :: Package xacml :: Package core :: Module variablereference
[hide private]

Source Code for Module ndg.xacml.core.variablereference

 1  """NDG Security Variable Reference type definition 
 2   
 3  NERC DataGrid 
 4  """ 
 5  __author__ = "P J Kershaw" 
 6  __date__ = "29/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: variablereference.py 7108 2010-06-28 09:19:26Z pjkersha $" 
12  from ndg.xacml.core import XacmlPolicyBase 
13   
14   
15 -class VariableReference(XacmlPolicyBase):
16 '''XACML Variable Reference Type - this class is a placeholder, it's not 17 currently implemented 18 19 @cvar ELEMENT_LOCAL_NAME: XML element local name 20 @type ELEMENT_LOCAL_NAME: string 21 ''' 22 ELEMENT_LOCAL_NAME = "VariableReference" 23 24 __slots__ = () 25
26 - def __init__(self):
27 '''This class not needed yet''' 28 raise NotImplementedError()
29