Changeset 6740
- Timestamp:
- 16/03/10 12:08:07 (11 years ago)
- Location:
- TI12-security/trunk/NDG_XACML
- Files:
-
- 4 added
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/NDG_XACML/ndg/xacml/__init__.py
r6734 r6740 1 """NDG SecurityXACML package1 """NDG XACML package 2 2 3 3 NERC DataGrid Project -
TI12-security/trunk/NDG_XACML/ndg/xacml/action.py
r6734 r6740 1 """NDG SecurityXACML Action type definition1 """NDG XACML Action type definition 2 2 3 3 NERC DataGrid Project … … 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 11 __revision__ = "$Id: $" 12 from ndg. security.common.authz.xacml import RequestPropertyBase13 from ndg. security.common.authz.xacml.match import ActionMatch12 from ndg.xacml import RequestPropertyBase 13 from ndg.xacml.match import ActionMatch 14 14 15 15 -
TI12-security/trunk/NDG_XACML/ndg/xacml/attribute.py
r6734 r6740 1 """NDG SecurityXACML attribute type definition1 """NDG XACML attribute type definition 2 2 3 3 NERC DataGrid Project … … 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 11 __revision__ = "$Id: $" 12 from ndg. security.common.authz.xacml import PolicyComponent12 from ndg.xacml import PolicyComponent 13 13 14 14 -
TI12-security/trunk/NDG_XACML/ndg/xacml/condition.py
r6734 r6740 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 11 __revision__ = "$Id: $" 12 from ndg. security.common.authz.xacml import PolicyComponent12 from ndg.xacml import PolicyComponent 13 13 14 14 -
TI12-security/trunk/NDG_XACML/ndg/xacml/environment.py
r6734 r6740 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 11 __revision__ = "$Id: $" 12 from ndg. security.common.authz.xacml import RequestPropertyBase13 from ndg. security.common.authz.xacml.match import EnvironmentMatch12 from ndg.xacml import RequestPropertyBase 13 from ndg.xacml.match import EnvironmentMatch 14 14 15 15 -
TI12-security/trunk/NDG_XACML/ndg/xacml/match.py
r6734 r6740 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 11 __revision__ = "$Id: $" 12 from ndg. security.common.authz.xacml import PolicyComponent13 from ndg. security.common.authz.xacml.attribute import AttributeValue12 from ndg.xacml import PolicyComponent 13 from ndg.xacml.attribute import AttributeValue 14 14 15 15 -
TI12-security/trunk/NDG_XACML/ndg/xacml/obligation.py
r6734 r6740 11 11 __revision__ = "$Id: $" 12 12 from ndg.security.common.utils import TypedList 13 from ndg. security.common.authz.xacml import PolicyComponent13 from ndg.xacml import PolicyComponent 14 14 15 15 -
TI12-security/trunk/NDG_XACML/ndg/xacml/parsers/__init__.py
r6734 r6740 1 """NDG SecurityXACML parsers package1 """NDG XACML parsers package 2 2 3 3 NERC DataGrid Project -
TI12-security/trunk/NDG_XACML/ndg/xacml/parsers/etree/__init__.py
r6734 r6740 1 """NDG SecurityXACML ElementTree parsers package1 """NDG XACML ElementTree parsers package 2 2 3 3 NERC DataGrid Project -
TI12-security/trunk/NDG_XACML/ndg/xacml/parsers/etree/policyreader.py
r6734 r6740 1 """NDG SecurityXACML ElementTree Policy Reader1 """NDG XACML ElementTree Policy Reader 2 2 3 3 NERC DataGrid Project … … 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 11 __revision__ = "$Id: $" 12 from ndg. security.common.authz.xacml.parsers.etree.reader import \12 from ndg.xacml.parsers.etree.reader import \ 13 13 EtreeAbstractReader 14 from ndg. security.common.authz.xacml import XMLParseError15 from ndg. security.common.authz.xacml.policy import Policy16 from ndg. security.common.authz.xacml.variabledefinition import \14 from ndg.xacml import XMLParseError 15 from ndg.xacml.policy import Policy 16 from ndg.xacml.variabledefinition import \ 17 17 VariableDefinition 18 from ndg. security.common.authz.xacml.rule import Rule19 from ndg. security.common.authz.xacml.target import Target20 from ndg. security.common.authz.xacml.parsers.etree import QName21 from ndg. security.common.authz.xacml.parsers.etree.targetreader import \18 from ndg.xacml.rule import Rule 19 from ndg.xacml.target import Target 20 from ndg.xacml.parsers.etree import QName 21 from ndg.xacml.parsers.etree.targetreader import \ 22 22 TargetReader 23 23 -
TI12-security/trunk/NDG_XACML/ndg/xacml/parsers/etree/reader.py
r6734 r6740 6 6 import logging 7 7 log = logging.getLogger(__name__) 8 """NDG SecurityXACML ElementTree reader module containing reader base class8 """NDG XACML ElementTree reader module containing reader base class 9 9 10 10 NERC DataGrid Project … … 19 19 from xml.etree import ElementTree 20 20 21 from ndg. security.common.authz.xacml import PolicyComponent22 from ndg. security.common.authz.xacml.parsers import AbstractReader21 from ndg.xacml import PolicyComponent 22 from ndg.xacml.parsers import AbstractReader 23 23 24 24 -
TI12-security/trunk/NDG_XACML/ndg/xacml/parsers/etree/targetreader.py
r6734 r6740 1 """NDG SecurityXACML ElementTree based Target Element reader1 """NDG XACML ElementTree based Target Element reader 2 2 3 3 NERC DataGrid Project … … 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 11 __revision__ = "$Id: $" 12 from ndg. security.common.authz.xacml import XMLParseError13 from ndg. security.common.authz.xacml.target import Target14 from ndg. security.common.authz.xacml.action import Action15 from ndg. security.common.authz.xacml.resource import Resource16 from ndg. security.common.authz.xacml.subject import Subject17 from ndg. security.common.authz.xacml.environment import Environment18 from ndg. security.common.authz.xacml.parsers.etree import QName19 from ndg. security.common.authz.xacml.parsers.etree.reader import \12 from ndg.xacml import XMLParseError 13 from ndg.xacml.target import Target 14 from ndg.xacml.action import Action 15 from ndg.xacml.resource import Resource 16 from ndg.xacml.subject import Subject 17 from ndg.xacml.environment import Environment 18 from ndg.xacml.parsers.etree import QName 19 from ndg.xacml.parsers.etree.reader import \ 20 20 EtreeAbstractReader 21 21 -
TI12-security/trunk/NDG_XACML/ndg/xacml/parsers/etree/writer.py
r6734 r6740 1 """NDG SecurityXACML ElementTree writer base module1 """NDG XACML ElementTree writer base module 2 2 3 3 NERC DataGrid Project -
TI12-security/trunk/NDG_XACML/ndg/xacml/policy.py
r6734 r6740 11 11 __revision__ = "$Id: $" 12 12 from ndg.security.common.utils import TypedList 13 from ndg. security.common.authz.xacml import PolicyComponent14 from ndg. security.common.authz.xacml.target import Target15 from ndg. security.common.authz.xacml.rule import Rule16 from ndg. security.common.authz.xacml.obligation import Obligation13 from ndg.xacml import PolicyComponent 14 from ndg.xacml.target import Target 15 from ndg.xacml.rule import Rule 16 from ndg.xacml.obligation import Obligation 17 17 18 18 -
TI12-security/trunk/NDG_XACML/ndg/xacml/resource.py
r6734 r6740 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 11 __revision__ = "$Id: $" 12 from ndg. security.common.authz.xacml import RequestPropertyBase13 from ndg. security.common.authz.xacml.match import ResourceMatch12 from ndg.xacml import RequestPropertyBase 13 from ndg.xacml.match import ResourceMatch 14 14 15 15 -
TI12-security/trunk/NDG_XACML/ndg/xacml/rule.py
r6734 r6740 11 11 __revision__ = "$Id: $" 12 12 from ndg.security.common.utils import TypedList 13 from ndg. security.common.authz.xacml import PolicyComponent14 from ndg. security.common.authz.xacml.target import Target15 from ndg. security.common.authz.xacml.condition import Condition13 from ndg.xacml import PolicyComponent 14 from ndg.xacml.target import Target 15 from ndg.xacml.condition import Condition 16 16 17 17 -
TI12-security/trunk/NDG_XACML/ndg/xacml/subject.py
r6734 r6740 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 11 __revision__ = "$Id: $" 12 from ndg. security.common.authz.xacml import RequestPropertyBase13 from ndg. security.common.authz.xacml.match import SubjectMatch12 from ndg.xacml import RequestPropertyBase 13 from ndg.xacml.match import SubjectMatch 14 14 15 15 class Subject(RequestPropertyBase): -
TI12-security/trunk/NDG_XACML/ndg/xacml/target.py
r6734 r6740 16 16 __contact__ = "Philip.Kershaw@stfc.ac.uk" 17 17 __revision__ = "$Id: $" 18 from ndg. security.common.authz.xacml import PolicyComponent19 from ndg. security.common.authz.xacml.action import Action20 from ndg. security.common.authz.xacml.resource import Resource21 from ndg. security.common.authz.xacml.subject import Subject22 from ndg. security.common.authz.xacml.environment import Environment18 from ndg.xacml import PolicyComponent 19 from ndg.xacml.action import Action 20 from ndg.xacml.resource import Resource 21 from ndg.xacml.subject import Subject 22 from ndg.xacml.environment import Environment 23 23 24 24
Note: See TracChangeset
for help on using the changeset viewer.