javadoc: add missing <name> in pom files
[honeycomb.git] / infra / it / it-test / src / test / resources / models / test-edit-config.yang
1 module test-edit-config {
2     yang-version 1;
3     namespace "urn:honeycomb:params:xml:ns:yang:test:edit:config";
4     prefix "td";
5
6     revision "2018-06-08" {
7         description "Initial revision";
8     }
9
10     container top-container {
11         leaf name {
12             type string;
13         }
14         list list-in-container {
15             key "name";
16
17             leaf name {
18                 type string;
19             }
20
21             leaf description {
22                 type string;
23                 mandatory true;
24             }
25         }
26     }
27 }