X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=docs%2Fxacml%2Fxacml.rst;h=626c26a49dabaff22cf800350bc7b6a205e7487c;hb=82c1a1040666d1ba33b37ae520076eb8b3bbaa41;hp=4100e800dad53772b3cb25e13da33deab2a654bf;hpb=71ac0f796d9844809443f19dda03771aa3abe0e3;p=policy%2Fparent.git diff --git a/docs/xacml/xacml.rst b/docs/xacml/xacml.rst index 4100e800..626c26a4 100644 --- a/docs/xacml/xacml.rst +++ b/docs/xacml/xacml.rst @@ -30,7 +30,7 @@ By cloning the policy/xacml-pdp repository, a developer can run the JUnit tests See the :ref:`policy-development-tools-label` for more information on cloning and developing the policy repositories. -XACML-PDP applications are located in the 'applications' sub-module in the policy/xacml-pdp repo. `Click here to view the applications sub-modules `_ +XACML-PDP applications are located in the 'applications' sub-module in the policy/xacml-pdp repo. `Click here to view the applications sub-modules `_ XACML PDP TOSCA Translators =========================== @@ -41,7 +41,7 @@ StdCombinedPolicyResultsTranslator Translator --------------------------------------------- A simple translator that wraps the TOSCA policy into a XACML policy and performs matching of the policy based on either policy-id and/or policy-type. The use of this translator is discouraged as it behaves like a database call and does not take advantage of the fine-grain decision making features described by the XACML OASIS 3.0 standard. It is used to support backward compatibility of legacy "configure" policies. -`Implementation of Combined Results Translator `_. +`Implementation of Combined Results Translator `_. The Monitoring and Naming applications use this translator. @@ -51,7 +51,7 @@ More robust translator that searches metadata of TOSCA properties for a **matcha Each of the properties designated as "matchable" are treated relative to each other as an "AND" during a Decision request call. In addition, each value of a "matchable property that is an array, is treated as an "OR". The more properties specified in a decision request, the more fine-grained a policy will be returned. In addition, the use of "policy-type" can be used in a decision request to further filter the decision results to a specific type of policy. -`Implementation of Matchable Translator `_. +`Implementation of Matchable Translator `_. The Optimization application uses this translator. @@ -59,16 +59,16 @@ GuardTranslator and CoordinationGuardTranslator ----------------------------------------------- These two translators are used by the Guard application and are very specific to those Policy Types. They are good examples on how to build your own translator for a very specific implementation of a policy type. This can be the case if any of the Std* translators are not appropriate to use directly or override for your application. -`Implementation of Guard Translator `_ +`Implementation of Guard Translator `_ -`Implementation of Coordination Translator `_ +`Implementation of Coordination Translator `_ Native XACML OAISIS 3.0 XML Policy Translator ----------------------------------------------- This translator pulls a URL encoded XML XACML policy from a TOSCA Policy and loads it into a XACML Engine. This allows native XACML policies to be used to support complex use cases in which a translation from TOSCA to XACML is too difficult. -`Implementation of Native Policy Translator `_ +`Implementation of Native Policy Translator `_ Monitoring Policy Types ======================= @@ -177,22 +177,22 @@ In order to support your own custom Policy Type that the XACML PDP Engine can su XacmlApplicationServiceProvider =============================== -`Interface for XacmlApplicationServiceProvider `_ +`Interface for XacmlApplicationServiceProvider `_ See each of the ONAP Policy Type application implementations which re-use the **StdXacmlApplicationServiceProvider** class. This implementation can be used as a basis for your own custom applications. -`Standard Application Service Provider implementation `_ +`Standard Application Service Provider implementation `_ ToscaPolicyTranslator ===================== Your custom **XacmlApplicationServiceProvider** must provide an implementation of a *ToscaPolicyTranslator*. -`Interface for ToscaPolicyTranslator `_ +`Interface for ToscaPolicyTranslator `_ See each of the ONAP Policy type application implementations which each have their own *ToscaPolicyTranslator*. Most use or extend the **StdBaseTranslator**. -`Standard Tosca Policy Translator implementation `. +`Standard Tosca Policy Translator implementation `. XACML Application Tutorial ==========================