summaryrefslogtreecommitdiffstats
path: root/vpp-common/naming-context-api/src/main/yang
diff options
context:
space:
mode:
authorMaros Marsalek <mmarsale@cisco.com>2016-11-10 12:22:28 +0100
committerMaros Marsalek <mmarsale@cisco.com>2016-11-10 12:47:24 +0100
commit8e0c7007906730fe4547b0265a895ad8a322a7dc (patch)
treedbc3310da5c7b7083cc6b9ecffee633d2cf5cd7f /vpp-common/naming-context-api/src/main/yang
parentaa7e652e6105a6972d6c41ff0738cd9e31ce0188 (diff)
Remove hc2vpp codebase
Moved to a dedicated hc2vpp project in fd.io Change-Id: I03dc3b3029f21b127a00c69a86bcd8e467896241 Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
Diffstat (limited to 'vpp-common/naming-context-api/src/main/yang')
-rw-r--r--vpp-common/naming-context-api/src/main/yang/naming-context.yang44
1 files changed, 0 insertions, 44 deletions
diff --git a/vpp-common/naming-context-api/src/main/yang/naming-context.yang b/vpp-common/naming-context-api/src/main/yang/naming-context.yang
deleted file mode 100644
index c101b5c26..000000000
--- a/vpp-common/naming-context-api/src/main/yang/naming-context.yang
+++ /dev/null
@@ -1,44 +0,0 @@
-module naming-context {
- yang-version 1;
- namespace "urn:honeycomb:params:xml:ns:yang:naming:context";
- prefix "nc";
-
- description
- "This module contains data definition for naming mapping context";
-
- revision "2016-05-13" {
- description
- "Initial revision.";
- }
-
- container contexts {
- config false;
- // context data
-
- list naming-context {
-
- key "name";
-
- leaf name {
- type string;
- }
-
- container mappings {
- list mapping {
-
- key "name";
- unique "index";
-
- leaf name {
- type string;
- }
-
- leaf index {
- type int32;
- }
- }
- }
- }
- }
-
-} \ No newline at end of file