Fix documentation errors 83/106383/9
authorPamela Dragosh <pdragosh@research.att.com>
Tue, 21 Apr 2020 19:30:35 +0000 (15:30 -0400)
committerPamela Dragosh <pdragosh@research.att.com>
Thu, 23 Apr 2020 20:04:57 +0000 (16:04 -0400)
This also updates the XACML PDP documentation.

Issue-ID: POLICY-2500
Change-Id: Ice086fa39040fbee899652faa0a079192a122f03
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
12 files changed:
docs/architecture/architecture.rst
docs/development/actors/actors.rst
docs/development/devtools/devtools.rst
docs/index.rst
docs/offeredapis.rst
docs/release-notes.rst
docs/xacml/decision-api.rst [new file with mode: 0644]
docs/xacml/decision.affinity.json
docs/xacml/decision.monitoring.json
docs/xacml/decision.monitoring.type.json [new file with mode: 0644]
docs/xacml/xacml-tutorial.rst
docs/xacml/xacml.rst

index 053db0a..32be405 100644 (file)
@@ -1,7 +1,6 @@
 .. This work is licensed under a
 .. Creative Commons Attribution 4.0 International License.
 .. http://creativecommons.org/licenses/by/4.0
-.. _architecture:
 
 .. _architecture-label:
 
index 4a5dad3..7005489 100644 (file)
@@ -1,6 +1,6 @@
 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
 
-.. _policy-development-doc:
+.. _actors-label:
 
 Policy Platform Actor Development Guidelines
 --------------------------------------------
index 9646ffa..a3016d4 100644 (file)
@@ -2,6 +2,7 @@
 .. Creative Commons Attribution 4.0 International License.
 .. http://creativecommons.org/licenses/by/4.0
 
+.. _policy-development-tools-label:
 
 Policy Platform Development Tools
 #################################
@@ -273,7 +274,7 @@ The following links contain instructions on how to run the S3P Stability and Per
 familiar with the Policy Framework components and test any local changes.
 
 .. toctree::
-    :maxdepth: 1
+   :maxdepth: 1
 
    api-s3p.rst
    pap-s3p.rst
index 5854403..59b3183 100644 (file)
@@ -1,5 +1,4 @@
 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
-.. _master_index:
 
 .. _policy-framework-doc:
 
index 818b1f5..580038c 100644 (file)
@@ -1,6 +1,6 @@
 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
 .. http://creativecommons.org/licenses/by/4.0
-.. _offeredapis:
+.. _policy-offeredapis:
 
 
 Policy Offered APIs
@@ -8,13 +8,22 @@ Policy Offered APIs
 
 The Policy Framework supports the public APIs listed in the links below:
 
--    :ref:`Policy Life Cycle API <api-label>` 
--    :ref:`Policy Administration Point (PAP) <pap-label>`.  
--    :ref:`Decision API <decision-api-label>`.
--    :ref:`Legacy APIs <legacyapis-label>`  (To be DEPRECATED)
+.. toctree::
+   :maxdepth: 1
+
+   api/api
+   pap/pap
+   xacml/decision-api
+
+-    :ref:`Policy Life Cycle API <api-label>`
+-    :ref:`Policy Administration Point (PAP) <pap-label>`
+-    :ref:`Decision API <decision-api-label>`
+
 
 .. warning:: The :ref:`Legacy APIs  <legacyapis-label>` are scheduled to be deprecated after the Frankfurt release!
 
+-    :ref:`Legacy APIs <legacyapis-label>`  (To be DEPRECATED)
+
 Postman Environment for API Testing
 -----------------------------------
 
index 08dfe29..08adbca 100644 (file)
@@ -1,5 +1,5 @@
 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
-.. _release_notes:
+.. _policy-release-notes:
 
 Policy Release Notes
 ====================
diff --git a/docs/xacml/decision-api.rst b/docs/xacml/decision-api.rst
new file mode 100644 (file)
index 0000000..e0d4f44
--- /dev/null
@@ -0,0 +1,45 @@
+.. This work is licensed under a Creative Commons Attribution 4.0 International License.
+
+.. _decision-api-label:
+
+Decision API
+#######################
+
+The Decision API is used by ONAP components that enforce policies and need a decision on which policy to enforce for a specific situation. The Decision API mimics closely the XACML request standard in that it supports a subject, action and resource.
+
+.. csv-table::
+   :header: "Field", "Required", "XACML equivalent", "Description"
+
+   "ONAPName", "True", "subject", "The name of the ONAP project making the call"
+   "ONAPComponent", "True", "subject", "The name of the ONAP sub component making the call"
+   "ONAPInstance", "False", "subject", "An optional instance ID for that sub component"
+   "action", "True", "action", "The action being performed"
+   "resource", "True", "resource", "An object specific to the action that contains properties describing the resource"
+
+It is worth noting that we use basic authorization for API access with username and password set to *healthcheck* and *zb!XztG34* respectively.
+Also, the new APIs support both *http* and *https*.
+
+For every API call, the client is encouraged to insert an uuid-type requestID as parameter. It is helpful for tracking each http transaction
+and facilitates debugging. Most importantly, it complies with Logging requirements v1.2. If the client does not provide the requestID in the API call,
+one will be randomly generated and attached to the response header *x-onap-requestid*.
+
+In accordance with `ONAP API Common Versioning Strategy Guidelines <https://wiki.onap.org/display/DW/ONAP+API+Common+Versioning+Strategy+%28CVS%29+Guidelines>`_,
+in the response of each API call, several custom headers are added::
+
+    x-latestversion: 1.0.0
+    x-minorversion: 0
+    x-patchversion: 0
+    x-onap-requestid: e1763e61-9eef-4911-b952-1be1edd9812b
+
+x-latestversion is used only to communicate an API's latest version.
+
+x-minorversion is used to request or communicate a MINOR version back from the client to the server, and from the server back to the client.
+
+x-patchversion is used only to communicate a PATCH version in a response for troubleshooting purposes only, and will be provided to the client on request.
+
+x-onap-requestid is used to track REST transactions for logging purpose, as described above.
+
+.. swaggerv2doc:: swagger.json
+
+
+End of Document
index 45da040..676b71e 100644 (file)
@@ -7,7 +7,6 @@
       "scope": [],
       "services": ["vCPE"],
       "resources": ["vGMuxInfra", "vG"],
-      "geography": ["US", "INTERNATIONAL"],
-      "policyType": "zone"
+      "geography": ["US", "INTERNATIONAL"]
   }
 }
index 6346b8a..4442f6f 100644 (file)
@@ -4,6 +4,6 @@
   "ONAPInstance": "622431a4-9dea-4eae-b443-3b2164639c64",
   "action": "configure",
   "resource": {
-      "policy-id": "onap.scaleout.tca"
+      "policy-type": "onap.policies.monitoring.cdap.tca.hi.lo.app"
   }
 }
diff --git a/docs/xacml/decision.monitoring.type.json b/docs/xacml/decision.monitoring.type.json
new file mode 100644 (file)
index 0000000..6346b8a
--- /dev/null
@@ -0,0 +1,9 @@
+{
+  "ONAPName": "DCAE",
+  "ONAPComponent": "PolicyHandler",
+  "ONAPInstance": "622431a4-9dea-4eae-b443-3b2164639c64",
+  "action": "configure",
+  "resource": {
+      "policy-id": "onap.scaleout.tca"
+  }
+}
index 2a1d4ac..f46c1bb 100644 (file)
@@ -9,7 +9,7 @@ Policy XACML - Custom Application Tutorial
    :maxdepth: 3
 
 This tutorial shows how to build a XACML application for a Policy Type. Please be sure to clone the
-policy repositories before going through the tutorial. See :ref:`<policy-dev-label>` for details.
+policy repositories before going through the tutorial. See :ref:`policy-development-tools-label` for details.
 
 
 Design a Policy Type
@@ -19,7 +19,7 @@ this example Policy Type in which an ONAP PEP client would like to enforce an ac
 for a *user* to execute a *permission* on an *entity*.
 
 .. literalinclude:: tutorial/tutorial-policy-type.yaml
-  :language: JSON
+  :language: yaml
   :caption: Example Tutorial Policy Type
   :linenos:
 
@@ -28,7 +28,7 @@ an entity called foo, while the audit user can only read the entity called foo.
 permission.
 
 .. literalinclude:: tutorial/tutorial-policies.yaml
-  :language: JSON
+  :language: yaml
   :caption: Example Policies Derived From Tutorial Policy Type
   :linenos:
 
index a034e8f..1972a43 100644 (file)
@@ -8,83 +8,129 @@ Policy XACML PDP Engine
 .. toctree::
    :maxdepth: 2
 
-The ONAP XACML Policy PDP Engine uses an `open source implementation <https://github.com/att/XACML>`__ of the `OASIS XACML 3.0 Standard <https://www.oasis-open.org/committees/tc_home.php?wg_abbrev=xacml>`__ to support fine-grained policy decisions in the ONAP. The XACML 3.0 Standard is a language for both policies and request/response for access control decisions. The ONAP XACML PDP translates TOSCA Compliant Policies into the XACML policy language, loads the policies into the XACML engine and exposes a Decision API which uses the XACML request/response language to render decisions.
+The ONAP XACML Policy PDP Engine uses an `open source implementation <https://github.com/att/XACML>`__ of the `OASIS XACML 3.0 Standard <https://www.oasis-open.org/committees/tc_home.php?wg_abbrev=xacml>`__ to support fine-grained policy decisions in the ONAP. The XACML 3.0 Standard is a language for both policies and requests/responses for access control decisions. The ONAP XACML PDP translates TOSCA Compliant Policies into the XACML policy language, loads the policies into the XACML engine and exposes a Decision API which uses the XACML request/response language to render decisions for ONAP components.
 
-ONAP Supported Policy Types
-***************************
+ONAP XACML PDP Supported Policy Types
+*************************************
 
-In ONAP the following Policy Types are supported. Each Policy Type is implemented as an application that extends the **XacmlApplicationServiceProvider**. For details on each implementation, please refer to the `applications submodule of the onap/xacml-pdp project <https://gerrit.onap.org/r/gitweb?p=policy/xacml-pdp.git;a=tree;f=applications;h=047878fe14851d8a51998e065b8aca583ed8c994;hb=refs/heads/master>`__.
+The following Policy Types are supported by the XACML PDP Engine (PDP-X):
 
-By cloning the policy/xacml-pdp repository, one can run the JUnit tests to get a better understanding on how applications are built using translators and the XACML Policies that are generated for each Policy Type. Each application supports one or more Policy Types and an associated "action" used by the Decision API when making these calls.
+.. csv-table:: Supported Base Policy Types
+    :header: "Application", "Base Policy Type", "Action", "Description"
+
+    "Monitoring", "onap.policies.Monitoring", "configure", "Control Loop DCAE Monitoring Policies"
+    "Guard", "onap.policies.controlloop.guard.Common", "guard", "Control Loop Guard and Coordination Policies"
+    "Optimization", "onap.policies.Optimization", "optimize", "Optimization policy types used by OOF"
+    "Naming", "onap.policies.Naming", "naming", "Naming policy types used by SDNC"
+    "Native", "onap.policies.native.Xacml", "native", "Native XACML Policies"
+
+Each Policy Type is implemented as an application that extends the **XacmlApplicationServiceProvider**, and provides a **ToscaPolicyTranslator** that translates the TOSCA representation of the policy into a XACML OASIS 3.0 standard policy.
+
+By cloning the policy/xacml-pdp repository, a developer can run the JUnit tests for the applications to get a better understanding on how applications are built using translators and the XACML Policies that are generated for each Policy Type. Each application supports one or more Policy Types and an associated "action" used by the Decision API when making these calls.
+
+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 <https://github.com/onap/policy-xacml-pdp/tree/master/applications>`_
+
+XACML PDP TOSCA Translators
+===========================
+
+The following common translators are available in ONAP for use by developers. Each is used or extended by the standard PDP-X applications in ONAP.
+
+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 <https://github.com/onap/policy-xacml-pdp/blob/master/applications/common/src/main/java/org/onap/policy/pdp/xacml/application/common/std/StdCombinedPolicyResultsTranslator.java>`_.
+
+The Monitoring and Naming applications use this translator.
+
+StdMatchableTranslator Translator
+---------------------------------
+More robust translator that searches metadata of TOSCA properties for a **matchable** field set to **true**. The translator then uses those "matchable" properties to translate a policy into a XACML OASIS 3.0 policy which allows for fine-grained decision making such that ONAP applications can retrieve the appropriate policy(s) to be enforced during runtime.
+
+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 <https://github.com/onap/policy-xacml-pdp/blob/master/applications/common/src/main/java/org/onap/policy/pdp/xacml/application/common/std/StdMatchableTranslator.java>`_.
+
+The Optimization application uses this translator.
+
+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 <https://github.com/onap/policy-xacml-pdp/blob/master/applications/guard/src/main/java/org/onap/policy/xacml/pdp/application/guard/GuardTranslator.java>`_
+
+`Implementation of Coordination Translator <https://github.com/onap/policy-xacml-pdp/blob/master/applications/guard/src/main/java/org/onap/policy/xacml/pdp/application/guard/CoordinationGuardTranslator.java>`_
+
+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 <https://github.com/onap/policy-xacml-pdp/tree/master/applications/native/src/main/java/org/onap/policy/xacml/pdp/application/nativ>`_
 
 Monitoring Policy Types
 =======================
-These Policy Types are used by Control Loop DCAE microservice components to support monitoring of VNF's during Control Loops. The DCAE Platform makes a call to Decision API to request the contents of these policies. The implementation involves creating an overarching XACML Policy that contains the TOSCA policy as a payload that is returned to the DCAE Platform.
+These Policy Types are used by Control Loop DCAE microservice components to support monitoring of VNF/PNF entities to support an implementation of a Control Loops. The DCAE Platform makes a call to Decision API to request the contents of these policies. The implementation involves creating an overarching XACML Policy that contains the TOSCA policy as a payload that is returned to the DCAE Platform.
+
+The following policy types derive from onap.policies.Monitoring:
 
 .. csv-table::
-   :header: "Policy Type", "Action", "Description"
+   :header: "Derived Policy Type", "Action", "Description"
 
    "onap.policies.monitoring.cdap.tca.hi.lo.app", "configure", "TCA DCAE microservice component"
    "onap.policies.monitoring.dcaegen2.collectors.datafile.datafile-app-server", "configure", "REST Collector"
+   "onap.policies.monitoring.docker.sonhandler.app", "configure", "SON Handler microservice component"
 
-The translator used to translate these TOSCA Policy Types is the `StdCombinedPolicyResultsTranslator <https://gerrit.onap.org/r/gitweb?p=policy/xacml-pdp.git;a=blob;f=applications/common/src/main/java/org/onap/policy/pdp/xacml/application/common/std/StdCombinedPolicyResultsTranslator.java;h=2d7386d99f97ccee828b665a46b46531495cdfcd;hb=refs/heads/master>`__.
-
-This is an example Decision API payload made to retrieve a decision for a Monitoring Policy Type.
+This is an example Decision API payload made to retrieve a decision for a Monitoring Policy by id. Not recommended - as users may change id's of a policy. Available for backward compatibility.
 
 .. literalinclude:: decision.monitoring.json
   :language: JSON
 
-Guard Policy Types
-==================
-These Policy Types are used by Control Loop Drools Engine to support guarding of Control Loops during runtime control loop execution. NOTE: For El Alto, these policy types are not TOSCA compliant but rather a simple variation of the Casablanca legacy guard policy.
-
-.. csv-table::
-   :header: "Policy Type", "Action", "Description"
-
-   "onap.policies.controlloop.guard.FrequencyLimiter", "guard", "Limits frequency of actions over a specified time period"
-   "onap.policies.controlloop.guard.Blacklist", "guard", "Blacklists a regexp of VNF IDs"
-   "onap.policies.controlloop.guard.MinMax", "guard", "For scaling, enforces a min/max number of VNFS"
-
-The translator used to translate these legacy Policy Types is the `LegacyGuardTranslator <https://gerrit.onap.org/r/gitweb?p=policy/xacml-pdp.git;a=blob;f=applications/guard/src/main/java/org/onap/policy/xacml/pdp/application/guard/LegacyGuardTranslator.java;h=2917aab26dfbcf805dd00fead66ef68439561a11;hb=refs/heads/master>`__ which implements a more fine grained approach to translating the properties into a XACML policy.
+This is an example Decision API payload made to retrieve a decision for all deployed Monitoring Policies for a specific type of Monitoring policy.
 
-This is an example Decision API payload made to retrieve a decision for a Guard Policy Type.
-
-.. literalinclude:: decision.guard.json
+.. literalinclude:: decision.monitoring.type.json
   :language: JSON
 
-
-Control Loop Coordination Policy Types
-======================================
-These Policy Types are similar to the guard Policy Types and are called by the Control Loop Drools PDP Engine to support guarding of Control Loops during runtime control loop execution. NOTE: For Dublin, these Policy Types are not tested by the Integration team and are available as prototypes.
+Guard and Control Loop Coordination Policy Types
+================================================
+These Policy Types are used by Control Loop Drools Engine to support guarding control loop operations and coordination of Control Loops during runtime control loop execution.
 
 .. csv-table::
    :header: "Policy Type", "Action", "Description"
 
+   "onap.policies.controlloop.guard.common.FrequencyLimiter", "guard", "Limits frequency of actions over a specified time period"
+   "onap.policies.controlloop.guard.common.Blacklist", "guard", "Blacklists a regexp of VNF IDs"
+   "onap.policies.controlloop.guard.common.MinMax", "guard", "For scaling, enforces a min/max number of VNFS"
    "onap.policies.controlloop.guard.coordination.FirstBlocksSecond", "guard", "Gives priority to one control loop vs another"
 
-The translator used to translate the coordination Policy Types is the `CoordinationGuardTranslator <https://gerrit.onap.org/r/gitweb?p=policy/xacml-pdp.git;a=blob;f=applications/guard/src/main/java/org/onap/policy/xacml/pdp/application/guard/CoordinationGuardTranslator.java;h=41c1428e3da4cc5b6c1bb091d0c16a6618a036ae;hb=refs/heads/master>`__ which uses a XACML Policy Template in its implementation. For example, when a new policy is loaded the translator copies the template to a new policy and replaces the CONTROL_LOOP_ONE and CONTROL_LOOP_TWO values with the specified control loops. See the `XAMCL Coordination Template for more details <https://gerrit.onap.org/r/gitweb?p=policy/xacml-pdp.git;a=blob;f=applications/guard/src/main/resources/coordination/function/onap.policies.controlloop.guard.coordination.FirstBlocksSecond.xml;h=bea05f264be5e422eb2da448d40057f736b7555c;hb=refs/heads/master>`__.
+This is an example Decision API payload made to retrieve a decision for a Guard Policy Type.
 
-The same Decision API payload example for guard applies to this Policy Type.
+.. literalinclude:: decision.guard.json
+  :language: JSON
 
 Optimization Policy Types
 =========================
-These Policy Types are designed to be used by the OOF Project support placement in ONAP. The OOF Platform makes a call to the Decision API to request these Policies based on the values specified in the onap.policies.Optimization properties that have a metadata property called "matchable" and its value is set to "true". NOTE: For El Alto, this is dark code and OOF has not yet upgraded to the new Decision API to support this. Please refer to the OOF Project for more details on how it currently uses the Legacy API and policy models in their platform.
+These Policy Types are designed to be used by the OOF Project support several domains including VNF placement in ONAP. The OOF Platform makes a call to the Decision API to request these Policies based on the values specified in the onap.policies.Optimization properties. Each of these properties are treated relative to each other as an "AND". In addition, each value for each property itself is treated as an "OR".
 
 .. csv-table::
    :header: "Policy Type", "Action"
 
    "onap.policies.Optimization", "optimize"
-   "onap.policies.optimization.AffinityPolicy", "optimize"
-   "onap.policies.optimization.DistancePolicy", "optimize"
-   "onap.policies.optimization.HpaPolicy", "optimize"
-   "onap.policies.optimization.OptimizationPolicy", "optimize"
-   "onap.policies.optimization.PciPolicy", "optimize"
-   "onap.policies.optimization.QueryPolicy", "optimize"
-   "onap.policies.optimization.SubscriberPolicy", "optimize"
-   "onap.policies.optimization.Vim_fit", "optimize"
-   "onap.policies.optimization.VnfPolicy", "optimize"
-
-The translator used to translate the optimization Policy Types is the `StdMatchableTranslator <https://gerrit.onap.org/r/gitweb?p=policy/xacml-pdp.git;a=blob;f=applications/common/src/main/java/org/onap/policy/pdp/xacml/application/common/std/StdMatchableTranslator.java;h=dd44af7aa4ab2ef70b216f8a3a6a02c6f1fddf56;hb=refs/heads/master>`__.
+   "onap.policies.optimization.Service", "optimize"
+   "onap.policies.optimization.Resource", "optimize"
+   "onap.policies.optimization.resource.AffinityPolicy", "optimize"
+   "onap.policies.optimization.resource.DistancePolicy", "optimize"
+   "onap.policies.optimization.resource.HpaPolicy", "optimize"
+   "onap.policies.optimization.resource.OptimizationPolicy", "optimize"
+   "onap.policies.optimization.resource.PciPolicy", "optimize"
+   "onap.policies.optimization.service.QueryPolicy", "optimize"
+   "onap.policies.optimization.service.SubscriberPolicy", "optimize"
+   "onap.policies.optimization.resource.Vim_fit", "optimize"
+   "onap.policies.optimization.resource.VnfPolicy", "optimize"
+
+The optimization application extends the StdMatchablePolicyTranslator in that the application applies a "closest match" algorithm internally after a XACML decision. This filters the results of the decision to return the one or more policies that match the incoming decision request as close as possible. In addition, there is special consideration for the Subscriber Policy Type. If a decision request contains subscriber context attributes, then internally the application will apply an initial decision to retrieve the scope of the subscriber. The resulting scope attributes are then added into a final internal decision call.
 
 This is an example Decision API payload made to retrieve a decision for an Optimization Policy Type.
 
@@ -92,7 +138,8 @@ This is an example Decision API payload made to retrieve a decision for an Optim
   :language: JSON
 
 Native XACML Policy Type
-=======================
+========================
+
 This Policy type is used by any client or ONAP component who has the need of native XACML evaluation. A native XACML policy or policy set encoded in XML can be created off this policy type and loaded into the XACML PDP engine by invoking the PAP policy deployment API. Native XACML requests encoded in either JSON or XML can be sent to the XACML PDP engine for evaluation by invoking the native decision API. Native XACML responses will be returned upon evaluating the requests against the matching XACML policies. Those native XACML policies, policy sets, requests and responses all follow the `OASIS XACML 3.0 Standard <https://www.oasis-open.org/committees/tc_home.php?wg_abbrev=xacml>`__.
 
 .. csv-table::
@@ -100,8 +147,6 @@ This Policy type is used by any client or ONAP component who has the need of nat
 
    "onap.policies.native.Xacml", "native", "any client or ONAP component"
 
-The translator used to translate the aforementioned TOSCA Policy Type is the `NativePdpApplicationTranslator <https://gerrit.onap.org/r/gitweb?p=policy/xacml-pdp.git;a=blob;f=applications/native/src/main/java/org/onap/policy/xacml/pdp/application/nativ/NativePdpApplicationTranslator.java;h=5ce25facdbcab5e862c57bc67d7e2b7617eeb075;hb=HEAD>`__.
-
 According to the XACML 3.0 specification, two content-types are supported and used to present the native requests/responses. They are formally defined as "application/xacml+json" and "application/xacml+xml".
 
 This is an example Native Decision API payload made to retrieve a decision for whether Julius Hibbert can read http://medico.com/record/patient/BartSimpson.
@@ -109,55 +154,40 @@ This is an example Native Decision API payload made to retrieve a decision for w
 .. literalinclude:: decision.native.json
   :language: JSON
 
-Supporting Custom Policy Types
-******************************
-In order to support your own custom Policy Type that the XACML PDP Engine can support, one needs to build a Java service application that extends the **XacmlApplicationServiceProvider** interface and implement a **ToscaTranslator** application. Your application should register itself as a Java service application and expose it in the classpath used to be loaded into the ONAP XACML PDP Engine. Ensure you define and create the TOSCA Policy Type according to these :ref:`Policy Design and Development <design-label>`. You should be able to load your custom Policy Type using the :ref:`Policy Lifecycle API <api-label>`. Once successful, you should be able to start creating policies from your custom Policy Type.
+Supporting Your Own Policy Types and Translators
+************************************************
 
-See each of the ONAP Policy Type application implementations for for ONAP re-use the **StdXacmlApplicationServiceProvider** class. They give simple examples on how to use various implementations of **ToscaTranslator** applications.
+In order to support your own custom Policy Type that the XACML PDP Engine can support, one needs to build a Java service application that extends the **XacmlApplicationServiceProvider** interface and implement a **ToscaPolicyTranslator** application. Your application should register itself as a Java service application and expose it in the classpath used to be loaded into the ONAP XACML PDP Engine. Ensure you define and create the TOSCA Policy Type according to these :ref:`Policy Design and Development <design-label>`. You should be able to load your custom Policy Type using the :ref:`Policy Lifecycle API <api-label>`. Once successful, you should be able to start creating policies from your custom Policy Type.
 
-The following tutorial can be helpful to get started: :ref:`xacmltutorial-label`
+XacmlApplicationServiceProvider
+===============================
 
-Once your application is developed and the ONAP XACML PDP Engine can find your application via setting the classpath appropriately, then use the :ref:`PAP REST API <pap-label>` to ensure the ONAP XACML PDP is registering your custom Policy Type with the PAP. Once successful, then you should be able to start deploying the created policies to the XACML PDP Engine.
+`Interface for XacmlApplicationServiceProvider <https://github.com/onap/policy-xacml-pdp/blob/master/applications/common/src/main/java/org/onap/policy/pdp/xacml/application/common/XacmlApplicationServiceProvider.java>`_
 
-.. _decision-api-label:
+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.
 
-Decision API
-************
-The Decision API is used by ONAP components that enforce policies and need a decision on which policy to enforce for a specific situation. The Decision API mimics closely the XACML request standard in that it supports a subject, action and resource.
+`Standard Application Service Provider implementation <https://github.com/onap/policy-xacml-pdp/blob/master/applications/common/src/main/java/org/onap/policy/pdp/xacml/application/common/std/StdXacmlApplicationServiceProvider.java>`_
 
-.. csv-table::
-   :header: "Field", "Required", "XACML equivalent", "Description"
-
-   "ONAPName", "True", "subject", "The name of the ONAP project making the call"
-   "ONAPComponent", "True", "subject", "The name of the ONAP sub component making the call"
-   "ONAPInstance", "False", "subject", "An optional instance ID for that sub component"
-   "action", "True", "action", "The action being performed"
-   "resource", "True", "resource", "An object specific to the action that contains properties describing the resource"
-
-It is worth noting that we use basic authorization for API access with username and password set to *healthcheck* and *zb!XztG34* respectively.
-Also, the new APIs support both *http* and *https*.
+ToscaPolicyTranslator
+=====================
 
-For every API call, client is encouraged to insert an uuid-type requestID as parameter. It is helpful for tracking each http transaction
-and facilitates debugging. Mostly importantly, it complies with Logging requirements v1.2. If client does not provider the requestID in API call,
-one will be randomly generated and attached to response header *x-onap-requestid*.
+Your custom **XacmlApplicationServiceProvider** must provide an implementation of a *ToscaPolicyTranslator*.
 
-In accordance with `ONAP API Common Versioning Strategy Guidelines <https://wiki.onap.org/display/DW/ONAP+API+Common+Versioning+Strategy+%28CVS%29+Guidelines>`_,
-in the response of each API call, several custom headers are added::
+`Interface for ToscaPolicyTranslator <https://github.com/onap/policy-xacml-pdp/blob/master/applications/common/src/main/java/org/onap/policy/pdp/xacml/application/common/ToscaPolicyTranslator.java>`_
 
-    x-latestversion: 1.0.0
-    x-minorversion: 0
-    x-patchversion: 0
-    x-onap-requestid: e1763e61-9eef-4911-b952-1be1edd9812b
+See each of the ONAP Policy type application implementations which each have their own *ToscaPolicyTranslator*. Most use or extend the **StdBaseTranslator**.
 
-x-latestversion is used only to communicate an API's latest version.
+`Standard Tosca Policy Translator implementation <https://github.com/onap/policy-xacml-pdp/blob/master/applications/common/src/main/java/org/onap/policy/pdp/xacml/application/common/std/StdBaseTranslator.java>`.
 
-x-minorversion is used to request or communicate a MINOR version back from the client to the server, and from the server back to the client.
+XACML Application Tutorial
+==========================
 
-x-patchversion is used only to communicate a PATCH version in a response for troubleshooting purposes only, and will not be provided by the client on request.
+The following tutorial can be helpful to get started:
 
-x-onap-requestid is used to track REST transactions for logging purpose, as described above.
+.. toctree::
+   :maxdepth: 1
 
-.. swaggerv2doc:: swagger.json
+   xacml-tutorial
 
+Once your application is developed and the ONAP XACML PDP Engine can find your application via setting the classpath appropriately, then use the :ref:`PAP REST API <pap-label>` to ensure the ONAP XACML PDP is registering your custom Policy Type with the PAP. Once successful, then you should be able to start deploying the created policies to the XACML PDP Engine.
 
-End of Document