Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg-security/TI12-security/trunk/ndg_xacml/ndg/xacml/core/subject.py@7668
Revision 7365,
1.1 KB
checked in by pjkersha, 10 years ago
(diff) |
Incomplete - task 2: XACML-Security Integration
- added identifier URN constants
|
-
Property svn:keywords set to
Id
|
Line | |
---|
1 | """NDG Security Subject type definition |
---|
2 | |
---|
3 | NERC DataGrid |
---|
4 | """ |
---|
5 | __author__ = "P J Kershaw" |
---|
6 | __date__ = "24/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$" |
---|
12 | from ndg.xacml.core import TargetChildBase |
---|
13 | from ndg.xacml.core.match import SubjectMatch |
---|
14 | |
---|
15 | |
---|
16 | class Subject(TargetChildBase): |
---|
17 | """XACML Subject Target Policy element |
---|
18 | |
---|
19 | @cvar MATCH_TYPE: Sets the type for match attributes in this |
---|
20 | TargetChildBase derived class |
---|
21 | @type MATCH_TYPE: ndg.xacml.core.match.SubjectMatch |
---|
22 | @cvar ELEMENT_LOCAL_NAME: XML element local name |
---|
23 | @type ELEMENT_LOCAL_NAME: string |
---|
24 | """ |
---|
25 | MATCH_TYPE = SubjectMatch |
---|
26 | ELEMENT_LOCAL_NAME = 'Subject' |
---|
27 | ID = "urn:oasis:names:tc:xacml:1.0:subject:subject-id" |
---|
28 | __slots__ = () |
---|
29 | |
---|
30 | @property |
---|
31 | def subjectMatches(self): |
---|
32 | """Convenience wrapper to base class method |
---|
33 | @return: list of matches |
---|
34 | @rtype: ndg.xacml.utils.TypedList |
---|
35 | """ |
---|
36 | return self.matches |
---|
Note: See
TracBrowser
for help on using the repository browser.