Merge "Simplify method isMutualExclusive in Subnet. Remove redundant 'if' statements."
[controller.git] / opendaylight / netconf / ietf-netconf-monitoring-extension / src / main / yang / ietf-netconf-monitoring-extension.yang
1 module ietf-netconf-monitoring-extension {
2
3     yang-version 1;
4
5     namespace
6       "urn:ietf:params:xml:ns:yang:ietf-netconf-monitoring-extension";
7
8     prefix ncme;
9
10     import ietf-netconf-monitoring {
11       prefix ncm;
12     }
13
14     revision "2013-12-10" {
15       description "Initial revision.";
16
17     }
18
19     identity netconf-tcp {
20       base ncm:transport;
21       description
22         "NETCONF over TCP.";
23     }
24
25     augment "/ncm:netconf-state/ncm:sessions/ncm:session" {
26       leaf session-identifier {
27         type string;
28       }
29     }
30
31 }