summaryrefslogtreecommitdiffstats
path: root/vpp-common/naming-context-api
diff options
context:
space:
mode:
authorJan Srnicek <jsrnicek@cisco.com>2016-12-01 18:15:52 +0100
committerJan Srnicek <jsrnicek@cisco.com>2016-12-01 18:16:47 +0100
commit32aa07e5517fba7f78ae79d2ba83b56f72a53293 (patch)
tree26256f30f2dc5c3521403ef3fcd2e038b2f9bca6 /vpp-common/naming-context-api
parent9c9935c83ce9869ca36cbde7865423ef02f19db8 (diff)
HONEYCOMB-58 - Routing Plugin Structure
Read/Write support for ipv4/6 static routes. Restriction due to vpp implementation described in readme. Change-Id: I328f406a9b7cb8781f8becf98eca293cebe66859 Signed-off-by: Jan Srnicek <jsrnicek@cisco.com>
Diffstat (limited to 'vpp-common/naming-context-api')
-rw-r--r--vpp-common/naming-context-api/pom.xml10
-rw-r--r--vpp-common/naming-context-api/src/main/yang/multi-naming-context.yang68
2 files changed, 77 insertions, 1 deletions
diff --git a/vpp-common/naming-context-api/pom.xml b/vpp-common/naming-context-api/pom.xml
index ec38c6425..c071e50f0 100644
--- a/vpp-common/naming-context-api/pom.xml
+++ b/vpp-common/naming-context-api/pom.xml
@@ -13,7 +13,8 @@
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">
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
+ 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>
@@ -27,4 +28,11 @@
<version>1.16.12-SNAPSHOT</version>
<packaging>bundle</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>org.opendaylight.mdsal.model</groupId>
+ <artifactId>yang-ext</artifactId>
+ </dependency>
+ </dependencies>
+
</project>
diff --git a/vpp-common/naming-context-api/src/main/yang/multi-naming-context.yang b/vpp-common/naming-context-api/src/main/yang/multi-naming-context.yang
new file mode 100644
index 000000000..23079601a
--- /dev/null
+++ b/vpp-common/naming-context-api/src/main/yang/multi-naming-context.yang
@@ -0,0 +1,68 @@
+module multi-naming-context {
+ yang-version 1;
+ namespace "urn:honeycomb:params:xml:ns:yang:multi:naming:context";
+ prefix "mnc";
+
+ description
+ "This module contains data definition for naming multi-mapping context";
+
+ import naming-context {
+ prefix "nc";
+ }
+
+ import yang-ext {
+ prefix "ext";
+ }
+
+
+ revision "2016-4-11" {
+ description
+ "Initial revision.";
+ }
+
+
+ grouping multi-naming-contexts-attributes{
+ container multi-naming-contexts {
+ config false;
+ // context data
+
+ list multi-naming {
+
+ key "name";
+
+ leaf name {
+ type string;
+ }
+
+ container mappings {
+ list mapping {
+
+ key "name";
+
+ leaf name {
+ type string;
+ }
+
+ list value{
+ key "name";
+
+ unique "index";
+ leaf index {
+ type int32;
+ }
+
+ leaf name {
+ type string;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+
+ augment /nc:contexts {
+ ext:augment-identifier "multi-mapping-ctx-augmentation";
+ uses multi-naming-contexts-attributes;
+ }
+} \ No newline at end of file