Teach BindingNormalizedNodeCache to cache leaf type objects
[mdsal.git] / binding / mdsal-binding-test-model / src / main / yang / opendaylight-test-leafcachingcodec.yang
1 module test-leaf-caching-codec {
2     namespace "urn:test:leaf:caching:codec";
3     prefix test;
4
5     revision 2019-02-01;
6
7     typedef my-type {
8         type uint16 {
9           range "1..4094";
10         }
11     }
12
13     container cont{
14        leaf caching {
15          type my-type;
16        }
17
18        leaf non-caching {
19          type string;
20        }
21     }
22 }