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

Source Code for Module ndg.xacml.core.variabledefinition

 1  """NDG Security Variable Definition type definition 
 2   
 3  NERC DataGrid 
 4  """ 
 5  __author__ = "P J Kershaw" 
 6  __date__ = "25/02/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: variabledefinition.py 7955 2011-12-21 18:29:45Z rwilkinson $" 
12  from ndg.xacml.core import XacmlPolicyBase 
13   
14   
15 -class VariableDefinition(XacmlPolicyBase):
16 '''XACML Variable Definition 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 = "VariableDefinition" 23 24 __slots__ = () 25
26 - def __init__(self):
27 '''This class not needed yet''' 28 raise NotImplementedError()
29