diff options
author | Benjamin, Max (mb388a) <mb388a@us.att.com> | 2019-04-16 17:21:23 -0400 |
---|---|---|
committer | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2019-04-20 07:49:40 +0000 |
commit | dc6dfca6c22fce3ad0c10cffd3dc2698a101b40f (patch) | |
tree | c75389117149268124625ee1f970b0eb9818c095 /adapters/mso-adapters-rest-interface/src/test/resources/VfRequest-marshalled-with-complex-object.xml | |
parent | 2886fcd111a2127400f588d3ee949c1c6c1b1dbc (diff) |
always convert values toString for xml marshalling
always convert values toString for xml marshalling
added in null check and object mapper call
Change-Id: Ie91c313dce110d53586e6773e2223d63be799a54
Issue-ID: SO-1786
Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
Diffstat (limited to 'adapters/mso-adapters-rest-interface/src/test/resources/VfRequest-marshalled-with-complex-object.xml')
-rw-r--r-- | adapters/mso-adapters-rest-interface/src/test/resources/VfRequest-marshalled-with-complex-object.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/adapters/mso-adapters-rest-interface/src/test/resources/VfRequest-marshalled-with-complex-object.xml b/adapters/mso-adapters-rest-interface/src/test/resources/VfRequest-marshalled-with-complex-object.xml new file mode 100644 index 0000000000..ce175127df --- /dev/null +++ b/adapters/mso-adapters-rest-interface/src/test/resources/VfRequest-marshalled-with-complex-object.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<createVfModuleRequest> + <failIfExists>false</failIfExists> + <backout>true</backout> + <vfModuleParams> + <entry> + <key>test array</key> + <value xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string">["a","b","c"]</value> + </entry> + <entry> + <key>test-null</key> + </entry> + </vfModuleParams> + <msoRequest/> +</createVfModuleRequest> |