diff options
author | Jim Hahn <jrh3@att.com> | 2019-09-13 17:31:46 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2019-09-16 18:24:42 -0400 |
commit | 50cd3fbf4561fe445751d299c53efc499df6dfb6 (patch) | |
tree | 28d10581129d3b5107693d7183bd2f46af419377 /policy-management/src/main/server/config | |
parent | 89a8e32aabc34432b3d614f452e10f7125b478ce (diff) |
Add YAML support to drools-pdp rest servlets
Drools-pdp depends on some of the GsonJackson annotations that cannot
be easily worked around via standard gson. Consequently, this continues
to use the JacksonHandler for json-encoding, thus it uses the
YamlJacksonHandler for yaml-encoding.
Added YAML to swagger "consumes" list.
Change-Id: Ic70c68bb274222db571b3515cbf1ab22d9ff2366
Issue-ID: POLICY-2081
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'policy-management/src/main/server/config')
-rw-r--r-- | policy-management/src/main/server/config/engine.properties | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/policy-management/src/main/server/config/engine.properties b/policy-management/src/main/server/config/engine.properties index 05f682e3..aa9b6d80 100644 --- a/policy-management/src/main/server/config/engine.properties +++ b/policy-management/src/main/server/config/engine.properties @@ -42,7 +42,7 @@ http.server.services.SECURED-CONFIG.managed=false http.server.services.SECURED-CONFIG.swagger=true http.server.services.SECURED-CONFIG.https=true http.server.services.SECURED-CONFIG.aaf=${env:AAF} -http.server.services.SECURED-CONFIG.serialization.provider=org.onap.policy.common.gson.JacksonHandler +http.server.services.SECURED-CONFIG.serialization.provider=org.onap.policy.common.gson.JacksonHandler,org.onap.policy.common.endpoints.http.server.YamlJacksonHandler aaf.namespace=${env:AAF_NAMESPACE} aaf.root.permission=${env:AAF_NAMESPACE}.pdpd |