diff options
author | Jim Hahn <jrh3@att.com> | 2019-09-09 16:51:32 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2019-09-11 15:32:01 -0400 |
commit | 173c4dbea9a1175a6f18031a221bb701deeecaa7 (patch) | |
tree | cff8d6fc46b6096b551b075e489b406c50b61531 /utils/src/test/resources | |
parent | 216b2beaf25eba50e948374d07e92b6c0a02b7c9 (diff) |
Create StandardYamlCoder
Created StandardYamlCoder which is like a StandardCoder, except that
the original converts to/from JSON, while the new class converts to/from
YAML. Also added YamlMessageBodyHandler and incorporated it into the
http server so that it supports a media type of */yaml.
Change-Id: Ibd83a9f6d355a330f63e435f2bb41affcf1947c2
Issue-ID: POLICY-2065
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'utils/src/test/resources')
-rw-r--r-- | utils/src/test/resources/org/onap/policy/common/utils/coder/StandardYamlCoder.yaml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/utils/src/test/resources/org/onap/policy/common/utils/coder/StandardYamlCoder.yaml b/utils/src/test/resources/org/onap/policy/common/utils/coder/StandardYamlCoder.yaml new file mode 100644 index 00000000..1da7bfa3 --- /dev/null +++ b/utils/src/test/resources/org/onap/policy/common/utils/coder/StandardYamlCoder.yaml @@ -0,0 +1,21 @@ +--- +item: &top + boolVal: true + longVal: 1000 + floatVal: 1010.1 +list: +- intVal: 20 + stringVal: string 30 + nullVal: +- +- doubleVal: 40 + another: + intVal: 50 +- *top +map: + itemA: + stringVal: stringA + itemB: + stringVal: stringB + doubleVal: 123456789012345678901234567890 + itemC: *top |