diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2022-12-22 15:46:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-12-22 15:46:16 +0000 |
commit | 8119a0634b900e15a0d99eb3b1993bb59546127c (patch) | |
tree | c56c2320cf0791b6c75ea02774fca824aa59bbf1 /cps-service/src/test/resources/bookstore.xml | |
parent | cd02dc580f1a83d4ce05c7b1eedea88593fac5df (diff) | |
parent | 6ce84d98f68b45f02f16dc99423670f4a53fd946 (diff) |
Merge "XML content on create anchors node support"
Diffstat (limited to 'cps-service/src/test/resources/bookstore.xml')
-rw-r--r-- | cps-service/src/test/resources/bookstore.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cps-service/src/test/resources/bookstore.xml b/cps-service/src/test/resources/bookstore.xml new file mode 100644 index 0000000000..dd45e16896 --- /dev/null +++ b/cps-service/src/test/resources/bookstore.xml @@ -0,0 +1,19 @@ +<?xml version='1.0' encoding='UTF-8'?> +<stores xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"> +<bookstore xmlns="org:onap:ccsdk:sample"> + <bookstore-name>Chapters</bookstore-name> + <categories> + <code>1</code> + <name>SciFi</name> + <books> + <title>2001: A Space Odyssey</title> + <lang>en</lang> + <authors> + Iain M. Banks + </authors> + <pub_year>1994</pub_year> + <price>895</price> + </books> + </categories> +</bookstore> +</stores>
\ No newline at end of file |