summaryrefslogtreecommitdiffstats
path: root/daexim-offsite-backup/model
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@linuxfoundation.org>2020-12-01 11:52:01 -0800
committerJessica Wagantall <jwagantall@linuxfoundation.org>2020-12-01 11:52:01 -0800
commitff3eecb980bfdc8d43d2ed3a4c786d634fa6f4e2 (patch)
tree680db1c4f69f5c181b8f1fb7d7d8f46942783b3e /daexim-offsite-backup/model
parent02b6c140f031c19cfcb791fd0142f03167db69b1 (diff)
Migrate sli-northbound repo
Migrate sli-northbound repo files into new directory "northbound". Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
Diffstat (limited to 'daexim-offsite-backup/model')
-rwxr-xr-xdaexim-offsite-backup/model/.gitignore1
-rwxr-xr-xdaexim-offsite-backup/model/pom.xml27
-rwxr-xr-xdaexim-offsite-backup/model/scripts/python/yang2props.py52
-rwxr-xr-xdaexim-offsite-backup/model/src/main/yang/daexim-offsite-backup.yang46
4 files changed, 0 insertions, 126 deletions
diff --git a/daexim-offsite-backup/model/.gitignore b/daexim-offsite-backup/model/.gitignore
deleted file mode 100755
index eacf31a67..000000000
--- a/daexim-offsite-backup/model/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/target-ide/
diff --git a/daexim-offsite-backup/model/pom.xml b/daexim-offsite-backup/model/pom.xml
deleted file mode 100755
index 4f338c786..000000000
--- a/daexim-offsite-backup/model/pom.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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">
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.onap.ccsdk.parent</groupId>
- <artifactId>binding-parent</artifactId>
- <version>2.1.0</version>
- <relativePath/>
- </parent>
-
- <groupId>org.onap.ccsdk.sli.northbound</groupId>
- <artifactId>daexim-offsite-backup-model</artifactId>
- <version>1.1.1-SNAPSHOT</version>
- <packaging>bundle</packaging>
-
- <name>ccsdk-sli-northbound :: daexim-offsite-backup :: ${project.artifactId}</name>
-
- <dependencies>
- <dependency>
- <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
- <artifactId>rfc6991</artifactId>
- </dependency>
-
-
- </dependencies>
-</project>
diff --git a/daexim-offsite-backup/model/scripts/python/yang2props.py b/daexim-offsite-backup/model/scripts/python/yang2props.py
deleted file mode 100755
index 97ceaa760..000000000
--- a/daexim-offsite-backup/model/scripts/python/yang2props.py
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/usr/bin/env python3
-
-import re
-import sys
-
-
-# Convert word from foo-bar to FooBar
-# words begining with a digit will be converted to _digit
-def to_enum(s):
- if s[0].isdigit():
- s = "_" + s
- else:
- s = s[0].upper() + s[1:]
- return re.sub(r'(?!^)-([a-zA-Z])', lambda m: m.group(1).upper(), s)
-
-leaf = ""
-val = ""
-li = []
-
-if len(sys.argv) < 3:
- print('yang2props.py <input yang> <output properties>')
- sys.exit(2)
-
-with open(sys.argv[1], "r") as ins:
- for line in ins:
- # if we see a leaf save the name for later
- if "leaf " in line:
- match = re.search(r'leaf (\S+)', line)
- if match:
- leaf = match.group(1)
-
- # if we see enum convert the value to enum format and see if it changed
- # if the value is different write a property entry
- if "enum " in line:
- match = re.search(r'enum "(\S+)";', line)
- if match:
- val = match.group(1)
- enum = to_enum(val)
-
- # see if converting to enum changed the string
- if val != enum:
- property = "yang."+leaf+"."+enum+"="+val
- if property not in li:
- li.append( property)
-
-
-with open(sys.argv[2], "w") as fo:
- fo.write("# yang conversion properties \n")
- fo.write("# used to convert Enum back to the original yang value \n")
- fo.write("\n".join(li))
- fo.write("\n")
-
diff --git a/daexim-offsite-backup/model/src/main/yang/daexim-offsite-backup.yang b/daexim-offsite-backup/model/src/main/yang/daexim-offsite-backup.yang
deleted file mode 100755
index 363136caf..000000000
--- a/daexim-offsite-backup/model/src/main/yang/daexim-offsite-backup.yang
+++ /dev/null
@@ -1,46 +0,0 @@
-module daexim-offsite-backup{
- namespace "org:onap:ccsdk:sli:northbound:daeximoffsitebackup";
- prefix daexim-offsite-backup;
-
- import ietf-inet-types {
- prefix inet;
- }
- import ietf-yang-types {
- prefix yang;
- }
- description
- "This ODL feature is designed for transferring MD-SAL data
- to an offsite location in the ECOMP-C containerized environments.";
- revision "2018-09-26" {
- description
- "Release 19.02 draft";
- }
-
- rpc backup-data {
- output {
- leaf status { type string; }
- leaf message { type string; }
- }
- }
-
- rpc retrieve-data {
- input {
- leaf pod-name {
- type string;
- description
- "Name of the desired MD-SAL backup's pod. If not supplied will
- default to the name of this pod.";
- }
- leaf timestamp {
- type string;
- description
- "Timestamp of the desired backup. Format: yyyyMMdd_HH";
- mandatory true;
- }
- }
- output {
- leaf status { type string; }
- leaf message { type string; }
- }
- }
-}////closes the module \ No newline at end of file