Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg-security/TI12-security/trunk/ndg_xacml/ndg/xacml/parsers/etree/subjectmatchreader.py@7087
Revision 7087,
735 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 | """NDG XACML ElementTree based reader for subject match type |
---|
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 | from ndg.xacml.core.match import SubjectMatch |
---|
13 | from ndg.xacml.core.attributedesignator import SubjectAttributeDesignator |
---|
14 | from ndg.xacml.parsers.etree.matchreader import MatchReaderBase |
---|
15 | |
---|
16 | |
---|
17 | class SubjectMatchReader(MatchReaderBase): |
---|
18 | """ElementTree based parser for XACML SubjectMatch""" |
---|
19 | TYPE = SubjectMatch |
---|
20 | ATTRIBUTE_DESIGNATOR_TYPE = SubjectAttributeDesignator |
---|
Note: See
TracBrowser
for help on using the repository browser.