- Fixed invalid schemaLocation in test samples of XACML
policies/resquests/responses (still pointing to XACML 2.0 XSD) - Added test extensions for result filter (for CombinedDecision from XACML Multiple Decision Profile, in TestCombinedDecisionResultFilter), simple datatype (dnsName-value from XACML DLP/BAC profile, in TestDNSNameValueEqualFunction class), complex datatype (XACML Policy, in class TestXACMLPolicyAttributeValue), function (dnsName-value-equal from XACML DLP/NAC profile, in TestDNSNameValueEqualFunction class), combining algorithm from XACML Additional Combining Algorithms Profile (in class TestOnPermitApplySecondCombiningAlg) - Fixed NullPointerException occuring when specifying unsupported combining algorithm in PDP configuration - New method in PdpExtensionLoader to get list of extensions of a given type - Fixed bug in PdpExtensionLoader considering input extension type invalid if no extension found of this type (although type is correct) - Renamed DNSNameValue to DNSNameWithPortRangeValue class to distinguish dnsName datatype from new dnsname-value type in XACML DLP/NAC profile with accepts just a port number (not a range) - Removed support for dnsName-equal and ipAddress-equal functions which do not exist in XACML spec actually (the regexp-match equivalent is to be used instead)
Showing
with
2522 additions
and
2516 deletions
+2522
-2516
- pom.xml pom.xml +2 -2
- src/main/java/org/ow2/authzforce/core/pdp/impl/BaseDecisionResult.java .../org/ow2/authzforce/core/pdp/impl/BaseDecisionResult.java +37 -15
- src/main/java/org/ow2/authzforce/core/pdp/impl/PdpConfigurationParser.java .../ow2/authzforce/core/pdp/impl/PdpConfigurationParser.java +51 -31
- src/main/java/org/ow2/authzforce/core/pdp/impl/PdpExtensionLoader.java .../org/ow2/authzforce/core/pdp/impl/PdpExtensionLoader.java +46 -154
- src/main/java/org/ow2/authzforce/core/pdp/impl/PdpModelHandler.java ...ava/org/ow2/authzforce/core/pdp/impl/PdpModelHandler.java +24 -9
- src/main/java/org/ow2/authzforce/core/pdp/impl/combining/BaseCombiningAlgRegistry.java ...rce/core/pdp/impl/combining/BaseCombiningAlgRegistry.java +5 -0
- src/main/java/org/ow2/authzforce/core/pdp/impl/func/DatatypeConversionFunction.java ...zforce/core/pdp/impl/func/DatatypeConversionFunction.java +2 -2
- src/main/java/org/ow2/authzforce/core/pdp/impl/func/EqualTypeMatchFunction.java ...authzforce/core/pdp/impl/func/EqualTypeMatchFunction.java +38 -35
- src/main/java/org/ow2/authzforce/core/pdp/impl/func/NonEqualTypeMatchFunction.java ...hzforce/core/pdp/impl/func/NonEqualTypeMatchFunction.java +2 -2
- src/main/java/org/ow2/authzforce/core/pdp/impl/policy/PolicyEvaluators.java ...ow2/authzforce/core/pdp/impl/policy/PolicyEvaluators.java +2 -2
- src/main/java/org/ow2/authzforce/core/pdp/impl/value/DNSNameWithPortRangeValue.java ...zforce/core/pdp/impl/value/DNSNameWithPortRangeValue.java +12 -12
- src/main/java/org/ow2/authzforce/core/pdp/impl/value/DatatypeConstants.java ...ow2/authzforce/core/pdp/impl/value/DatatypeConstants.java +5 -5
- src/main/java/org/ow2/authzforce/core/pdp/impl/value/SimpleValue.java ...a/org/ow2/authzforce/core/pdp/impl/value/SimpleValue.java +2 -2
- src/test/java/org/ow2/authzforce/core/test/custom/TestAttributeProviderModule.java ...hzforce/core/test/custom/TestAttributeProviderModule.java +1 -1
- src/test/java/org/ow2/authzforce/core/test/custom/TestCombinedDecisionResultFilter.java ...ce/core/test/custom/TestCombinedDecisionResultFilter.java +115 -0
- src/test/java/org/ow2/authzforce/core/test/custom/TestDNSNameValueEqualFunction.java ...force/core/test/custom/TestDNSNameValueEqualFunction.java +50 -0
- src/test/java/org/ow2/authzforce/core/test/custom/TestDNSNameWithPortValue.java ...authzforce/core/test/custom/TestDNSNameWithPortValue.java +223 -0
- src/test/java/org/ow2/authzforce/core/test/custom/TestOnPermitApplySecondCombiningAlg.java ...core/test/custom/TestOnPermitApplySecondCombiningAlg.java +114 -0
- src/test/java/org/ow2/authzforce/core/test/custom/TestXACMLPolicyAttributeValue.java ...force/core/test/custom/TestXACMLPolicyAttributeValue.java +143 -0
- src/test/java/org/ow2/authzforce/core/test/func/BagFunctionsTest.java ...a/org/ow2/authzforce/core/test/func/BagFunctionsTest.java +6 -6
- src/test/java/org/ow2/authzforce/core/test/func/RegExpBasedFunctionsTest.java ...2/authzforce/core/test/func/RegExpBasedFunctionsTest.java +31 -42
- src/test/java/org/ow2/authzforce/core/test/func/SetFunctionsTest.java ...a/org/ow2/authzforce/core/test/func/SetFunctionsTest.java +479 -664
- src/test/java/org/ow2/authzforce/core/test/func/StringFunctionsTest.java ...rg/ow2/authzforce/core/test/func/StringFunctionsTest.java +134 -145
- src/test/java/org/ow2/authzforce/core/test/utils/FunctionTest.java ...java/org/ow2/authzforce/core/test/utils/FunctionTest.java +17 -18
- src/test/resources/META-INF/services/org.ow2.authzforce.core.pdp.api.PdpExtension ...INF/services/org.ow2.authzforce.core.pdp.api.PdpExtension +6 -1
- src/test/resources/conformance/others/PolicyReference.Valid/response.xml ...ces/conformance/others/PolicyReference.Valid/response.xml +1 -3
- src/test/resources/conformance/others/VariableReference.Circular/policy.xml .../conformance/others/VariableReference.Circular/policy.xml +1 -2
- src/test/resources/conformance/others/VariableReference.Undef/policy.xml ...ces/conformance/others/VariableReference.Undef/policy.xml +1 -2
- src/test/resources/conformance/others/VariableReference.Valid/policy.xml ...ces/conformance/others/VariableReference.Valid/policy.xml +1 -2
- src/test/resources/conformance/others/VariableReference.Valid/request.xml ...es/conformance/others/VariableReference.Valid/request.xml +1 -1
- src/test/resources/conformance/others/VariableReference.Valid/response.xml ...s/conformance/others/VariableReference.Valid/response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA001/IIA001Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA001/IIA001Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA001/IIA001Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA001/IIA001Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA001/IIA001Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIA001/IIA001Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA003Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA003Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA003Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA003Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA003Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA003Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA004Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA004Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA005Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA005Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA006Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA006Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA006Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA006Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA006Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA006Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA007Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA007Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA007Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA007Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA007Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA007Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA008Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA008Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA008Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA008Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA008Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA008Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA009Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA009Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA009Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA009Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA009Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIA003/IIA009Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA011/IIA011Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA011/IIA011Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA011/IIA011Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA011/IIA011Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA011/IIA011Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIA011/IIA011Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA013Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA013Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA013Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA013Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA013Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA013Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA014Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA014Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA014Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA014Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA014Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA014Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA015Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA015Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA015Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA015Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA015Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIA013/IIA015Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA016_FIXED/IIA016Policy.xml ...l-3.0-from-2.0-ct/mandatory/IIA016_FIXED/IIA016Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA016_FIXED/IIA016Request.xml ...-3.0-from-2.0-ct/mandatory/IIA016_FIXED/IIA016Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA016_FIXED/IIA016Response.xml ...3.0-from-2.0-ct/mandatory/IIA016_FIXED/IIA016Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA017/IIA017Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA017/IIA017Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA017/IIA017Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA017/IIA017Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA017/IIA017Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIA017/IIA017Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA018_FIXED/IIA018Policy.xml ...l-3.0-from-2.0-ct/mandatory/IIA018_FIXED/IIA018Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA018_FIXED/IIA018Request.xml ...-3.0-from-2.0-ct/mandatory/IIA018_FIXED/IIA018Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA018_FIXED/IIA018Response.xml ...3.0-from-2.0-ct/mandatory/IIA018_FIXED/IIA018Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA019/IIA019Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA019/IIA019Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA019/IIA019Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA019/IIA019Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA019/IIA019Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIA019/IIA019Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA020_FIXED/IIA020Policy.xml ...l-3.0-from-2.0-ct/mandatory/IIA020_FIXED/IIA020Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA020_FIXED/IIA020Request.xml ...-3.0-from-2.0-ct/mandatory/IIA020_FIXED/IIA020Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA020_FIXED/IIA020Response.xml ...3.0-from-2.0-ct/mandatory/IIA020_FIXED/IIA020Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA021/IIA021Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIA021/IIA021Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA021/IIA021Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIA021/IIA021Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA021/IIA021Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIA021/IIA021Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA022_23_FIXED_NO_XPATH/IIA022Policy.xml ....0-ct/mandatory/IIA022_23_FIXED_NO_XPATH/IIA022Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA022_23_FIXED_NO_XPATH/IIA022Request.xml ...0-ct/mandatory/IIA022_23_FIXED_NO_XPATH/IIA022Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA022_23_FIXED_NO_XPATH/IIA022Response.xml ...-ct/mandatory/IIA022_23_FIXED_NO_XPATH/IIA022Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA022_23_FIXED_NO_XPATH/IIA023Policy.xml ....0-ct/mandatory/IIA022_23_FIXED_NO_XPATH/IIA023Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA022_23_FIXED_NO_XPATH/IIA023Request.xml ...0-ct/mandatory/IIA022_23_FIXED_NO_XPATH/IIA023Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA022_23_FIXED_NO_XPATH/IIA023Response.xml ...-ct/mandatory/IIA022_23_FIXED_NO_XPATH/IIA023Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB001Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB001Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB001Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB001Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB001Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB001Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB002Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB002Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB002Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB002Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB002Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB002Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB003Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB003Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB003Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB003Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB003Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB003Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB004Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB004Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB004Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB004Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB004Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB004Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB005Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB005Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB005Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB005Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB005Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB005Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB006Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB006Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB006Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB006Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB006Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB006Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB007Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB007Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB007Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB007Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB007Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB007Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB008Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB008Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB008Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB008Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB008Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB008Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB009Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB009Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB009Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB009Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB009Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB009Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB010Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB010Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB010Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB010Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB010Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB010Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB011Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB011Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB011Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB011Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB011Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB011Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB012Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB012Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB012Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB012Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB012Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB012Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB013Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB013Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB013Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB013Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB013Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB013Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB014Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB014Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB014Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB014Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB014Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB014Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB015Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB015Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB015Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB015Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB015Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB015Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB016Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB016Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB016Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB016Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB016Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB016Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB017Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB017Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB017Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB017Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB017Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB017Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB018Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB018Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB018Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB018Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB018Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB018Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB019Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB019Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB019Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB019Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB019Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB019Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB020Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB020Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB020Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB020Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB020Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB020Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB021Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB021Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB021Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB021Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB021Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB021Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB022Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB022Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB022Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB022Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB022Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB022Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB023Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB023Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB023Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB023Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB023Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB023Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB024Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB024Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB024Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB024Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB024Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB024Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB025Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB025Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB025Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB025Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB025Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB025Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB026Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB026Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB026Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB026Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB026Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB026Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB027Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB027Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB027Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB027Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB027Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB027Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB028Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB028Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB028Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB028Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB029Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB029Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB029Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB029Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB029Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB029Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB030Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB030Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB030Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB030Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB030Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB030Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB031Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB031Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB031Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB031Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB031Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB031Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB032Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB032Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB032Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB032Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB033Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB033Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB033Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB033Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB033Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB033Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB034Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB034Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB034Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB034Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB034Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB034Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB035Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB035Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB035Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB035Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB035Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB035Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB036Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB036Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB036Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB036Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB036Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB036Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB037Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB037Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB037Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB037Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB037Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB037Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB038Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB038Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB038Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB038Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB038Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB038Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB039Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB039Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB039Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB039Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB039Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB039Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB040Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB040Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB040Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB040Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB040Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB040Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB041Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB041Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB041Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB041Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB041Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB041Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB042Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB042Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB042Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB042Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB042Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB042Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB043Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB043Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB043Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB043Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB043Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB043Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB044Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB044Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB044Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB044Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB044Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB044Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB045Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB045Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB045Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB045Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB045Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB045Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB046Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB046Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB046Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB046Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB046Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB046Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB047Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB047Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB047Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB047Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB047Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB047Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB048Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB048Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB048Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB048Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB048Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB048Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB049Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB049Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB049Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB049Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB049Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB049Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB050Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB050Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB050Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB050Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB050Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB050Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB051Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB051Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB051Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB051Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB051Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB051Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB052Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB052Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB052Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB052Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB052Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB052Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB053Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB053Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB053Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB053Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB053Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB001/IIB053Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB300/IIB300Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB300/IIB300Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB300/IIB300Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB300/IIB300Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB300/IIB300Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB300/IIB300Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB300/IIB301Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIB300/IIB301Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB300/IIB301Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIB300/IIB301Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB300/IIB301Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIB300/IIB301Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC001Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC001Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC001Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC001Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC001Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC001Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC002Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC002Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC002Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC002Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC002Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC002Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC003Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC003Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC004Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC004Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC004Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC004Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC004Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC004Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC005Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC005Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC005Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC005Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC005Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC005Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC006Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC006Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC006Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC006Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC006Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC006Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC007Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC007Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC007Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC007Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC007Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC007Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC008Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC008Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC008Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC008Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC008Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC008Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC009Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC009Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC009Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC009Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC009Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC009Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC010Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC010Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC010Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC010Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC010Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC010Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC011Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC011Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC011Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC011Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC011Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC011Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC012Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC012Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC013Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC013Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC013Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC013Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC013Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC013Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC014Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC014Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC015Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC015Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC015Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC015Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC015Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC015Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC016Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC016Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC016Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC016Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC016Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC016Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC017Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC017Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC017Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC017Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC018Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC018Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC018Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC018Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC018Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC018Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC019Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC019Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC019Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC019Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC019Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC019Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC020Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC020Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC020Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC020Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC020Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC020Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC021Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC021Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC021Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC021Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC021Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC021Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC022Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC022Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC022Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC022Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC022Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC001/IIC022Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC024Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC024Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC024Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC024Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC024Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC024Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC025Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC025Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC025Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC025Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC025Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC025Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC026Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC026Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC026Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC026Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC026Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC026Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC027Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC027Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC027Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC027Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC027Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC027Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC028Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC028Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC028Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC028Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC028Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC028Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC029Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC029Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC029Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC029Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC029Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC029Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC030Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC030Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC030Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC030Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC030Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC030Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC031Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC031Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC031Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC031Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC031Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC031Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC032Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC032Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC032Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC032Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC032Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC032Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC033Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC033Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC033Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC033Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC033Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC033Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC034Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC034Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC034Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC034Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC034Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC034Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC035Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC035Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC035Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC035Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC035Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC035Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC036Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC036Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC036Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC036Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC036Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC036Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC037Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC037Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC037Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC037Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC037Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC037Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC038Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC038Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC038Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC038Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC038Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC038Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC039Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC039Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC039Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC039Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC039Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC039Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC040Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC040Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC040Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC040Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC040Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC040Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC041Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC041Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC041Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC041Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC041Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC041Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC042Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC042Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC042Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC042Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC042Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC042Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC043Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC043Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC043Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC043Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC043Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC043Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC044Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC044Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC044Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC044Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC044Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC044Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC045Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC045Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC045Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC045Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC045Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC045Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC046Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC046Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC046Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC046Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC046Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC046Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC047Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC047Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC047Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC047Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC047Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC047Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC048Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC048Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC048Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC048Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC048Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC048Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC049Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC049Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC049Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC049Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC049Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC049Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC050Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC050Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC050Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC050Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC050Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC050Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC051Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC051Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC051Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC051Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC051Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC051Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC052Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC052Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC052Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC052Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC052Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC052Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC053Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC053Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC053Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC053Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC053Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC024/IIC053Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC056Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC056Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC056Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC056Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC056Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC056Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC057Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC057Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC057Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC057Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC057Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC057Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC058Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC058Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC058Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC058Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC058Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC058Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC059Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC059Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC059Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC059Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC060Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC060Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC060Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC060Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC061Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC061Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC061Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC061Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC061Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC061Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC062Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC062Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC062Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC062Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC062Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC062Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC063Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC063Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC063Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC063Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC064Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC064Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC064Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC064Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC065Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC065Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC065Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC065Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC066Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC066Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC066Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC066Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC067Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC067Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC067Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC067Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC068Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC068Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC068Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC068Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC069Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC069Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC069Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC069Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC070Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC070Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC070Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC070Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC071Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC071Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC071Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC071Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC072Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC072Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC072Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC072Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC073Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC073Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC073Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC073Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC074Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC074Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC074Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC074Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC075Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC075Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC075Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC075Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC076Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC076Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC076Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC076Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC077Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC077Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC077Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC077Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC078Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC078Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC078Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC078Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC079Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC079Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC079Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC079Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC080Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC080Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC080Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC080Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC081Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC081Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC081Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC081Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC082Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC082Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC082Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC082Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC082Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC082Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC083Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC083Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC083Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC083Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC083Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC083Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC084Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC084Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC084Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC084Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC084Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC084Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC085Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC085Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC085Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC085Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC085Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC085Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC086Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC086Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC086Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC086Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC087Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC087Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC087Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC056/IIC087Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC090/IIC090Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC090/IIC090Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC090/IIC090Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC090/IIC090Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC090/IIC091Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC090/IIC091Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC090/IIC091Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC090/IIC091Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC094Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC094Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC094Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC094Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC095Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC095Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC095Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC095Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC096Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC096Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC096Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC096Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC097Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC097Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC097Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC094/IIC097Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC100Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC100Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC100Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC100Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC101Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC101Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC101Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC101Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC102Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC102Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC102Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC102Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC103Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC103Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC103Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC103Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC104Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC104Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC104Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC104Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC105Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC105Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC105Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC105Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC106Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC106Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC106Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC106Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC107Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC107Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC107Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC107Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC108Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC108Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC108Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC108Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC109Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC109Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC109Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC109Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC110Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC110Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC110Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC110Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC111Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC111Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC111Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC111Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC112Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC112Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC112Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC112Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC113Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC113Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC113Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC113Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC114Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC114Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC114Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC114Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC115Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC115Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC115Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC115Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC116Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC116Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC116Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC116Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC117Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC117Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC117Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC117Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC118Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC118Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC118Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC118Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC119Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC119Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC119Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC119Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC120Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC120Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC120Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC120Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC121Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC121Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC121Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC121Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC122Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC122Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC122Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC122Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC123Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC123Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC123Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC123Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC124Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC124Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC124Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC124Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC125Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC125Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC125Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC125Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC126Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC126Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC126Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC126Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC127Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC127Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC127Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC127Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC128Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC128Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC128Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC128Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC129Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC129Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC129Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC129Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC130Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC130Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC130Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC130Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC131Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC131Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC131Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC131Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC132Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC132Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC132Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC132Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC133Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC133Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC133Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC133Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC134Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC134Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC134Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC134Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC135Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC135Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC135Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC135Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC136Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC136Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC136Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC136Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC137Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC137Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC137Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC137Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC138Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC138Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC138Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC138Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC139Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC139Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC139Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC139Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC140Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC140Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC140Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC140Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC141Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC141Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC141Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC141Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC142Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC142Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC142Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC142Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC143Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC143Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC143Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC143Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC144Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC144Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC144Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC144Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC145Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC145Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC145Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC145Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC146Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC146Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC146Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC146Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC147Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC147Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC147Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC147Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC148Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC148Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC148Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC148Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC149Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC149Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC149Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC149Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC150Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC150Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC150Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC150Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC151Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC151Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC151Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC151Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC152Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC152Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC152Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC152Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC153Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC153Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC153Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC153Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC154Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC154Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC154Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC154Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC155Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC155Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC155Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC155Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC156Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC156Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC156Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC156Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC157Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC157Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC157Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC157Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC158Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC158Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC158Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC158Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC159Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC159Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC159Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC159Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC160Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC160Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC160Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC160Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC161Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC161Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC161Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC161Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC162Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC162Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC162Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC162Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC163Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC163Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC163Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC163Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC164Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC164Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC164Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC164Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC165Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC165Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC165Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC165Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC166Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC166Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC166Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC166Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC167Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC167Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC167Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC167Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC168Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC168Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC168Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC168Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC169Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC169Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC169Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC169Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC170Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC170Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC170Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC170Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC171Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC171Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC171Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC171Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC172Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC172Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC172Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC172Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC173Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC173Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC173Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC173Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC174Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC174Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC174Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC174Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC175Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC175Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC175Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC175Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC176Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC176Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC176Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC176Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC177Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC177Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC177Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC177Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC178Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC178Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC178Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC178Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC179Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC179Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC179Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC179Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC180Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC180Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC180Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC180Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC181Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC181Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC181Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC181Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC182Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC182Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC182Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC182Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC183Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC183Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC183Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC183Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC184Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC184Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC184Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC184Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC185Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC185Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC185Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC185Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC186Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC186Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC186Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC186Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC187Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC187Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC187Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC187Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC188Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC188Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC188Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC188Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC189Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC189Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC189Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC189Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC190Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC190Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC190Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC190Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC191Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC191Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC191Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC191Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC192Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC192Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC192Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC192Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC193Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC193Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC193Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC193Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC194Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC194Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC194Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC194Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC195Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC195Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC195Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC195Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC196Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC196Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC196Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC196Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC197Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC197Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC197Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC197Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC198Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC198Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC198Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC198Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC199Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC199Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC199Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC199Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC200Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC200Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC200Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC200Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC201Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC201Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC201Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC201Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC202Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC202Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC202Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC202Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC203Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC203Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC203Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC203Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC204Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC204Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC204Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC204Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC205Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC205Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC205Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC205Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC206Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC206Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC206Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC206Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC207Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC207Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC207Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC207Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC208Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC208Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC208Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC208Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC209Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC209Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC209Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC209Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC210Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC210Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC210Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC210Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC211Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC211Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC211Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC211Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC212Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC212Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC212Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC212Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC213Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC213Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC213Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC213Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC214Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC214Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC214Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC214Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC215Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC215Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC215Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC215Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC216Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC216Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC216Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC216Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC217Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC217Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC217Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC217Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC218Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC218Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC218Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC218Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC219Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC219Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC219Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC219Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC220Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC220Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC220Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC220Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC221Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC221Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC221Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC221Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC222Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC222Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC222Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC222Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC223Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC223Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC223Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC223Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC224Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC224Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC224Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC224Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC225Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC225Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC225Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC225Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC226Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC226Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC226Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC226Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC227Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC227Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC227Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC227Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC228Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC228Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC228Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC228Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC229Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC229Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC229Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC229Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC230Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC230Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC230Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC230Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC231Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC231Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC231Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC231Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC232Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC232Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC232Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC100/IIC232Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC300Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC300Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC300Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC300Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC301Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC301Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC301Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC301Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC302Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC302Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC302Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC302Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC303Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC303Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC303Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC300/IIC303Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC310Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC310Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC310Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC310Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC311Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC311Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC311Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC311Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC312Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC312Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC312Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC312Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC313Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC313Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC313Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC310/IIC313Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC320Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC320Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC320Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC320Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC321Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC321Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC321Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC321Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC322Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC322Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC322Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC322Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC323Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC323Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC323Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC320/IIC323Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC330Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC330Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC330Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC330Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC331Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC331Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC331Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC331Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC333Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC333Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC333Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC333Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC334Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC334Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC334Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC330/IIC334Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC340Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC340Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC340Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC340Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC341Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC341Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC341Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC341Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC342Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC342Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC342Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC342Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC343Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC343Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC343Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC343Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC344Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC344Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC344Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC344Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC345Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC345Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC345Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC345Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC346Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC346Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC346Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC346Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC347Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC347Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC347Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC347Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC348Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC348Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC348Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC348Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC349Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC349Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC349Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC349Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC350Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC350Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC350Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC350Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC351Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC351Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC351Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC351Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC352Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC352Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC352Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC352Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC353Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC353Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC353Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC353Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC354Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC354Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC354Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC354Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC355Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC355Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC355Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC355Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC356Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC356Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC356Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC356Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC357Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC357Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC357Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC357Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC358Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC358Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC358Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC358Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC359Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC359Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC359Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIC340/IIC359Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID001Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID001Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID001Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID001Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID001Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID001Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID002Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID002Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID002Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID002Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID002Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID002Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID003Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID003Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID003Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID003Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID003Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID003Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID004Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID004Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID004Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID004Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID004Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID004Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID005Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID005Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID005Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID005Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID005Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID005Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID006Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID006Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID006Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID006Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID006Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID006Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID007Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID007Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID007Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID007Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID007Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID007Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID008Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID008Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID008Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID008Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID008Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID008Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID009Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID009Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID009Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID009Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID009Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID009Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID010Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID010Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID010Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID010Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID010Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID010Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID011Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID011Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID011Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID011Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID011Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID011Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID012Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID012Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID012Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID012Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID012Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID012Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID013Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID013Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID013Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID013Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID013Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID013Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID014Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID014Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID014Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID014Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID014Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID014Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID015Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID015Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID015Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID015Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID015Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID015Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID016Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID016Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID016Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID016Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID016Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID016Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID017Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID017Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID017Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID017Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID017Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID017Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID018Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID018Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID018Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID018Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID018Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID018Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID019Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID019Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID019Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID019Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID019Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID019Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID020Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID020Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID020Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID020Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID020Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID020Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID021Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID021Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID021Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID021Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID021Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID021Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID022Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID022Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID022Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID022Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID022Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID022Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID023Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID023Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID023Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID023Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID023Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID023Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID024Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID024Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID024Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID024Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID024Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID024Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID025Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID025Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID025Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID025Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID025Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID025Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID026Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID026Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID026Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID026Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID026Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID026Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID027Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID027Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID027Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID027Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID027Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID027Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID028Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID001/IID028Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID028Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID001/IID028Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID001/IID028Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID001/IID028Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID300Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID300Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID300Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID300Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID300Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID300Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID301Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID301Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID301Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID301Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID301Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID301Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID302Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID302Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID302Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID302Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID302Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID302Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID303Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID303Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID303Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID303Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID303Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID303Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID304Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID304Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID304Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID304Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID304Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID304Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID305Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID305Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID305Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID305Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID305Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID305Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID306Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID306Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID306Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID306Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID306Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID306Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID307Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID307Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID307Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID307Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID307Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID307Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID308Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID308Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID308Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID308Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID308Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID308Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID309Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID309Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID309Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID309Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID309Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID309Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID310Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID310Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID310Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID310Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID310Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID310Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID311Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID311Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID311Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID311Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID311Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID311Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID312Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID312Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID312Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID312Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID312Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID312Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID313Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID313Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID313Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID313Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID313Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID313Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID314Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID314Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID314Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID314Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID314Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID314Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID315Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID315Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID315Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID315Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID315Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID315Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID316Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID316Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID316Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID316Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID316Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID316Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID317Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID317Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID317Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID317Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID317Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID317Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID318Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID318Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID318Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID318Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID318Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID318Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID319Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID319Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID319Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID319Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID319Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID319Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID320Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID300/IID320Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID320Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID300/IID320Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID300/IID320Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID300/IID320Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID330/IID330Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID330/IID330Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID330/IID330Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID330/IID330Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID330/IID330Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID330/IID330Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID330/IID331Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID330/IID331Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID330/IID331Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID330/IID331Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID330/IID331Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID330/IID331Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID330/IID332Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID330/IID332Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID330/IID332Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID330/IID332Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID330/IID332Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID330/IID332Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID330/IID333Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID330/IID333Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID330/IID333Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID330/IID333Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID330/IID333Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID330/IID333Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID340/IID340Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID340/IID340Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID340/IID340Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID340/IID340Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID340/IID340Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID340/IID340Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID340/IID341Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID340/IID341Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID340/IID341Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID340/IID341Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID340/IID341Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID340/IID341Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID340/IID342Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID340/IID342Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID340/IID342Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID340/IID342Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID340/IID342Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID340/IID342Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID340/IID343Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IID340/IID343Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID340/IID343Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IID340/IID343Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IID340/IID343Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IID340/IID343Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIE001/IIE001Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIE001/IIE001Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIE001/IIE001Repository/IIE001PolicySetId1.xml .../mandatory/IIE001/IIE001Repository/IIE001PolicySetId1.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIE001/IIE001Repository/IIE001Policyid1.xml ...-ct/mandatory/IIE001/IIE001Repository/IIE001Policyid1.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIE001/IIE001Request.xml .../xacml-3.0-from-2.0-ct/mandatory/IIE001/IIE001Request.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIE001/IIE001Response.xml ...xacml-3.0-from-2.0-ct/mandatory/IIE001/IIE001Response.xml +1 -2
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIE001/IIE002Policy.xml ...e/xacml-3.0-from-2.0-ct/mandatory/IIE001/IIE002Policy.xml +1 -1
- src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIE001/IIE002Repository/IIE002PolicyId1.xml ...-ct/mandatory/IIE001/IIE002Repository/IIE002PolicyId1.xml +1 -1
- No files found.
Too many changes to show.
To preserve performance only 1000 of 1000+ files are displayed.