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

Source Code for Module ndg.xacml.core.combinerparameter

 1  """XACML CombinerParameter type definition 
 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: combinerparameter.py 7955 2011-12-21 18:29:45Z rwilkinson $" 
12   
13 -class CombinerParameter(object):
14 '''XACML Combiner parameter class - currently not implemented 15 16 @cvar ELEMENT_LOCAL_NAME: XML local name for this element 17 @type ELEMENT_LOCAL_NAME: string 18 ''' 19 ELEMENT_LOCAL_NAME = "CombinerParameter" 20 __slots__ = () 21
22 - def __init__(self):
23 '''@raise NotImplementedError: this class is a stub only 24 ''' 25 raise NotImplementedError('Not currently implemented')
26