├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── maven.yml ├── .gitignore ├── ADOPTERS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MIGRATION.md ├── README.md ├── SECURITY.md ├── migration ├── pdp-xsd-v7.xsl ├── xacml2To3Policy.xsl └── xacml3-policy-c14n.xsl ├── owasp-dependency-check-suppression.xml ├── pdp-cli ├── .gitignore ├── license │ ├── alv2-header.txt │ └── header-defs.xml ├── owasp-dependency-check-suppression.xml ├── pom.xml ├── spotbugs-security-exclude.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── ow2 │ │ │ └── authzforce │ │ │ └── core │ │ │ └── pdp │ │ │ └── cli │ │ │ └── PdpCommandLineCallable.java │ └── resources │ │ └── logback.xml │ ├── org.ow2.authzforce.core.product.properties │ ├── setenv.sh │ └── test │ ├── java │ └── org │ │ └── ow2 │ │ └── authzforce │ │ └── core │ │ └── pdp │ │ └── cli │ │ └── test │ │ └── CliTest.java │ └── resources │ └── conformance │ └── xacml-3.0-core │ └── mandatory │ ├── IIA001 │ ├── Policy.xml │ ├── Request.json │ ├── Request.xml │ ├── Response.json │ └── Response.xml │ ├── logback.xml │ └── pdp.xml ├── pdp-engine-oss-functional-benchmark ├── .gitignore ├── license │ ├── alv2-header.txt │ └── header-defs.xml ├── owasp-dependency-check-suppression.xml ├── pom.xml ├── spotbugs-security-exclude.xml └── src │ └── test │ ├── java │ └── org │ │ └── ow2 │ │ └── authzforce │ │ └── core │ │ └── pdp │ │ └── benchmark │ │ └── test │ │ └── ComparativePdpTest.java │ └── resources │ ├── ComparativePdpTest │ ├── configs │ │ ├── att-xacml │ │ │ └── xacml.properties │ │ ├── authzforce-ce │ │ │ ├── catalog.xml │ │ │ ├── pdp-ext.xsd │ │ │ └── pdp.xml │ │ └── wso2-balana │ │ │ └── balana.xml │ └── test-cases │ │ ├── EmptyCategory │ │ ├── policy.xml │ │ ├── request.xml │ │ └── response.xml │ │ ├── EmptyMatchAttValue │ │ ├── policy.xml │ │ ├── request.xml │ │ └── response.xml │ │ ├── MultiAttWithSameId │ │ ├── policy.xml │ │ ├── request.xml │ │ └── response.xml │ │ └── PolicySetWithoutPolicies │ │ ├── policy.xml │ │ ├── request.xml │ │ └── response.xml │ ├── catalog.xml │ ├── logback.xml │ └── pdp-ext.xsd ├── pdp-engine ├── .gitignore ├── license │ ├── alv2-header.txt │ └── header-defs.xml ├── owasp-dependency-check-suppression.xml ├── pom.xml ├── spotbugs-security-exclude.xml └── src │ ├── main │ ├── java │ │ ├── .gitignore │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ └── org │ │ │ └── ow2 │ │ │ └── authzforce │ │ │ └── core │ │ │ └── pdp │ │ │ └── impl │ │ │ ├── AllOfEvaluator.java │ │ │ ├── AnyOfEvaluator.java │ │ │ ├── AttributeAssignmentExpressionEvaluator.java │ │ │ ├── BasePdpEngine.java │ │ │ ├── BooleanEvaluator.java │ │ │ ├── BooleanEvaluators.java │ │ │ ├── CloseableNamedAttributeProviderRegistry.java │ │ │ ├── DefaultEnvironmentProperties.java │ │ │ ├── EvaluationContextBasedMultiNamedAttributeProvider.java │ │ │ ├── EvaluationContextBasedNamedAttributeProvider.java │ │ │ ├── EvaluationContextBasedSingleNamedAttributeProvider.java │ │ │ ├── ImmutableAttributeDesignator.java │ │ │ ├── ImmutablePdpExtensionRegistry.java │ │ │ ├── IndividualDecisionRequestContext.java │ │ │ ├── MatchEvaluator.java │ │ │ ├── PdpBean.java │ │ │ ├── PdpEngineConfiguration.java │ │ │ ├── PdpExtensions.java │ │ │ ├── PdpModelHandler.java │ │ │ ├── PepActionExpression.java │ │ │ ├── SchemaHandler.java │ │ │ ├── StandardEnvironmentAttribute.java │ │ │ ├── StandardEnvironmentAttributeProvider.java │ │ │ ├── StandardResourceAttribute.java │ │ │ ├── StandardSubjectAttribute.java │ │ │ ├── TargetEvaluators.java │ │ │ ├── XacmlVariableBasedAttributeProvider.java │ │ │ ├── combining │ │ │ ├── CombiningAlgEvaluators.java │ │ │ ├── DPOverridesCombiningAlg.java │ │ │ ├── DPUnlessPDCombiningAlg.java │ │ │ ├── FirstApplicableCombiningAlg.java │ │ │ ├── ImmutableCombiningAlgRegistry.java │ │ │ ├── LegacyDenyOverridesCombiningAlg.java │ │ │ ├── LegacyPermitOverridesCombiningAlg.java │ │ │ ├── OnlyOneApplicableCombiningAlg.java │ │ │ └── StandardCombiningAlgorithm.java │ │ │ ├── expression │ │ │ ├── ApplyExpressions.java │ │ │ ├── AttributeSelectorExpressions.java │ │ │ └── DepthLimitingExpressionFactory.java │ │ │ ├── func │ │ │ ├── ConstantResultFirstOrderFunctionCall.java │ │ │ ├── FunctionRegistry.java │ │ │ ├── ImmutableFunctionRegistry.java │ │ │ ├── LogicalAndFunction.java │ │ │ ├── LogicalNOfFunction.java │ │ │ ├── LogicalNotFunction.java │ │ │ ├── LogicalOrFunction.java │ │ │ ├── MapFunctionFactory.java │ │ │ ├── NumericArithmeticFunction.java │ │ │ ├── NumericArithmeticOperators.java │ │ │ ├── StandardDatatypeConverters.java │ │ │ ├── StandardEqualTypeMatchers.java │ │ │ ├── StandardFunction.java │ │ │ ├── StandardHigherOrderBagFunctions.java │ │ │ ├── StandardNonEqualTypeMatchers.java │ │ │ ├── StringConcatenateFunction.java │ │ │ ├── StringN11nFunction.java │ │ │ ├── SubstringFunction.java │ │ │ ├── TemporalArithmeticFunction.java │ │ │ ├── TemporalArithmeticOperators.java │ │ │ ├── TimeRangeComparisonFunction.java │ │ │ └── XPathNodeCountFunction.java │ │ │ ├── io │ │ │ ├── DecisionRequestPreprocessorSupplier.java │ │ │ ├── DefaultXacmlJaxbResultPostprocessorFactory.java │ │ │ ├── MultiDecisionXacmlJaxbRequestPreprocessor.java │ │ │ ├── PdpEngineAdapters.java │ │ │ └── SingleDecisionXacmlJaxbRequestPreprocessor.java │ │ │ ├── policy │ │ │ ├── CoreStaticPolicyProvider.java │ │ │ ├── FlattenedPolicyTree.java │ │ │ ├── PolicyEvaluators.java │ │ │ ├── PolicyMap.java │ │ │ ├── PolicyVersions.java │ │ │ ├── RootPolicyEvaluator.java │ │ │ └── RootPolicyEvaluators.java │ │ │ └── rule │ │ │ ├── ConditionEvaluators.java │ │ │ ├── RuleEvaluator.java │ │ │ └── RuleEvaluators.java │ ├── jaxb │ │ ├── bindings.xjb │ │ └── catalog.xml │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.ow2.authzforce.core.pdp.api.PdpExtension │ │ ├── catalog.xml │ │ ├── pdp.xsd │ │ └── saxon.xml │ └── test │ ├── cxf-codegen │ └── DoubleItLogical.wsdl │ ├── java │ ├── META-INF │ │ └── MANIFEST.MF │ └── org │ │ └── ow2 │ │ └── authzforce │ │ └── core │ │ └── pdp │ │ └── impl │ │ └── test │ │ ├── DefaultEnvironmentPropertiesTest.java │ │ ├── MainTest.java │ │ ├── func │ │ ├── BagFunctionsTest.java │ │ ├── BagValueExpression.java │ │ ├── DateTimeArithmeticFunctionsTest.java │ │ ├── EqualityFunctionsTest.java │ │ ├── HigherOrderFunctionsTest.java │ │ ├── LogicalFunctionsTest.java │ │ ├── NonNumericComparisonFunctionsTest.java │ │ ├── NullValue.java │ │ ├── NumericArithmeticFunctionsTest.java │ │ ├── NumericComparisonFunctionsTest.java │ │ ├── NumericConversionFunctionsTest.java │ │ ├── RegExpBasedFunctionsTest.java │ │ ├── SetFunctionsTest.java │ │ ├── SpecialMatchFunctionsTest.java │ │ ├── StandardFunctionTest.java │ │ ├── StringConversionFunctionsTest.java │ │ └── StringFunctionsTest.java │ │ └── value │ │ ├── AnyURIAttributeTest.java │ │ └── StandardJavaTypeToXacmlAttributeDatatypeConversionTest.java │ └── resources │ └── logback.xml ├── pdp-io-xacml-json ├── .gitignore ├── license │ ├── alv2-header.txt │ └── header-defs.xml ├── owasp-dependency-check-suppression.xml ├── pom.xml ├── spotbugs-security-exclude.xml └── src │ └── main │ ├── java │ └── org │ │ └── ow2 │ │ └── authzforce │ │ └── core │ │ └── pdp │ │ └── io │ │ └── xacml │ │ └── json │ │ ├── BaseXacmlJsonRequestPreprocessor.java │ │ ├── BaseXacmlJsonResultPostprocessor.java │ │ ├── IndividualXacmlJsonRequest.java │ │ ├── MultipleDecisionXacmlJsonRequestPreprocessor.java │ │ ├── SerializableJSONObject.java │ │ ├── SingleDecisionXacmlJsonRequestPreprocessor.java │ │ └── XacmlJsonParsingUtils.java │ └── resources │ └── META-INF │ └── services │ └── org.ow2.authzforce.core.pdp.api.PdpExtension ├── pdp-testutils ├── .gitignore ├── .settings │ └── .gitignore ├── license │ ├── alv2-header.txt │ └── header-defs.xml ├── owasp-dependency-check-suppression.xml ├── pom.xml ├── spotbugs-security-exclude.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── ow2 │ │ │ └── authzforce │ │ │ └── core │ │ │ └── pdp │ │ │ └── testutil │ │ │ ├── TestUtils.java │ │ │ ├── XacmlXmlPdpTestHelper.java │ │ │ └── ext │ │ │ ├── CustomJsonObjectBasedAttributeValue.java │ │ │ ├── MongoDbPolicyProvider.java │ │ │ ├── TestAttributeProvider.java │ │ │ ├── TestCombinedDecisionXacmlJaxbResultPostprocessor.java │ │ │ ├── TestDnsNameValueEqualFunction.java │ │ │ ├── TestDnsNameWithPortValue.java │ │ │ ├── TestOnPermitApplySecondCombiningAlg.java │ │ │ └── TestXacmlPolicyAttributeValue.java │ ├── jaxb │ │ ├── bindings.xjb │ │ └── catalog.xml │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.ow2.authzforce.core.pdp.api.PdpExtension │ │ ├── mongodb_policy_provider_doc_schema.json │ │ └── org.ow2.authzforce.core.pdp.testutil.ext.xsd │ └── test │ ├── java │ └── org │ │ ├── apache │ │ └── coheigea │ │ │ └── cxf │ │ │ └── sts │ │ │ └── xacml │ │ │ └── common │ │ │ ├── CommonCallbackHandler.java │ │ │ ├── DoubleItPortTypeImpl.java │ │ │ ├── RolesClaimsHandler.java │ │ │ ├── STSServer.java │ │ │ └── TokenTestUtils.java │ │ └── ow2 │ │ └── authzforce │ │ └── core │ │ └── pdp │ │ └── testutil │ │ └── test │ │ ├── CustomPdpTest.java │ │ ├── CustomTestRequestPreprocessorFactory.java │ │ ├── MainTest.java │ │ ├── MongoDbPolicyProviderTest.java │ │ ├── NonRegressionTest.java │ │ ├── PdpGetStaticApplicablePoliciesTest.java │ │ ├── TestExtensibleSimpleValue.java │ │ ├── TestExtensibleSimpleValueEqualFunction.java │ │ ├── conformance │ │ ├── ConformanceV3FromV2Test.java │ │ ├── ConformanceV3OthersTest.java │ │ ├── MandatoryConformanceV3FromV2Test.java │ │ └── OptionalConformanceV3FromV2Test.java │ │ ├── json │ │ ├── PdpEngineXacmlJsonAdapters.java │ │ ├── XacmlJsonConformanceMultipleDecisionProfileTest.java │ │ ├── XacmlJsonConformanceV3MandatoryTest.java │ │ ├── XacmlJsonNonRegressionTest.java │ │ ├── XacmlJsonOtherTests.java │ │ └── XacmlJsonTest.java │ │ └── pep │ │ └── cxf │ │ ├── EmbeddedPdpBasedAuthzInterceptor.java │ │ ├── EmbeddedPdpBasedAuthzInterceptorTest.java │ │ ├── EmbeddedPdpBasedSoapInterceptor.java │ │ └── Server.java │ ├── resources.json │ ├── .gitignore │ ├── NonRegression │ │ └── GH-42 │ │ │ ├── Policy.xml │ │ │ ├── README.md │ │ │ ├── Request.json │ │ │ └── Response.json │ ├── build.xml │ ├── ivy.xml │ ├── other │ │ └── CustomJsonObjectDatatype │ │ │ ├── README.md │ │ │ ├── Request.json │ │ │ ├── Response.json │ │ │ ├── pdp.xml │ │ │ └── policy.xml │ ├── xacml-common-xml-to-json.xsl │ ├── xacml-request-xml-to-json.xsl │ └── xacml-response-xml-to-json.xsl │ ├── resources │ ├── ComparativePdpTest │ │ ├── configs │ │ │ ├── att-xacml │ │ │ │ └── xacml.properties │ │ │ ├── authzforce-ce │ │ │ │ ├── catalog.xml │ │ │ │ ├── pdp-ext.xsd │ │ │ │ └── pdp.xml │ │ │ └── wso2-balana │ │ │ │ └── balana.xml │ │ └── test-cases │ │ │ ├── EmptyCategory │ │ │ ├── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ │ ├── EmptyMatchAttValue │ │ │ ├── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ │ ├── MultiAttWithSameId │ │ │ ├── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ │ └── PolicySetWithoutPolicies │ │ │ ├── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ ├── META-INF │ │ └── services │ │ │ └── org.ow2.authzforce.core.pdp.api.PdpExtension │ ├── NonRegression │ │ ├── OW2-21 │ │ │ ├── README.md │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ ├── OW2-22.1 │ │ │ ├── README.md │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ ├── OW2-22.2 │ │ │ ├── README.md │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ ├── OW2-25.1 │ │ │ ├── README.md │ │ │ ├── pdp.xml │ │ │ └── policies │ │ │ │ └── policy.xml │ │ ├── OW2-25.2 │ │ │ ├── README.md │ │ │ ├── pdp.xml │ │ │ └── policies │ │ │ │ └── policy.xml │ │ ├── OW2-25.3 │ │ │ ├── README.md │ │ │ ├── pdp.xml │ │ │ └── policies │ │ │ │ └── policy.xml │ │ └── README.md │ ├── catalog.xml │ ├── conformance │ │ ├── others │ │ │ ├── MapFunction.ArgsAfterBag │ │ │ │ ├── policies │ │ │ │ │ └── policy.xml │ │ │ │ ├── request.xml │ │ │ │ └── response.xml │ │ │ ├── PolicyId.Uniqueness.AcrossSiblings │ │ │ │ └── policies │ │ │ │ │ └── policy.xml │ │ │ ├── PolicyId.Uniqueness.WithinPolicySet │ │ │ │ └── policies │ │ │ │ │ └── policy.xml │ │ │ ├── PolicyReference.Circular │ │ │ │ └── policies │ │ │ │ │ ├── invalid-pps-employee.xml │ │ │ │ │ ├── policy.xml │ │ │ │ │ └── pps-manager.xml │ │ │ ├── PolicyReference.Undef │ │ │ │ └── policies │ │ │ │ │ ├── policy.xml │ │ │ │ │ └── pps-employee.xml │ │ │ ├── PolicyReference.Valid │ │ │ │ ├── policies │ │ │ │ │ ├── policy.xml │ │ │ │ │ └── pps-employee.xml │ │ │ │ ├── request.xml │ │ │ │ └── response.xml │ │ │ ├── PolicySetId.Uniqueness.AcrossDescendants │ │ │ │ └── policies │ │ │ │ │ └── policy.xml │ │ │ ├── PolicySetId.Uniqueness.AcrossSiblings │ │ │ │ └── policies │ │ │ │ │ └── policy.xml │ │ │ ├── PolicySetId.Uniqueness.WithinPolicySet │ │ │ │ └── policies │ │ │ │ │ └── policy.xml │ │ │ ├── RuleId.Uniqueness │ │ │ │ └── policies │ │ │ │ │ └── policy.xml │ │ │ ├── Rule_Obligations.DenyOverrides_alg.Returns_Permit.0_Deny+2_App_Permit_Rules │ │ │ │ ├── policy.xml │ │ │ │ ├── request.xml │ │ │ │ └── response.xml │ │ │ ├── Rule_Obligations.DenyOverrides_alg.Returns_Permit.1_Deny+2_App_Permit_Rules │ │ │ │ ├── policy.xml │ │ │ │ ├── request.xml │ │ │ │ └── response.xml │ │ │ ├── Rule_Obligations.DenyUnlessPermit_alg.Returns_Deny.0_Permit+2_App_Deny_Rules │ │ │ │ ├── policy.xml │ │ │ │ ├── request.xml │ │ │ │ └── response.xml │ │ │ ├── Rule_Obligations.DenyUnlessPermit_alg.Returns_Deny.1_Permit+2_App_Deny_Rules │ │ │ │ ├── policy.xml │ │ │ │ ├── request.xml │ │ │ │ └── response.xml │ │ │ ├── Rule_Obligations.PermitOverrides_alg.Returns_Deny.0_Permit+2_App_Deny_Rules │ │ │ │ ├── policy.xml │ │ │ │ ├── request.xml │ │ │ │ └── response.xml │ │ │ ├── Rule_Obligations.PermitOverrides_alg.Returns_Deny.1_Permit+2_App_Deny_Rules │ │ │ │ ├── policy.xml │ │ │ │ ├── request.xml │ │ │ │ └── response.xml │ │ │ ├── Rule_Obligations.PermitUnlessDeny_alg.Returns_Permit.0_Deny+2_App_Permit_Rules │ │ │ │ ├── policy.xml │ │ │ │ ├── request.xml │ │ │ │ └── response.xml │ │ │ ├── Rule_Obligations.PermitUnlessDeny_alg.Returns_Permit.1_Deny+2_App_Permit_Rules │ │ │ │ ├── policy.xml │ │ │ │ ├── request.xml │ │ │ │ └── response.xml │ │ │ ├── StatusDetail.MissingAttributeDetail │ │ │ │ ├── pdp.xml │ │ │ │ ├── policies │ │ │ │ │ └── policy.xml │ │ │ │ ├── request.xml │ │ │ │ └── response.xml │ │ │ ├── VariableId.Uniqueness │ │ │ │ └── policies │ │ │ │ │ └── policy.xml │ │ │ ├── VariableReference.Circular │ │ │ │ └── policies │ │ │ │ │ └── policy.xml │ │ │ ├── VariableReference.Undef │ │ │ │ └── policies │ │ │ │ │ └── policy.xml │ │ │ └── VariableReference.Valid │ │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ │ ├── request.xml │ │ │ │ └── response.xml │ │ └── xacml-3.0-from-2.0-ct │ │ │ ├── ConformanceTests.html │ │ │ ├── README.md │ │ │ ├── mandatory │ │ │ ├── IIA001 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA003 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA006 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA007 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA008 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA009 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA011 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA013 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA014 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA015 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA016_FIXED │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA017 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA018_FIXED │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA019 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA020_FIXED │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA021 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA022_FIXED_NO_CONTENT_NO_XPATH │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIA023_FIXED_NO_CONTENT_NO_XPATH │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB001 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB002 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB003 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB004 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB005 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB006 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB007 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB008 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB009 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB010 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB011 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB012 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB013 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB014 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB015 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB016 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB017 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB018 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB019 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB020 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB021 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB022 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB023 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB024 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB025 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB026 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB027 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB028 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB029 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB030 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB031 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB032 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB033 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB034 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB035 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB036 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB037 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB038 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB039 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB040 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB041 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB042 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB043 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB044 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB045 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB046 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB047 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB048 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB049 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB050 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB051 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB052 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB053 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB300 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIB301 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC001 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC002 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC003 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml.ignore │ │ │ │ ├── Response.xml.ignore │ │ │ │ └── Special.txt │ │ │ ├── IIC004 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC005 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC006 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC007 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC008 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC009 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC010 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC011 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC012 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml.ignore │ │ │ │ ├── Response.xml.ignore │ │ │ │ └── Special.txt │ │ │ ├── IIC013 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC014 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml.ignore │ │ │ │ ├── Response.xml.ignore │ │ │ │ └── Special.txt │ │ │ ├── IIC015 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC016 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC017 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC018 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC019 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC020 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC021 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC022 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC024 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC025 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC026 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC027 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC028 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC029 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC030 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC031 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC032 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC033 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC034 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC035 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC036 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC037 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC038 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC039 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC040 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC041 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC042 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC043 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC044 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC045 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC046 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC047 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC048 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC049 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC050 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC051 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC052 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC053 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC056 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC057 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC058 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC059 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC060 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC061 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC062 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC063 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC064 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC065 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC066 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC067 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC068 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC069 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC070 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC071 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC072 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC073 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC074 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC075 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC076 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC077 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC078 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC079 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC080 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC081 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC082 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC083 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC084 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC085 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC086 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC087 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC090 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC091 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC094 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC095 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC096 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC097 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC100 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC101 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC102 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC103 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC104 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC105 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC106 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC107 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC108 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC109 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC110 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC111 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC112 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC113 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC114 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC115 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC116 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC117 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC118 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC119 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC120 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC121 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC122 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC123 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC124 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC125 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC126 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC127 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC128 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC129 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC130 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC131 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC132 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC133 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC134 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC135 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC136 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC137 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC138 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC139 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC140 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC141 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC142 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC143 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC144 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC145 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC146 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC147 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC148 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC149 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC150 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC151 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC152 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC153 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC154 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC155 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC156 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC157 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC158 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC159 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC160 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC161 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC162 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC163 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC164 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC165 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC166 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC167 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC168 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC169 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC170 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC171 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC172 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC173 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC174 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC175 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC176 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC177 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC178 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC179 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC180 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC181 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC182 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC183 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC184 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC185 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC186 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC187 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC188 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC189 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC190 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC191 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC192 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC193 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC194 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC195 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC196 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC197 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC198 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC199 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC200 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC201 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC202 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC203 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC204 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC205 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC206 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC207 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC208 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC209 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC210 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC211 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC212 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC213 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC214 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC215 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC216 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC217 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC218 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC219 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC220 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC221 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC222 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC223 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC224 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC225 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC226 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC227 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC228 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC229 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC230 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC231 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC232 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC300 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC301 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC302 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC303 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC310 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC311 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC312 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC313 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC320 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC321 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC322 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC323 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC330 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC331 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC332 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml.ignore │ │ │ │ └── Response.xml.ignore │ │ │ ├── IIC333 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC334 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC335 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml.ignore │ │ │ │ └── Response.xml.ignore │ │ │ ├── IIC340 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC341 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC342 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC343 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC344 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC345 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC346 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC347 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC348 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC349 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC350 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC351 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC352 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC353 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC354 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC355 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC356 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC357 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC358 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIC359 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID001 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID002 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID003 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID004 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID005 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID006 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID007 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID008 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID009 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID010 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID011 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID012 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID013 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID014 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID015 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID016 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID017 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID018 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID019 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID020 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID021 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID022 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID023 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID024 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID025 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID026 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID027 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID028 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID300 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID301 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID302 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID303 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID304 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID305 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID306 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID307 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID308 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID309 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID310 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID311 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID312 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID313 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID314 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID315 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID316 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID317 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID318 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID319 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID320 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID330 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID331 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID332 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID333 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID340 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID341 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID342 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IID343 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIE001 │ │ │ │ ├── Policies │ │ │ │ │ ├── IIE001PolicySetId1.xml │ │ │ │ │ ├── IIE001Policyid1.xml │ │ │ │ │ └── Policy.xml │ │ │ │ ├── Repository.properties.ignore │ │ │ │ ├── Request.xml │ │ │ │ ├── Response.xml │ │ │ │ └── Special.txt │ │ │ ├── IIE002 │ │ │ │ ├── Policies │ │ │ │ │ ├── IIE002PolicyId1.xml │ │ │ │ │ ├── IIE002PolicySetId1.xml │ │ │ │ │ └── Policy.xml │ │ │ │ ├── Repository.properties.ignore │ │ │ │ ├── Request.xml │ │ │ │ ├── Response.xml │ │ │ │ └── Special.txt │ │ │ ├── IIE003 │ │ │ │ ├── Policies │ │ │ │ │ ├── IIE003PolicyId1.xml │ │ │ │ │ ├── IIE003PolicyId2.xml │ │ │ │ │ └── Policy.xml │ │ │ │ ├── Repository.properties.ignore │ │ │ │ ├── Request.xml.ignore │ │ │ │ ├── Response.xml.ignore │ │ │ │ └── Special.txt │ │ │ ├── IIF301_FIXED_NO_XPATH │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIF310_FIXED_NO_XPATH │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIF311 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA001 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA002 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA003 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA004 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA005 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA006 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA007 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA008 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA009 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA010 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA011 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA012 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA013 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA014 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA015 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA016 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA017 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA018 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA019 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA020 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA021 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA022 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA023 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA024 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA025 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA026 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA027 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA028 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA301 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA302 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA303 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA304 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA305 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA306 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA307 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA308 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA309 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA310 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA311 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA312 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA313 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA314 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA315 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA316 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA317 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA318 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA319 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA320 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA321 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA322 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA323 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA324 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA325 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA326 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA327 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA328 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── IIIA329 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ └── IIIA340 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ ├── optional │ │ │ ├── README.md │ │ │ ├── xml+json │ │ │ │ ├── IIIC001 │ │ │ │ │ ├── Policy.xml │ │ │ │ │ ├── Request.xml │ │ │ │ │ └── Response.xml │ │ │ │ ├── IIIE302 │ │ │ │ │ ├── Policy.xml │ │ │ │ │ ├── Request.xml │ │ │ │ │ └── Response.xml │ │ │ │ ├── IIIG301 │ │ │ │ │ ├── Policy.xml │ │ │ │ │ ├── Request.xml │ │ │ │ │ └── Response.xml │ │ │ │ └── IIIG302 │ │ │ │ │ ├── Policy.xml │ │ │ │ │ ├── Request.xml │ │ │ │ │ └── Response.xml │ │ │ └── xml │ │ │ │ ├── IIA002 │ │ │ │ ├── AttributeProvider.xml │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ ├── Response.xml │ │ │ │ └── Special.txt │ │ │ │ ├── IIF300_FIXED_WITH_XPATH │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ │ ├── IIF301_FIXED_WITH_XPATH │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ │ ├── IIF310_FIXED_WITH_XPATH │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ │ ├── IIIA030_WITH_XPATH │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ │ ├── IIIA330_WITH_XPATH │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ │ ├── IIIF001 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ ├── Response.xml │ │ │ │ └── Special.txt │ │ │ │ ├── IIIF002 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ ├── Response.xml │ │ │ │ └── Special.txt │ │ │ │ ├── IIIF003 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ ├── Response.xml │ │ │ │ └── Special.txt │ │ │ │ ├── IIIF004 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ ├── Response.xml │ │ │ │ └── Special.txt │ │ │ │ ├── IIIF005 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml.ignore │ │ │ │ ├── Response.xml.ignore │ │ │ │ └── Special.txt │ │ │ │ ├── IIIF006 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ ├── Response.xml │ │ │ │ └── Special.txt │ │ │ │ ├── IIIF007 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ ├── Response.xml │ │ │ │ └── Special.txt │ │ │ │ └── IIIG001 │ │ │ │ ├── Policy.xml │ │ │ │ ├── Request.xml │ │ │ │ └── Response.xml │ │ │ └── unsupported │ │ │ ├── IIA010Policy.xml │ │ │ ├── IIA010Request.xml │ │ │ ├── IIA010Response.xml │ │ │ ├── IIA012Policy.xml │ │ │ ├── IIA012Request.xml │ │ │ ├── IIA012Response.xml │ │ │ ├── IIA024Policy.xml │ │ │ ├── IIA024Request.xml │ │ │ ├── IIA024Response.xml │ │ │ ├── IID029Policy1.xml │ │ │ ├── IID029Policy2.xml │ │ │ ├── IID029Repository.properties │ │ │ ├── IID029Request.xml │ │ │ ├── IID029Response.xml │ │ │ ├── IID029Special.txt │ │ │ ├── IID030Policy1.xml │ │ │ ├── IID030Policy2.xml │ │ │ ├── IID030Repository.properties │ │ │ ├── IID030Request.xml │ │ │ ├── IID030Response.xml │ │ │ ├── IID030Special.txt │ │ │ ├── IIIC002Policy.xml │ │ │ ├── IIIC002Request.xml │ │ │ ├── IIIC002Response.xml │ │ │ ├── IIIC003Policy.xml │ │ │ ├── IIIC003Request.xml │ │ │ ├── IIIC003Response.xml │ │ │ ├── IIICSpecial.txt │ │ │ ├── IIIE301Policy.xml │ │ │ ├── IIIE301Request.xml │ │ │ ├── IIIE301Response.xml │ │ │ ├── IIIE303Policy.xml │ │ │ ├── IIIE303Request.xml │ │ │ ├── IIIE303Response.xml │ │ │ ├── IIIG002Policy.xml │ │ │ ├── IIIG002Request.xml │ │ │ ├── IIIG002Response.xml │ │ │ ├── IIIG003Policy.xml │ │ │ ├── IIIG003Request.xml │ │ │ ├── IIIG003Response.xml │ │ │ ├── IIIG004Policy.xml │ │ │ ├── IIIG004Request.xml │ │ │ ├── IIIG004Response.xml │ │ │ ├── IIIG005Policy.xml │ │ │ ├── IIIG005Request.xml │ │ │ ├── IIIG005Response.xml │ │ │ ├── IIIG006Policy.xml │ │ │ ├── IIIG006Request.xml │ │ │ └── IIIG006Response.xml │ ├── custom │ │ ├── CustomCombiningAlg │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ ├── CustomComplexDatatype │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ ├── CustomRequestPreproc │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ ├── CustomResultPostproc(IIIE302+CombinedDecision) │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ ├── CustomSimpleDatatypeAndFunction │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ ├── InlinePolicyConfig │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── pps-employee.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ ├── MaxPolicyRefDepth │ │ │ ├── pdp.xml │ │ │ └── policies │ │ │ │ ├── pps-employee.xml │ │ │ │ ├── pps-manager.xml │ │ │ │ └── root-policy.xml │ │ ├── MaxVariableRefDepth │ │ │ ├── pdp.xml │ │ │ └── policies │ │ │ │ └── policy.xml │ │ ├── StdEnvAttributeProvider.PDP_ONLY │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ ├── StdEnvAttributeProvider.REQUEST_ELSE_PDP │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ ├── StdEnvAttributeProvider.REQUEST_ONLY │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ ├── XPath2.0 │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ ├── XacmlVariableBasedAttributeProvider │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ │ └── XacmlVariableUsedAsXPathVariable │ │ │ ├── pdp.xml │ │ │ ├── policies │ │ │ └── policy.xml │ │ │ ├── request.xml │ │ │ └── response.xml │ ├── logback.xml │ ├── org │ │ ├── apache │ │ │ └── coheigea │ │ │ │ └── cxf │ │ │ │ └── sts │ │ │ │ └── xacml │ │ │ │ └── common │ │ │ │ ├── DoubleItLogical.wsdl │ │ │ │ ├── cxf-sts.xml │ │ │ │ └── ws-trust-1.4-service.wsdl │ │ └── ow2 │ │ │ └── authzforce │ │ │ └── core │ │ │ └── pdp │ │ │ └── testutil │ │ │ └── test │ │ │ ├── pdp.xml │ │ │ ├── pep │ │ │ └── cxf │ │ │ │ ├── DoubleItSecure.wsdl │ │ │ │ ├── cxf-client.xml │ │ │ │ ├── cxf-doubleit-service.xml │ │ │ │ ├── pdp.xml │ │ │ │ └── policies │ │ │ │ ├── boss_permission_policy.xml │ │ │ │ └── boss_role_policy.xml │ │ │ ├── permit-all-policy-0.1.0.xml │ │ │ ├── permit-all-policy-0.1.xml │ │ │ ├── permit-all-policyset-0.1.0.xml │ │ │ ├── rbac-pps-employee-1.0.xml │ │ │ ├── request.xml │ │ │ ├── response.xml │ │ │ ├── root-rbac-policyset-0.1.xml │ │ │ └── root-rbac-policyset-1.2.xml │ ├── pdp-ext.xsd │ ├── stsClientKeystore.properties │ ├── stsKeystore.properties │ ├── stsServiceKeystore.properties │ ├── stsclientstore.jks │ ├── stsservicestore.jks │ └── stsstore.jks │ └── suites │ └── json │ ├── conformance.xml │ ├── non-regression.xml │ └── other.xml ├── pom.xml ├── spif-utils ├── ACME-SPIF-example.xml ├── NATO-SPIF-example.xml ├── spif.xsd ├── spif2xacml-for-xpath-1.0.xsl ├── spif2xacml-for-xpath-2.0.xsl └── xml.xsd └── spotbugs-security-exclude.xml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/.gitignore -------------------------------------------------------------------------------- /ADOPTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/ADOPTERS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/MIGRATION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/SECURITY.md -------------------------------------------------------------------------------- /migration/pdp-xsd-v7.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/migration/pdp-xsd-v7.xsl -------------------------------------------------------------------------------- /migration/xacml2To3Policy.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/migration/xacml2To3Policy.xsl -------------------------------------------------------------------------------- /migration/xacml3-policy-c14n.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/migration/xacml3-policy-c14n.xsl -------------------------------------------------------------------------------- /owasp-dependency-check-suppression.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/owasp-dependency-check-suppression.xml -------------------------------------------------------------------------------- /pdp-cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/.gitignore -------------------------------------------------------------------------------- /pdp-cli/license/alv2-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/license/alv2-header.txt -------------------------------------------------------------------------------- /pdp-cli/license/header-defs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/license/header-defs.xml -------------------------------------------------------------------------------- /pdp-cli/owasp-dependency-check-suppression.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/owasp-dependency-check-suppression.xml -------------------------------------------------------------------------------- /pdp-cli/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/pom.xml -------------------------------------------------------------------------------- /pdp-cli/spotbugs-security-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/spotbugs-security-exclude.xml -------------------------------------------------------------------------------- /pdp-cli/src/main/java/org/ow2/authzforce/core/pdp/cli/PdpCommandLineCallable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/src/main/java/org/ow2/authzforce/core/pdp/cli/PdpCommandLineCallable.java -------------------------------------------------------------------------------- /pdp-cli/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/src/main/resources/logback.xml -------------------------------------------------------------------------------- /pdp-cli/src/org.ow2.authzforce.core.product.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/src/org.ow2.authzforce.core.product.properties -------------------------------------------------------------------------------- /pdp-cli/src/setenv.sh: -------------------------------------------------------------------------------- 1 | export JAVA_OPTS=-Djavax.xml.accessExternalSchema=http 2 | -------------------------------------------------------------------------------- /pdp-cli/src/test/java/org/ow2/authzforce/core/pdp/cli/test/CliTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/src/test/java/org/ow2/authzforce/core/pdp/cli/test/CliTest.java -------------------------------------------------------------------------------- /pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/IIA001/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/IIA001/Policy.xml -------------------------------------------------------------------------------- /pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/IIA001/Request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/IIA001/Request.json -------------------------------------------------------------------------------- /pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/IIA001/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/IIA001/Request.xml -------------------------------------------------------------------------------- /pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/IIA001/Response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/IIA001/Response.json -------------------------------------------------------------------------------- /pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/IIA001/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/IIA001/Response.xml -------------------------------------------------------------------------------- /pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/logback.xml -------------------------------------------------------------------------------- /pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-cli/src/test/resources/conformance/xacml-3.0-core/mandatory/pdp.xml -------------------------------------------------------------------------------- /pdp-engine-oss-functional-benchmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine-oss-functional-benchmark/.gitignore -------------------------------------------------------------------------------- /pdp-engine-oss-functional-benchmark/license/alv2-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine-oss-functional-benchmark/license/alv2-header.txt -------------------------------------------------------------------------------- /pdp-engine-oss-functional-benchmark/license/header-defs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine-oss-functional-benchmark/license/header-defs.xml -------------------------------------------------------------------------------- /pdp-engine-oss-functional-benchmark/owasp-dependency-check-suppression.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine-oss-functional-benchmark/owasp-dependency-check-suppression.xml -------------------------------------------------------------------------------- /pdp-engine-oss-functional-benchmark/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine-oss-functional-benchmark/pom.xml -------------------------------------------------------------------------------- /pdp-engine-oss-functional-benchmark/spotbugs-security-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine-oss-functional-benchmark/spotbugs-security-exclude.xml -------------------------------------------------------------------------------- /pdp-engine-oss-functional-benchmark/src/test/resources/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine-oss-functional-benchmark/src/test/resources/catalog.xml -------------------------------------------------------------------------------- /pdp-engine-oss-functional-benchmark/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine-oss-functional-benchmark/src/test/resources/logback.xml -------------------------------------------------------------------------------- /pdp-engine-oss-functional-benchmark/src/test/resources/pdp-ext.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine-oss-functional-benchmark/src/test/resources/pdp-ext.xsd -------------------------------------------------------------------------------- /pdp-engine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/.gitignore -------------------------------------------------------------------------------- /pdp-engine/license/alv2-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/license/alv2-header.txt -------------------------------------------------------------------------------- /pdp-engine/license/header-defs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/license/header-defs.xml -------------------------------------------------------------------------------- /pdp-engine/owasp-dependency-check-suppression.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/owasp-dependency-check-suppression.xml -------------------------------------------------------------------------------- /pdp-engine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/pom.xml -------------------------------------------------------------------------------- /pdp-engine/spotbugs-security-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/spotbugs-security-exclude.xml -------------------------------------------------------------------------------- /pdp-engine/src/main/java/.gitignore: -------------------------------------------------------------------------------- 1 | /META-INF 2 | -------------------------------------------------------------------------------- /pdp-engine/src/main/java/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/AllOfEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/AllOfEvaluator.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/AnyOfEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/AnyOfEvaluator.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/BasePdpEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/BasePdpEngine.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/BooleanEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/BooleanEvaluator.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/BooleanEvaluators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/BooleanEvaluators.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/DefaultEnvironmentProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/DefaultEnvironmentProperties.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/ImmutableAttributeDesignator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/ImmutableAttributeDesignator.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/ImmutablePdpExtensionRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/ImmutablePdpExtensionRegistry.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/IndividualDecisionRequestContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/IndividualDecisionRequestContext.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/MatchEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/MatchEvaluator.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/PdpBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/PdpBean.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/PdpEngineConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/PdpEngineConfiguration.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/PdpExtensions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/PdpExtensions.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/PdpModelHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/PdpModelHandler.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/PepActionExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/PepActionExpression.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/SchemaHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/SchemaHandler.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/StandardEnvironmentAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/StandardEnvironmentAttribute.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/StandardResourceAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/StandardResourceAttribute.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/StandardSubjectAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/StandardSubjectAttribute.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/TargetEvaluators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/TargetEvaluators.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/combining/CombiningAlgEvaluators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/combining/CombiningAlgEvaluators.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/combining/DPOverridesCombiningAlg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/combining/DPOverridesCombiningAlg.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/combining/DPUnlessPDCombiningAlg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/combining/DPUnlessPDCombiningAlg.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/expression/ApplyExpressions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/expression/ApplyExpressions.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/FunctionRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/FunctionRegistry.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/ImmutableFunctionRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/ImmutableFunctionRegistry.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/LogicalAndFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/LogicalAndFunction.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/LogicalNOfFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/LogicalNOfFunction.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/LogicalNotFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/LogicalNotFunction.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/LogicalOrFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/LogicalOrFunction.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/MapFunctionFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/MapFunctionFactory.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/NumericArithmeticFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/NumericArithmeticFunction.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/NumericArithmeticOperators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/NumericArithmeticOperators.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/StandardDatatypeConverters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/StandardDatatypeConverters.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/StandardEqualTypeMatchers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/StandardEqualTypeMatchers.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/StandardFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/StandardFunction.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/StandardNonEqualTypeMatchers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/StandardNonEqualTypeMatchers.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/StringConcatenateFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/StringConcatenateFunction.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/StringN11nFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/StringN11nFunction.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/SubstringFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/SubstringFunction.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/TemporalArithmeticFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/TemporalArithmeticFunction.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/TemporalArithmeticOperators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/TemporalArithmeticOperators.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/TimeRangeComparisonFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/TimeRangeComparisonFunction.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/XPathNodeCountFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/func/XPathNodeCountFunction.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/io/PdpEngineAdapters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/io/PdpEngineAdapters.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/CoreStaticPolicyProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/CoreStaticPolicyProvider.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/FlattenedPolicyTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/FlattenedPolicyTree.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/PolicyEvaluators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/PolicyEvaluators.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/PolicyMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/PolicyMap.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/PolicyVersions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/PolicyVersions.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/RootPolicyEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/RootPolicyEvaluator.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/RootPolicyEvaluators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/policy/RootPolicyEvaluators.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/rule/ConditionEvaluators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/rule/ConditionEvaluators.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/rule/RuleEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/rule/RuleEvaluator.java -------------------------------------------------------------------------------- /pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/rule/RuleEvaluators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/java/org/ow2/authzforce/core/pdp/impl/rule/RuleEvaluators.java -------------------------------------------------------------------------------- /pdp-engine/src/main/jaxb/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/jaxb/bindings.xjb -------------------------------------------------------------------------------- /pdp-engine/src/main/jaxb/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/jaxb/catalog.xml -------------------------------------------------------------------------------- /pdp-engine/src/main/resources/META-INF/services/org.ow2.authzforce.core.pdp.api.PdpExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/resources/META-INF/services/org.ow2.authzforce.core.pdp.api.PdpExtension -------------------------------------------------------------------------------- /pdp-engine/src/main/resources/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/resources/catalog.xml -------------------------------------------------------------------------------- /pdp-engine/src/main/resources/pdp.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/resources/pdp.xsd -------------------------------------------------------------------------------- /pdp-engine/src/main/resources/saxon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/main/resources/saxon.xml -------------------------------------------------------------------------------- /pdp-engine/src/test/cxf-codegen/DoubleItLogical.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/test/cxf-codegen/DoubleItLogical.wsdl -------------------------------------------------------------------------------- /pdp-engine/src/test/java/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/MainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/MainTest.java -------------------------------------------------------------------------------- /pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/BagFunctionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/BagFunctionsTest.java -------------------------------------------------------------------------------- /pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/BagValueExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/BagValueExpression.java -------------------------------------------------------------------------------- /pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/EqualityFunctionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/EqualityFunctionsTest.java -------------------------------------------------------------------------------- /pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/LogicalFunctionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/LogicalFunctionsTest.java -------------------------------------------------------------------------------- /pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/NullValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/NullValue.java -------------------------------------------------------------------------------- /pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/SetFunctionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/SetFunctionsTest.java -------------------------------------------------------------------------------- /pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/StandardFunctionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/StandardFunctionTest.java -------------------------------------------------------------------------------- /pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/StringFunctionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/func/StringFunctionsTest.java -------------------------------------------------------------------------------- /pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/value/AnyURIAttributeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/test/java/org/ow2/authzforce/core/pdp/impl/test/value/AnyURIAttributeTest.java -------------------------------------------------------------------------------- /pdp-engine/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-engine/src/test/resources/logback.xml -------------------------------------------------------------------------------- /pdp-io-xacml-json/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-io-xacml-json/.gitignore -------------------------------------------------------------------------------- /pdp-io-xacml-json/license/alv2-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-io-xacml-json/license/alv2-header.txt -------------------------------------------------------------------------------- /pdp-io-xacml-json/license/header-defs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-io-xacml-json/license/header-defs.xml -------------------------------------------------------------------------------- /pdp-io-xacml-json/owasp-dependency-check-suppression.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-io-xacml-json/owasp-dependency-check-suppression.xml -------------------------------------------------------------------------------- /pdp-io-xacml-json/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-io-xacml-json/pom.xml -------------------------------------------------------------------------------- /pdp-io-xacml-json/spotbugs-security-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-io-xacml-json/spotbugs-security-exclude.xml -------------------------------------------------------------------------------- /pdp-testutils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/.gitignore -------------------------------------------------------------------------------- /pdp-testutils/.settings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/.settings/.gitignore -------------------------------------------------------------------------------- /pdp-testutils/license/alv2-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/license/alv2-header.txt -------------------------------------------------------------------------------- /pdp-testutils/license/header-defs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/license/header-defs.xml -------------------------------------------------------------------------------- /pdp-testutils/owasp-dependency-check-suppression.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/owasp-dependency-check-suppression.xml -------------------------------------------------------------------------------- /pdp-testutils/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/pom.xml -------------------------------------------------------------------------------- /pdp-testutils/spotbugs-security-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/spotbugs-security-exclude.xml -------------------------------------------------------------------------------- /pdp-testutils/src/main/java/org/ow2/authzforce/core/pdp/testutil/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/main/java/org/ow2/authzforce/core/pdp/testutil/TestUtils.java -------------------------------------------------------------------------------- /pdp-testutils/src/main/java/org/ow2/authzforce/core/pdp/testutil/XacmlXmlPdpTestHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/main/java/org/ow2/authzforce/core/pdp/testutil/XacmlXmlPdpTestHelper.java -------------------------------------------------------------------------------- /pdp-testutils/src/main/java/org/ow2/authzforce/core/pdp/testutil/ext/MongoDbPolicyProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/main/java/org/ow2/authzforce/core/pdp/testutil/ext/MongoDbPolicyProvider.java -------------------------------------------------------------------------------- /pdp-testutils/src/main/java/org/ow2/authzforce/core/pdp/testutil/ext/TestAttributeProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/main/java/org/ow2/authzforce/core/pdp/testutil/ext/TestAttributeProvider.java -------------------------------------------------------------------------------- /pdp-testutils/src/main/jaxb/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/main/jaxb/bindings.xjb -------------------------------------------------------------------------------- /pdp-testutils/src/main/jaxb/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/main/jaxb/catalog.xml -------------------------------------------------------------------------------- /pdp-testutils/src/main/resources/META-INF/services/org.ow2.authzforce.core.pdp.api.PdpExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/main/resources/META-INF/services/org.ow2.authzforce.core.pdp.api.PdpExtension -------------------------------------------------------------------------------- /pdp-testutils/src/main/resources/mongodb_policy_provider_doc_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/main/resources/mongodb_policy_provider_doc_schema.json -------------------------------------------------------------------------------- /pdp-testutils/src/main/resources/org.ow2.authzforce.core.pdp.testutil.ext.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/main/resources/org.ow2.authzforce.core.pdp.testutil.ext.xsd -------------------------------------------------------------------------------- /pdp-testutils/src/test/java/org/apache/coheigea/cxf/sts/xacml/common/CommonCallbackHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/java/org/apache/coheigea/cxf/sts/xacml/common/CommonCallbackHandler.java -------------------------------------------------------------------------------- /pdp-testutils/src/test/java/org/apache/coheigea/cxf/sts/xacml/common/DoubleItPortTypeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/java/org/apache/coheigea/cxf/sts/xacml/common/DoubleItPortTypeImpl.java -------------------------------------------------------------------------------- /pdp-testutils/src/test/java/org/apache/coheigea/cxf/sts/xacml/common/RolesClaimsHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/java/org/apache/coheigea/cxf/sts/xacml/common/RolesClaimsHandler.java -------------------------------------------------------------------------------- /pdp-testutils/src/test/java/org/apache/coheigea/cxf/sts/xacml/common/STSServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/java/org/apache/coheigea/cxf/sts/xacml/common/STSServer.java -------------------------------------------------------------------------------- /pdp-testutils/src/test/java/org/apache/coheigea/cxf/sts/xacml/common/TokenTestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/java/org/apache/coheigea/cxf/sts/xacml/common/TokenTestUtils.java -------------------------------------------------------------------------------- /pdp-testutils/src/test/java/org/ow2/authzforce/core/pdp/testutil/test/CustomPdpTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/java/org/ow2/authzforce/core/pdp/testutil/test/CustomPdpTest.java -------------------------------------------------------------------------------- /pdp-testutils/src/test/java/org/ow2/authzforce/core/pdp/testutil/test/MainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/java/org/ow2/authzforce/core/pdp/testutil/test/MainTest.java -------------------------------------------------------------------------------- /pdp-testutils/src/test/java/org/ow2/authzforce/core/pdp/testutil/test/NonRegressionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/java/org/ow2/authzforce/core/pdp/testutil/test/NonRegressionTest.java -------------------------------------------------------------------------------- /pdp-testutils/src/test/java/org/ow2/authzforce/core/pdp/testutil/test/json/XacmlJsonTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/java/org/ow2/authzforce/core/pdp/testutil/test/json/XacmlJsonTest.java -------------------------------------------------------------------------------- /pdp-testutils/src/test/java/org/ow2/authzforce/core/pdp/testutil/test/pep/cxf/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/java/org/ow2/authzforce/core/pdp/testutil/test/pep/cxf/Server.java -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/.gitignore: -------------------------------------------------------------------------------- 1 | /lib/ 2 | -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/NonRegression/GH-42/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/NonRegression/GH-42/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/NonRegression/GH-42/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/NonRegression/GH-42/README.md -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/NonRegression/GH-42/Request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/NonRegression/GH-42/Request.json -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/NonRegression/GH-42/Response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/NonRegression/GH-42/Response.json -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/build.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/ivy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/ivy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/other/CustomJsonObjectDatatype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/other/CustomJsonObjectDatatype/README.md -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/other/CustomJsonObjectDatatype/Request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/other/CustomJsonObjectDatatype/Request.json -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/other/CustomJsonObjectDatatype/Response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/other/CustomJsonObjectDatatype/Response.json -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/other/CustomJsonObjectDatatype/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/other/CustomJsonObjectDatatype/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/other/CustomJsonObjectDatatype/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/other/CustomJsonObjectDatatype/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/xacml-common-xml-to-json.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/xacml-common-xml-to-json.xsl -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/xacml-request-xml-to-json.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/xacml-request-xml-to-json.xsl -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources.json/xacml-response-xml-to-json.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources.json/xacml-response-xml-to-json.xsl -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/configs/att-xacml/xacml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/configs/att-xacml/xacml.properties -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/configs/authzforce-ce/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/configs/authzforce-ce/catalog.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/configs/authzforce-ce/pdp-ext.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/configs/authzforce-ce/pdp-ext.xsd -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/configs/authzforce-ce/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/configs/authzforce-ce/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/configs/wso2-balana/balana.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/configs/wso2-balana/balana.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/EmptyCategory/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/EmptyCategory/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/EmptyCategory/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/EmptyCategory/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/EmptyCategory/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/EmptyCategory/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/EmptyMatchAttValue/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/EmptyMatchAttValue/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/EmptyMatchAttValue/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/EmptyMatchAttValue/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/EmptyMatchAttValue/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/EmptyMatchAttValue/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/MultiAttWithSameId/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/MultiAttWithSameId/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/MultiAttWithSameId/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/MultiAttWithSameId/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/MultiAttWithSameId/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/ComparativePdpTest/test-cases/MultiAttWithSameId/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/META-INF/services/org.ow2.authzforce.core.pdp.api.PdpExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/META-INF/services/org.ow2.authzforce.core.pdp.api.PdpExtension -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-21/README.md -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-21/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-21/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-21/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-21/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-21/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-21/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-21/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-21/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-22.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-22.1/README.md -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-22.1/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-22.1/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-22.1/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-22.1/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-22.1/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-22.1/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-22.1/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-22.1/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-22.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-22.2/README.md -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-22.2/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-22.2/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-22.2/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-22.2/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-22.2/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-22.2/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-22.2/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-22.2/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-25.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-25.1/README.md -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-25.1/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-25.1/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-25.1/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-25.1/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-25.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-25.2/README.md -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-25.2/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-25.2/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-25.2/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-25.2/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-25.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-25.3/README.md -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-25.3/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-25.3/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/OW2-25.3/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/OW2-25.3/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/NonRegression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/NonRegression/README.md -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/catalog.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/MapFunction.ArgsAfterBag/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/MapFunction.ArgsAfterBag/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/MapFunction.ArgsAfterBag/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/MapFunction.ArgsAfterBag/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/MapFunction.ArgsAfterBag/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/MapFunction.ArgsAfterBag/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/PolicyReference.Circular/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/PolicyReference.Circular/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/PolicyReference.Undef/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/PolicyReference.Undef/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/PolicyReference.Valid/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/PolicyReference.Valid/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/PolicyReference.Valid/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/PolicyReference.Valid/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/PolicyReference.Valid/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/PolicyReference.Valid/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/RuleId.Uniqueness/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/RuleId.Uniqueness/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/StatusDetail.MissingAttributeDetail/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/StatusDetail.MissingAttributeDetail/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/VariableId.Uniqueness/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/VariableId.Uniqueness/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/VariableReference.Undef/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/VariableReference.Undef/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/VariableReference.Valid/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/VariableReference.Valid/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/VariableReference.Valid/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/VariableReference.Valid/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/others/VariableReference.Valid/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/others/VariableReference.Valid/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/ConformanceTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/ConformanceTests.html -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/README.md -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA001/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA001/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA001/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA001/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA001/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA001/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA003/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA006/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA006/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA006/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA006/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA006/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA006/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA007/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA007/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA007/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA007/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA007/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA007/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA008/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA008/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA008/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA008/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA008/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA008/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA009/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA009/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA009/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA009/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA009/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA009/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA011/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA011/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA011/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA011/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA011/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA011/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA013/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA014/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA014/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA014/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA014/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA014/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA014/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA015/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA015/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA015/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA015/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA015/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA015/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA017/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA017/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA017/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA017/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA017/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA017/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA019/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA019/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA019/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA019/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA019/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA019/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA021/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA021/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA021/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA021/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA021/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIA021/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB001/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB002/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB002/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB002/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB002/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB002/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB002/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB003/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB003/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB003/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB003/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB003/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB003/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB004/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB004/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB004/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB004/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB004/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB004/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB005/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB005/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB005/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB005/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB005/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB005/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB006/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB006/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB006/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB006/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB006/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB006/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB007/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB007/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB007/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB007/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB007/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB007/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB008/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB008/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB008/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB008/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB008/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB008/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB009/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB009/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB009/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB009/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB009/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB009/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB010/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB010/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB010/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB010/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB010/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB010/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB011/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB011/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB011/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB011/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB011/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB011/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB012/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB012/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB012/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB012/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB012/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB012/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB013/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB013/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB013/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB013/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB013/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB013/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB014/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB014/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB014/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB014/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB014/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB014/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB015/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB015/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB015/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB015/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB015/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB015/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB016/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB016/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB016/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB016/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB016/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB016/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB017/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB017/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB017/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB017/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB017/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB017/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB018/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB018/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB018/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB018/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB018/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB018/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB019/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB019/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB019/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB019/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB019/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB019/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB020/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB020/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB020/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB020/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB020/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB020/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB021/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB021/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB021/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB021/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB021/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB021/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB022/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB022/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB022/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB022/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB022/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB022/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB023/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB023/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB023/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB023/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB023/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB023/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB024/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB024/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB024/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB024/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB024/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB024/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB025/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB025/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB025/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB025/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB025/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB025/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB026/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB026/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB026/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB026/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB026/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB026/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB027/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB027/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB027/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB027/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB027/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB027/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB028/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB028/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB028/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB028/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB028/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB028/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB029/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB029/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB029/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB029/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB029/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB029/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB030/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB030/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB030/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB030/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB030/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB030/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB031/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB031/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB031/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB031/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB031/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB031/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB032/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB032/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB032/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB032/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB032/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB032/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB033/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB033/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB033/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB033/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB033/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB033/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB034/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB034/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB034/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB034/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB034/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB034/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB035/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB035/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB035/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB035/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB035/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB035/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB036/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB036/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB036/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB036/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB036/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB036/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB037/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB037/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB037/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB037/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB037/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB037/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB038/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB038/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB038/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB038/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB038/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB038/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB039/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB039/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB039/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB039/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB039/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB039/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB040/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB040/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB040/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB040/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB040/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB040/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB041/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB041/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB041/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB041/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB041/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB041/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB042/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB042/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB042/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB042/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB042/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB042/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB043/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB043/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB043/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB043/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB043/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB043/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB044/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB044/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB044/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB044/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB044/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB044/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB045/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB045/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB045/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB045/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB045/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB045/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB046/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB046/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB046/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB046/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB046/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB046/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB047/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB047/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB047/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB047/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB047/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB047/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB048/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB048/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB048/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB048/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB048/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB048/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB049/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB049/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB049/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB049/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB049/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB049/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB050/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB050/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB050/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB050/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB050/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB050/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB051/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB051/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB051/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB051/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB051/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB051/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB052/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB052/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB052/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB052/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB052/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB052/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB053/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB053/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB053/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB053/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB053/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB053/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB300/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB300/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB300/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB300/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB300/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB300/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB301/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB301/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB301/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB301/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB301/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIB301/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC001/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC002/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC002/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC002/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC002/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC002/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC002/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC003/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC003/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC003/Special.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC003/Special.txt -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC004/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC004/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC004/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC004/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC004/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC004/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC005/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC005/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC005/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC005/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC005/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC005/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC006/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC006/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC006/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC006/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC006/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC006/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC007/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC007/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC007/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC007/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC007/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC007/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC008/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC008/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC008/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC008/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC008/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC008/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC009/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC009/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC009/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC009/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC009/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC009/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC010/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC010/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC010/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC010/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC010/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC010/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC011/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC011/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC011/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC011/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC011/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC011/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC012/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC012/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC012/Special.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC012/Special.txt -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC013/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC013/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC013/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC013/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC013/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC013/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC014/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC014/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC014/Special.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC014/Special.txt -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC015/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC015/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC015/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC015/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC015/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC015/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC016/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC016/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC016/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC016/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC016/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC016/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC017/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC017/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC017/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC017/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC017/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC017/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC018/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC018/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC018/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC018/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC018/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC018/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC019/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC019/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC019/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC019/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC019/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC019/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC020/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC020/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC020/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC020/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC020/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC020/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC021/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC021/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC021/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC021/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC021/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC021/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC022/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC022/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC022/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC022/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC022/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC022/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC024/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC025/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC025/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC025/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC025/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC025/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC025/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC026/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC026/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC026/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC026/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC026/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC026/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC027/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC027/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC027/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC027/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC027/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC027/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC028/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC028/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC028/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC028/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC028/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC028/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC029/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC029/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC029/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC029/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC029/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC029/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC030/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC030/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC030/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC030/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC030/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC030/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC031/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC031/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC031/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC031/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC031/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC031/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC032/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC032/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC032/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC032/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC032/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC032/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC033/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC033/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC033/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC033/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC033/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC033/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC034/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC034/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC034/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC034/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC034/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC034/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC035/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC035/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC035/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC035/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC035/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC035/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC036/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC036/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC036/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC036/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC036/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC036/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC037/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC037/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC037/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC037/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC037/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC037/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC038/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC038/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC038/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC038/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC038/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC038/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC039/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC039/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC039/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC039/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC039/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC039/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC040/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC040/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC040/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC040/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC040/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC040/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC041/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC041/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC041/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC041/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC041/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC041/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC042/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC042/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC042/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC042/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC042/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC042/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC043/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC043/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC043/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC043/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC043/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC043/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC044/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC044/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC044/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC044/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC044/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC044/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC045/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC045/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC045/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC045/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC045/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC045/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC046/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC046/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC046/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC046/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC046/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC046/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC047/Policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC047/Policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC047/Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC047/Request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC047/Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/mandatory/IIC047/Response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/conformance/xacml-3.0-from-2.0-ct/optional/README.md -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomCombiningAlg/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomCombiningAlg/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomCombiningAlg/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomCombiningAlg/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomCombiningAlg/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomCombiningAlg/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomCombiningAlg/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomCombiningAlg/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomComplexDatatype/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomComplexDatatype/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomComplexDatatype/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomComplexDatatype/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomComplexDatatype/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomComplexDatatype/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomComplexDatatype/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomComplexDatatype/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomRequestPreproc/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomRequestPreproc/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomRequestPreproc/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomRequestPreproc/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomRequestPreproc/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomRequestPreproc/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomRequestPreproc/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomRequestPreproc/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomSimpleDatatypeAndFunction/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomSimpleDatatypeAndFunction/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomSimpleDatatypeAndFunction/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomSimpleDatatypeAndFunction/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomSimpleDatatypeAndFunction/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomSimpleDatatypeAndFunction/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/CustomSimpleDatatypeAndFunction/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/CustomSimpleDatatypeAndFunction/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/InlinePolicyConfig/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/InlinePolicyConfig/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/InlinePolicyConfig/policies/pps-employee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/InlinePolicyConfig/policies/pps-employee.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/InlinePolicyConfig/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/InlinePolicyConfig/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/InlinePolicyConfig/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/InlinePolicyConfig/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/MaxPolicyRefDepth/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/MaxPolicyRefDepth/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/MaxPolicyRefDepth/policies/pps-employee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/MaxPolicyRefDepth/policies/pps-employee.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/MaxPolicyRefDepth/policies/pps-manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/MaxPolicyRefDepth/policies/pps-manager.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/MaxPolicyRefDepth/policies/root-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/MaxPolicyRefDepth/policies/root-policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/MaxVariableRefDepth/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/MaxVariableRefDepth/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/MaxVariableRefDepth/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/MaxVariableRefDepth/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.PDP_ONLY/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.PDP_ONLY/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.PDP_ONLY/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.PDP_ONLY/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.PDP_ONLY/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.PDP_ONLY/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.PDP_ONLY/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.PDP_ONLY/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.REQUEST_ELSE_PDP/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.REQUEST_ELSE_PDP/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.REQUEST_ELSE_PDP/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.REQUEST_ELSE_PDP/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.REQUEST_ELSE_PDP/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.REQUEST_ELSE_PDP/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.REQUEST_ONLY/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.REQUEST_ONLY/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.REQUEST_ONLY/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.REQUEST_ONLY/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.REQUEST_ONLY/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/StdEnvAttributeProvider.REQUEST_ONLY/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/XPath2.0/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/XPath2.0/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/XPath2.0/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/XPath2.0/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/XPath2.0/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/XPath2.0/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/XPath2.0/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/XPath2.0/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/XacmlVariableBasedAttributeProvider/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/XacmlVariableBasedAttributeProvider/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/XacmlVariableBasedAttributeProvider/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/XacmlVariableBasedAttributeProvider/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/XacmlVariableBasedAttributeProvider/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/XacmlVariableBasedAttributeProvider/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/XacmlVariableUsedAsXPathVariable/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/XacmlVariableUsedAsXPathVariable/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/XacmlVariableUsedAsXPathVariable/policies/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/XacmlVariableUsedAsXPathVariable/policies/policy.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/XacmlVariableUsedAsXPathVariable/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/XacmlVariableUsedAsXPathVariable/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/custom/XacmlVariableUsedAsXPathVariable/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/custom/XacmlVariableUsedAsXPathVariable/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/logback.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/org/apache/coheigea/cxf/sts/xacml/common/cxf-sts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/org/apache/coheigea/cxf/sts/xacml/common/cxf-sts.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/org/ow2/authzforce/core/pdp/testutil/test/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/org/ow2/authzforce/core/pdp/testutil/test/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/org/ow2/authzforce/core/pdp/testutil/test/pep/cxf/pdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/org/ow2/authzforce/core/pdp/testutil/test/pep/cxf/pdp.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/org/ow2/authzforce/core/pdp/testutil/test/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/org/ow2/authzforce/core/pdp/testutil/test/request.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/org/ow2/authzforce/core/pdp/testutil/test/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/org/ow2/authzforce/core/pdp/testutil/test/response.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/pdp-ext.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/pdp-ext.xsd -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/stsClientKeystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/stsClientKeystore.properties -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/stsKeystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/stsKeystore.properties -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/stsServiceKeystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/stsServiceKeystore.properties -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/stsclientstore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/stsclientstore.jks -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/stsservicestore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/stsservicestore.jks -------------------------------------------------------------------------------- /pdp-testutils/src/test/resources/stsstore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/resources/stsstore.jks -------------------------------------------------------------------------------- /pdp-testutils/src/test/suites/json/conformance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/suites/json/conformance.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/suites/json/non-regression.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/suites/json/non-regression.xml -------------------------------------------------------------------------------- /pdp-testutils/src/test/suites/json/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pdp-testutils/src/test/suites/json/other.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/pom.xml -------------------------------------------------------------------------------- /spif-utils/ACME-SPIF-example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/spif-utils/ACME-SPIF-example.xml -------------------------------------------------------------------------------- /spif-utils/NATO-SPIF-example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/spif-utils/NATO-SPIF-example.xml -------------------------------------------------------------------------------- /spif-utils/spif.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/spif-utils/spif.xsd -------------------------------------------------------------------------------- /spif-utils/spif2xacml-for-xpath-1.0.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/spif-utils/spif2xacml-for-xpath-1.0.xsl -------------------------------------------------------------------------------- /spif-utils/spif2xacml-for-xpath-2.0.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/spif-utils/spif2xacml-for-xpath-2.0.xsl -------------------------------------------------------------------------------- /spif-utils/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/spif-utils/xml.xsd -------------------------------------------------------------------------------- /spotbugs-security-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authzforce/core/HEAD/spotbugs-security-exclude.xml --------------------------------------------------------------------------------