summaryrefslogtreecommitdiffstats
path: root/vpp-common/naming-context-api
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
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')
-rw-r--r--vpp-common/naming-context-api/asciidoc/Readme.adoc3
-rw-r--r--vpp-common/naming-context-api/pom.xml31
-rw-r--r--vpp-common/naming-context-api/src/main/yang/naming-context.yang44
3 files changed, 0 insertions, 78 deletions
diff --git a/vpp-common/naming-context-api/asciidoc/Readme.adoc b/vpp-common/naming-context-api/asciidoc/Readme.adoc
deleted file mode 100644
index 42eeb60c9..000000000
--- a/vpp-common/naming-context-api/asciidoc/Readme.adoc
+++ /dev/null
@@ -1,3 +0,0 @@
-= naming-context-api
-
-Overview of naming-context-api \ No newline at end of file
diff --git a/vpp-common/naming-context-api/pom.xml b/vpp-common/naming-context-api/pom.xml
deleted file mode 100644
index f197daaff..000000000
--- a/vpp-common/naming-context-api/pom.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Copyright (c) 2015 Cisco and/or its affiliates.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at:
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <groupId>io.fd.honeycomb.common</groupId>
- <artifactId>api-parent</artifactId>
- <version>1.16.12-SNAPSHOT</version>
- <relativePath>../../common/api-parent</relativePath>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
- <groupId>io.fd.honeycomb.vpp</groupId>
- <artifactId>naming-context-api</artifactId>
- <name>${project.artifactId}</name>
- <version>1.16.12-SNAPSHOT</version>
- <packaging>bundle</packaging>
-
-</project>
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