Changeset 7109 for TI12-security/trunk/ndg_xacml/ndg/xacml/core/policy.py
- Timestamp:
- 28/06/10 13:54:57 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/ndg_xacml/ndg/xacml/core/policy.py
r7108 r7109 41 41 42 42 class Policy(XacmlCoreBase): 43 """ NDG MSI Policy.43 """XACML Policy 44 44 45 45 @cvar DEFAULT_XACML_VERSION: default is 2.0 … … 85 85 @ivar __ruleCombiningAlg: rule combining algorithm 86 86 @type __ruleCombiningAlg: NoneType / ndg.xacml.core.rule_combining_alg.RuleCombiningAlgInterface 87 88 87 """ 89 88 DEFAULT_XACML_VERSION = "2.0" … … 209 208 ''' 210 209 @return: policy id 211 @ type basestring: NoneType / basestring210 @rtype: NoneType / basestring 212 211 ''' 213 212 return self.__policyId … … 328 327 @property 329 328 def obligations(self): 330 """@ ivar __obligations: obligations331 @ type __obligations: ndg.xacml.utils.TypedList329 """@return: obligations 330 @rtype: ndg.xacml.utils.TypedList 332 331 """ 333 332 return self.__obligations
Note: See TracChangeset
for help on using the changeset viewer.