summaryrefslogtreecommitdiffstats
path: root/platform-logic/restapi-templates
diff options
context:
space:
mode:
Diffstat (limited to 'platform-logic/restapi-templates')
-rw-r--r--platform-logic/restapi-templates/pom.xml54
-rw-r--r--platform-logic/restapi-templates/src/main/json/oofpcipoc-addNeighbor.json11
-rw-r--r--platform-logic/restapi-templates/src/main/json/oofpcipoc-deleteNeighbor.json8
-rw-r--r--platform-logic/restapi-templates/src/main/json/oofpcipoc-generic-neighbor-patch.json24
-rw-r--r--platform-logic/restapi-templates/src/main/json/oofpcipoc-pci-patch.json14
5 files changed, 111 insertions, 0 deletions
diff --git a/platform-logic/restapi-templates/pom.xml b/platform-logic/restapi-templates/pom.xml
new file mode 100644
index 00000000..90a5f492
--- /dev/null
+++ b/platform-logic/restapi-templates/pom.xml
@@ -0,0 +1,54 @@
+<?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.distribution</groupId>
+ <artifactId>distribution-platform-logic</artifactId>
+ <version>0.4.2-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>platform-logic-restapi-templates</artifactId>
+ <version>0.4.2-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <name>ccsdk-distribution :: platform-logic :: ${project.artifactId}</name>
+ <description>Contains platform-level platform logic for REST API templates</description>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.6</version>
+ <executions>
+ <execution>
+ <id>copy-version</id>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals><!-- here the phase you need -->
+ <phase>validate</phase>
+ <configuration>
+ <outputDirectory>../target/restapi/templates</outputDirectory>
+ <resources>
+ <resource>
+ <directory>src/main/json</directory>
+ <includes>
+ <include>**/*.json</include>
+ </includes>
+ <filtering>true</filtering>
+ </resource>
+ <resource>
+ <directory>src/main/xml</directory>
+ <includes>
+ <include>**/*.xml</include>
+ </includes>
+ <filtering>true</filtering>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/platform-logic/restapi-templates/src/main/json/oofpcipoc-addNeighbor.json b/platform-logic/restapi-templates/src/main/json/oofpcipoc-addNeighbor.json
new file mode 100644
index 00000000..daa7bfaf
--- /dev/null
+++ b/platform-logic/restapi-templates/src/main/json/oofpcipoc-addNeighbor.json
@@ -0,0 +1,11 @@
+{
+ "lte-ran-neighbor-list-in-use-lte-cell": [
+ {
+ "plmnid": ${tmp.plmnid},
+ "cid": ${tmp.cid},
+ "blacklisted": ${tmp.blacklisted},
+ "phy-cell-id": ${tmp.phy-cell-id},
+ "pnf-name": ${tmp.pnf-name}
+ }
+ ]
+}
diff --git a/platform-logic/restapi-templates/src/main/json/oofpcipoc-deleteNeighbor.json b/platform-logic/restapi-templates/src/main/json/oofpcipoc-deleteNeighbor.json
new file mode 100644
index 00000000..5ac5f72a
--- /dev/null
+++ b/platform-logic/restapi-templates/src/main/json/oofpcipoc-deleteNeighbor.json
@@ -0,0 +1,8 @@
+{
+ "lte-ran-neighbor-list-in-use-lte-cell": [
+ {
+ "plmnid": ${tmp.plmnid},
+ "cid": ${tmp.cid}
+ }
+ ]
+}
diff --git a/platform-logic/restapi-templates/src/main/json/oofpcipoc-generic-neighbor-patch.json b/platform-logic/restapi-templates/src/main/json/oofpcipoc-generic-neighbor-patch.json
new file mode 100644
index 00000000..b3b4643b
--- /dev/null
+++ b/platform-logic/restapi-templates/src/main/json/oofpcipoc-generic-neighbor-patch.json
@@ -0,0 +1,24 @@
+{
+ "ietf-yang-patch:yang-patch": {
+ "patch-id": "Patch 2",
+ "comment": "patch for configuring neighbor ",
+ "edit": [
+ {
+ "edit-id": "patch blacklisted",
+ "operation": "merge",
+ "target": "/oofpcipoc:blacklisted",
+ "value": {
+ "blacklisted": ${tmp.blacklisted}
+ }
+ },
+ {
+ "edit-id": "patch phy-cell-id",
+ "operation": "merge",
+ "target": "/oofpcipoc:phy-cell-id",
+ "value": {
+ "phy-cell-id": ${tmp.phy-cell-id}
+ }
+ }
+ ]
+ }
+}
diff --git a/platform-logic/restapi-templates/src/main/json/oofpcipoc-pci-patch.json b/platform-logic/restapi-templates/src/main/json/oofpcipoc-pci-patch.json
new file mode 100644
index 00000000..9ab74fde
--- /dev/null
+++ b/platform-logic/restapi-templates/src/main/json/oofpcipoc-pci-patch.json
@@ -0,0 +1,14 @@
+{
+ "ietf-yang-patch:yang-patch": {
+ "patch-id": "Patch 1",
+ "comment": "patch for phy-cell-id-in-use for a cell",
+ "edit": [{
+ "edit-id": "edit",
+ "operation": "merge",
+ "target": ${prop.oofpcipoc.patch.pci.target},
+ "value": {
+ "phy-cell-id-in-use": ${tmp.phy-cell-id-in-use}
+ }
+ }]
+ }
+}