summaryrefslogtreecommitdiffstats
path: root/v3po/data-impl/src/test/resources/test-persistence.yang
diff options
context:
space:
mode:
authorMaros Marsalek <mmarsale@cisco.com>2016-05-12 16:05:46 +0200
committerMaros Marsalek <mmarsale@cisco.com>2016-05-23 09:23:40 +0000
commit0fbc1362777869101c375006d6db423ec868924b (patch)
tree674fb4e2b1f92db7451b58cec228729da201bf80 /v3po/data-impl/src/test/resources/test-persistence.yang
parentff272ca4bb768f9075fc3dcf9a2a2e8ef8be38fa (diff)
HONEYCOMB-61: Config persister
Add PersistingDataTree adapter for in memory config data tree Using JSON NormalizedNode writers from ODL Change-Id: Ida91fe6aa34aaeaedcd061ba1551afe49bbddbbb Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
Diffstat (limited to 'v3po/data-impl/src/test/resources/test-persistence.yang')
-rw-r--r--v3po/data-impl/src/test/resources/test-persistence.yang16
1 files changed, 16 insertions, 0 deletions
diff --git a/v3po/data-impl/src/test/resources/test-persistence.yang b/v3po/data-impl/src/test/resources/test-persistence.yang
new file mode 100644
index 000000000..b7dbbb1bc
--- /dev/null
+++ b/v3po/data-impl/src/test/resources/test-persistence.yang
@@ -0,0 +1,16 @@
+module test-persistence {
+ yang-version 1;
+ namespace "urn:opendaylight:params:xml:ns:yang:test:persistence";
+ prefix "tp";
+
+ revision "2015-01-05" {
+ description "Initial revision";
+ }
+
+ container top-container {
+ leaf string {
+ type string;
+ }
+ }
+
+}