Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg-security/TI12-security/trunk/ndg_xacml/ndg/xacml/core/combinerparameter.py@7108
Revision 7101,
788 bytes
checked in by pjkersha, 11 years ago
(diff) |
Incomplete - task 2: XACML-Security Integration
- updating epydoc ready for release.
|
-
Property svn:keywords set to
Id
|
Line | |
---|
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$" |
---|
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') |
---|
Note: See
TracBrowser
for help on using the repository browser.