From ab118e5eb61dff21de8516018c48d1eb9e0654de Mon Sep 17 00:00:00 2001 From: Sandeep Shah Date: Wed, 2 Sep 2020 22:35:56 -0500 Subject: [PATCH] Platform Logic and DG's for RANSlice feature This code commit includes basic DG templates required to support RANSlice feature. DG's will be updated during further development and testing cycle. Issue-ID: CCSDK-2723 Signed-off-by: SandeepLinux Change-Id: Ia8960f59a2e2c3e4a14328e43b12777eddcb7baa --- platform-logic/pom.xml | 1 + platform-logic/ran-slice-api/pom.xml | 54 ++ .../ran-slice-api_activateRANSliceInstance.json | 586 +++++++++++++++++++++ .../json/ran-slice-api_configNotification.json | 586 +++++++++++++++++++++ .../src/main/json/ran-slice-api_configureCU.json | 586 +++++++++++++++++++++ .../src/main/json/ran-slice-api_configureDU.json | 586 +++++++++++++++++++++ .../json/ran-slice-api_configureNearRTRIC.json | 586 +++++++++++++++++++++ .../ran-slice-api_configureRANSliceInstance.json | 586 +++++++++++++++++++++ .../ran-slice-api_deactivateRANSliceInstance.json | 586 +++++++++++++++++++++ .../ran-slice-api_determineRANSliceResources.json | 586 +++++++++++++++++++++ .../json/ran-slice-api_instantiateRANSlice.json | 586 +++++++++++++++++++++ .../ran-slice-api_terminateRANSliceInstance.json | 586 +++++++++++++++++++++ .../src/main/resources/graph.versions | 10 + .../xml/ran-slice-api_activateRANSliceInstance.xml | 18 + .../main/xml/ran-slice-api_configNotification.xml | 18 + .../src/main/xml/ran-slice-api_configureCU.xml | 18 + .../src/main/xml/ran-slice-api_configureDU.xml | 18 + .../main/xml/ran-slice-api_configureNearRTRIC.xml | 18 + .../ran-slice-api_configureRANSliceInstance.xml | 18 + .../ran-slice-api_deactivateRANSliceInstance.xml | 18 + .../ran-slice-api_determineRANSliceResources.xml | 18 + .../main/xml/ran-slice-api_instantiateRANSlice.xml | 18 + .../ran-slice-api_terminateRANSliceInstance.xml | 18 + 23 files changed, 6105 insertions(+) create mode 100644 platform-logic/ran-slice-api/pom.xml create mode 100644 platform-logic/ran-slice-api/src/main/json/ran-slice-api_activateRANSliceInstance.json create mode 100644 platform-logic/ran-slice-api/src/main/json/ran-slice-api_configNotification.json create mode 100644 platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureCU.json create mode 100644 platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureDU.json create mode 100644 platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureNearRTRIC.json create mode 100644 platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureRANSliceInstance.json create mode 100644 platform-logic/ran-slice-api/src/main/json/ran-slice-api_deactivateRANSliceInstance.json create mode 100644 platform-logic/ran-slice-api/src/main/json/ran-slice-api_determineRANSliceResources.json create mode 100644 platform-logic/ran-slice-api/src/main/json/ran-slice-api_instantiateRANSlice.json create mode 100644 platform-logic/ran-slice-api/src/main/json/ran-slice-api_terminateRANSliceInstance.json create mode 100644 platform-logic/ran-slice-api/src/main/resources/graph.versions create mode 100644 platform-logic/ran-slice-api/src/main/xml/ran-slice-api_activateRANSliceInstance.xml create mode 100644 platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configNotification.xml create mode 100644 platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureCU.xml create mode 100644 platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureDU.xml create mode 100644 platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureNearRTRIC.xml create mode 100644 platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureRANSliceInstance.xml create mode 100644 platform-logic/ran-slice-api/src/main/xml/ran-slice-api_deactivateRANSliceInstance.xml create mode 100644 platform-logic/ran-slice-api/src/main/xml/ran-slice-api_determineRANSliceResources.xml create mode 100644 platform-logic/ran-slice-api/src/main/xml/ran-slice-api_instantiateRANSlice.xml create mode 100644 platform-logic/ran-slice-api/src/main/xml/ran-slice-api_terminateRANSliceInstance.xml diff --git a/platform-logic/pom.xml b/platform-logic/pom.xml index 34c33f8d..4d17bf20 100644 --- a/platform-logic/pom.xml +++ b/platform-logic/pom.xml @@ -24,6 +24,7 @@ oofpcipoc-api a1Adapter-api cMNotify-api + ran-slice-api restapi-templates installer diff --git a/platform-logic/ran-slice-api/pom.xml b/platform-logic/ran-slice-api/pom.xml new file mode 100644 index 00000000..fb55f0b3 --- /dev/null +++ b/platform-logic/ran-slice-api/pom.xml @@ -0,0 +1,54 @@ + + + 4.0.0 + + + org.onap.ccsdk.distribution + distribution-platform-logic + 1.0.1-SNAPSHOT + + + platform-logic-ranSlice + 1.0.1-SNAPSHOT + pom + + ccsdk-distribution :: platform-logic :: ${project.artifactId} + Contains platform-level service logic for responding to ORAN VES events + + + + + maven-resources-plugin + 2.6 + + + copy-version + + copy-resources + + validate + + ../target/graphs/cMNotifyapi + + + src/main/xml + + *.xml + + true + + + src/main/resources + + graph.versions + + true + + + + + + + + + diff --git a/platform-logic/ran-slice-api/src/main/json/ran-slice-api_activateRANSliceInstance.json b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_activateRANSliceInstance.json new file mode 100644 index 00000000..fca7d12a --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_activateRANSliceInstance.json @@ -0,0 +1,586 @@ +[ + { + "id": "a5d25c75.df911", + "type": "method", + "name": "method", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 128, + "y": 176.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "940794b0.9ca258" + ] + ] + }, + { + "id": "6b98a8.11e82758", + "type": "dgstart", + "name": "DGSTART", + "outputs": 1, + "x": 131, + "y": 26.989585876464844, + "z": "f630c4e8.64d488", + "wires": [ + [ + "cc743ed3.cedd7" + ] + ] + }, + { + "id": "cc743ed3.cedd7", + "type": "service-logic", + "name": "ran-slice-api ${project.version}", + "module": "ran-slice-api", + "version": "${project.version}", + "comments": "", + "xml": "", + "outputs": 1, + "x": 188.99998474121094, + "y": 87.98968124389648, + "z": "f630c4e8.64d488", + "wires": [ + [ + "a5d25c75.df911" + ] + ] + }, + { + "id": "940794b0.9ca258", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 150.48959732055664, + "y": 345.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "d32cd716.eb75f8", + "5a119db3.ce9b34" + ] + ] + }, + { + "id": "d32cd716.eb75f8", + "type": "returnSuccess", + "name": "return success", + "xml": "\n\n\n\n", + "comments": "", + "x": 247.0002670288086, + "y": 575.9897727966309, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "44cfb129.2991e", + "type": "comment", + "name": "activateRANSliceInstance", + "info": "", + "comments": "", + "x": 413, + "y": 20, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5a119db3.ce9b34", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 300.0002975463867, + "y": 155.01043319702148, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "f7ead8d5.6a76d8", + "type": "set", + "name": "set tmp variables for notif input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 770.0010986328125, + "y": 210.88906478881836, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "6e214788.4686f8", + "type": "execute", + "name": "execute Properties", + "xml": "\n \n \n", + "comments": "", + "outputs": 1, + "x": 495.00018310546875, + "y": 176.01041793823242, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "df08b48d.a7c588", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 460.00030517578125, + "y": 230.01049423217773, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "3cf4985f.1d9b68", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 335, + "y": 355.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c8a0e6e.1dd9f18" + ] + ] + }, + { + "id": "c8a0e6e.1dd9f18", + "type": "block", + "name": "block : ConfigDB Update", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 514, + "y": 346.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f7ead8d5.6a76d8", + "30513601.2f1eda" + ] + ] + }, + { + "id": "30513601.2f1eda", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 731, + "y": 320.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "307d8f82.8592a" + ] + ] + }, + { + "id": "c0f7c9f8.98e818", + "type": "set", + "name": "set tmp variables for notif neigbor input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 1129, + "y": 194.9895896911621, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "307d8f82.8592a", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 864, + "y": 268.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c0f7c9f8.98e818", + "fa22a415.571198", + "6f4fe94a.b1ffa8", + "49fbbbb9.e37cd4" + ] + ] + }, + { + "id": "fa22a415.571198", + "type": "execute", + "name": "generate configdb add URL for nbr", + "xml": "\n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 1127, + "y": 240.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "6f4fe94a.b1ffa8", + "type": "record", + "name": "record configdb RestAPI parms", + "xml": "\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 1122, + "y": 289.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "49fbbbb9.e37cd4", + "type": "execute", + "name": "Add neighbor to Cell", + "xml": "\n\n\n\n\n \n\n", + "comments": "", + "outputs": 1, + "x": 1093, + "y": 367.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "e8bd439c.2947", + "780d51b3.1fe4c" + ] + ] + }, + { + "id": "e8bd439c.2947", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1295, + "y": 334.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3e77d15e.509e8e" + ] + ] + }, + { + "id": "780d51b3.1fe4c", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1287.999891281128, + "y": 413.98949909210205, + "z": "f630c4e8.64d488", + "wires": [ + [ + "ec0f9390.bc092" + ] + ] + }, + { + "id": "3e77d15e.509e8e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1455.9998779296875, + "y": 291.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "1a2c5cb9.93d263" + ] + ] + }, + { + "id": "1a2c5cb9.93d263", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1634.999568939209, + "y": 288.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "ec0f9390.bc092", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1445.9996337890625, + "y": 379.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "81cf5fd.7666fa" + ] + ] + }, + { + "id": "81cf5fd.7666fa", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1624.9997024536133, + "y": 378.98954582214355, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "b33ddeae.aa57b", + "type": "execute", + "name": "execute DmaapMsg", + "xml": "\n \n \n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 665.5, + "y": 506.07290267944336, + "z": "f630c4e8.64d488", + "wires": [ + [ + "5682184.0ed98e8", + "116d5ac8.a491a5" + ] + ] + }, + { + "id": "77dfbd9a.85b724", + "type": "set", + "name": "set", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 660.166748046875, + "y": 412.07290267944336, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5682184.0ed98e8", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 861, + "y": 445.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "feddd5d5.b26b48" + ] + ] + }, + { + "id": "116d5ac8.a491a5", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 846.9998779296875, + "y": 579.9895286560059, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f00581ee.7161e" + ] + ] + }, + { + "id": "feddd5d5.b26b48", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1051.9998779296875, + "y": 475.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f9e8e42c.b650c8" + ] + ] + }, + { + "id": "f9e8e42c.b650c8", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1230.999568939209, + "y": 472.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "f00581ee.7161e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1041.9996337890625, + "y": 563.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "2a523c48.546854" + ] + ] + }, + { + "id": "2a523c48.546854", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1220.9997024536133, + "y": 562.9895458221436, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "283ddbe5.abd8f4", + "type": "block", + "name": "block : Publish DMAAP Message", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 416, + "y": 449.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "77dfbd9a.85b724", + "b33ddeae.aa57b" + ] + ] + }, + { + "id": "280fec55.9805a4", + "type": "comment", + "name": "DMAAP Publish Not Reqd. Just a placeholder", + "info": "", + "comments": "", + "x": 380, + "y": 503.98958587646484, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "3d43e8a.fae8d18", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 815.0005493164062, + "y": 42.9896354675293, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "c74a3b00.dbe438", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 484.085693359375, + "y": 115.95317459106445, + "z": "f630c4e8.64d488", + "wires": [ + [ + "898ea471.c49108" + ] + ] + }, + { + "id": "898ea471.c49108", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 636, + "y": 77.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3d43e8a.fae8d18", + "15326088.5383cf" + ] + ] + }, + { + "id": "15326088.5383cf", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 808, + "y": 107.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "6ebb935.a77b76c" + ] + ] + }, + { + "id": "6ebb935.a77b76c", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 959, + "y": 101.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + } +] \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configNotification.json b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configNotification.json new file mode 100644 index 00000000..c8244783 --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configNotification.json @@ -0,0 +1,586 @@ +[ + { + "id": "a5d25c75.df911", + "type": "method", + "name": "method", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 135, + "y": 178.98959350585938, + "z": "f630c4e8.64d488", + "wires": [ + [ + "940794b0.9ca258" + ] + ] + }, + { + "id": "6b98a8.11e82758", + "type": "dgstart", + "name": "DGSTART", + "outputs": 1, + "x": 131, + "y": 26.989585876464844, + "z": "f630c4e8.64d488", + "wires": [ + [ + "cc743ed3.cedd7" + ] + ] + }, + { + "id": "cc743ed3.cedd7", + "type": "service-logic", + "name": "ran-slice-api ${project.version}", + "module": "ran-slice-api", + "version": "${project.version}", + "comments": "", + "xml": "", + "outputs": 1, + "x": 188.99998474121094, + "y": 87.98968124389648, + "z": "f630c4e8.64d488", + "wires": [ + [ + "a5d25c75.df911" + ] + ] + }, + { + "id": "940794b0.9ca258", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 150.48959732055664, + "y": 345.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "d32cd716.eb75f8", + "5a119db3.ce9b34" + ] + ] + }, + { + "id": "d32cd716.eb75f8", + "type": "returnSuccess", + "name": "return success", + "xml": "\n\n\n\n", + "comments": "", + "x": 247.0002670288086, + "y": 575.9897727966309, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "44cfb129.2991e", + "type": "comment", + "name": "configNotification", + "info": "", + "comments": "", + "x": 415, + "y": 21, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5a119db3.ce9b34", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 300.0002975463867, + "y": 155.01043319702148, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "f7ead8d5.6a76d8", + "type": "set", + "name": "set tmp variables for notif input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 770.0010986328125, + "y": 210.88906478881836, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "6e214788.4686f8", + "type": "execute", + "name": "execute Properties", + "xml": "\n \n \n", + "comments": "", + "outputs": 1, + "x": 495.00018310546875, + "y": 176.01041793823242, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "df08b48d.a7c588", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 460.00030517578125, + "y": 230.01049423217773, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "3cf4985f.1d9b68", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 335, + "y": 355.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c8a0e6e.1dd9f18" + ] + ] + }, + { + "id": "c8a0e6e.1dd9f18", + "type": "block", + "name": "block : ConfigDB Update", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 514, + "y": 346.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f7ead8d5.6a76d8", + "30513601.2f1eda" + ] + ] + }, + { + "id": "30513601.2f1eda", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 731, + "y": 320.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "307d8f82.8592a" + ] + ] + }, + { + "id": "c0f7c9f8.98e818", + "type": "set", + "name": "set tmp variables for notif neigbor input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 1129, + "y": 194.9895896911621, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "307d8f82.8592a", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 864, + "y": 268.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c0f7c9f8.98e818", + "fa22a415.571198", + "6f4fe94a.b1ffa8", + "49fbbbb9.e37cd4" + ] + ] + }, + { + "id": "fa22a415.571198", + "type": "execute", + "name": "generate configdb add URL for nbr", + "xml": "\n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 1127, + "y": 240.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "6f4fe94a.b1ffa8", + "type": "record", + "name": "record configdb RestAPI parms", + "xml": "\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 1122, + "y": 289.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "49fbbbb9.e37cd4", + "type": "execute", + "name": "Add neighbor to Cell", + "xml": "\n\n\n\n\n \n\n", + "comments": "", + "outputs": 1, + "x": 1093, + "y": 367.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "e8bd439c.2947", + "780d51b3.1fe4c" + ] + ] + }, + { + "id": "e8bd439c.2947", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1295, + "y": 334.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3e77d15e.509e8e" + ] + ] + }, + { + "id": "780d51b3.1fe4c", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1287.999891281128, + "y": 413.98949909210205, + "z": "f630c4e8.64d488", + "wires": [ + [ + "ec0f9390.bc092" + ] + ] + }, + { + "id": "3e77d15e.509e8e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1455.9998779296875, + "y": 291.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "1a2c5cb9.93d263" + ] + ] + }, + { + "id": "1a2c5cb9.93d263", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1634.999568939209, + "y": 288.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "ec0f9390.bc092", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1445.9996337890625, + "y": 379.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "81cf5fd.7666fa" + ] + ] + }, + { + "id": "81cf5fd.7666fa", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1624.9997024536133, + "y": 378.98954582214355, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "b33ddeae.aa57b", + "type": "execute", + "name": "execute DmaapMsg", + "xml": "\n \n \n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 665.5, + "y": 506.07290267944336, + "z": "f630c4e8.64d488", + "wires": [ + [ + "5682184.0ed98e8", + "116d5ac8.a491a5" + ] + ] + }, + { + "id": "77dfbd9a.85b724", + "type": "set", + "name": "set", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 660.166748046875, + "y": 412.07290267944336, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5682184.0ed98e8", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 861, + "y": 445.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "feddd5d5.b26b48" + ] + ] + }, + { + "id": "116d5ac8.a491a5", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 846.9998779296875, + "y": 579.9895286560059, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f00581ee.7161e" + ] + ] + }, + { + "id": "feddd5d5.b26b48", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1051.9998779296875, + "y": 475.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f9e8e42c.b650c8" + ] + ] + }, + { + "id": "f9e8e42c.b650c8", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1230.999568939209, + "y": 472.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "f00581ee.7161e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1041.9996337890625, + "y": 563.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "2a523c48.546854" + ] + ] + }, + { + "id": "2a523c48.546854", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1220.9997024536133, + "y": 562.9895458221436, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "283ddbe5.abd8f4", + "type": "block", + "name": "block : Publish DMAAP Message", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 416, + "y": 449.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "77dfbd9a.85b724", + "b33ddeae.aa57b" + ] + ] + }, + { + "id": "280fec55.9805a4", + "type": "comment", + "name": "DMAAP Publish Not Reqd. Just a placeholder", + "info": "", + "comments": "", + "x": 380, + "y": 503.98958587646484, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "3d43e8a.fae8d18", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 815.0005493164062, + "y": 42.9896354675293, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "c74a3b00.dbe438", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 484.085693359375, + "y": 115.95317459106445, + "z": "f630c4e8.64d488", + "wires": [ + [ + "898ea471.c49108" + ] + ] + }, + { + "id": "898ea471.c49108", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 636, + "y": 77.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3d43e8a.fae8d18", + "15326088.5383cf" + ] + ] + }, + { + "id": "15326088.5383cf", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 808, + "y": 107.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "6ebb935.a77b76c" + ] + ] + }, + { + "id": "6ebb935.a77b76c", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 959, + "y": 101.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + } +] \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureCU.json b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureCU.json new file mode 100644 index 00000000..d8671426 --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureCU.json @@ -0,0 +1,586 @@ +[ + { + "id": "a5d25c75.df911", + "type": "method", + "name": "method", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 128, + "y": 176.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "940794b0.9ca258" + ] + ] + }, + { + "id": "6b98a8.11e82758", + "type": "dgstart", + "name": "DGSTART", + "outputs": 1, + "x": 131, + "y": 26.989585876464844, + "z": "f630c4e8.64d488", + "wires": [ + [ + "cc743ed3.cedd7" + ] + ] + }, + { + "id": "cc743ed3.cedd7", + "type": "service-logic", + "name": "ran-slice-api ${project.version}", + "module": "ran-slice-api", + "version": "${project.version}", + "comments": "", + "xml": "", + "outputs": 1, + "x": 188.99998474121094, + "y": 87.98968124389648, + "z": "f630c4e8.64d488", + "wires": [ + [ + "a5d25c75.df911" + ] + ] + }, + { + "id": "940794b0.9ca258", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 150.48959732055664, + "y": 345.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "d32cd716.eb75f8", + "5a119db3.ce9b34" + ] + ] + }, + { + "id": "d32cd716.eb75f8", + "type": "returnSuccess", + "name": "return success", + "xml": "\n\n\n\n", + "comments": "", + "x": 247.0002670288086, + "y": 575.9897727966309, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "44cfb129.2991e", + "type": "comment", + "name": "configureCU", + "info": "", + "comments": "", + "x": 413, + "y": 20, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5a119db3.ce9b34", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 300.0002975463867, + "y": 155.01043319702148, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "f7ead8d5.6a76d8", + "type": "set", + "name": "set tmp variables for notif input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 770.0010986328125, + "y": 210.88906478881836, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "6e214788.4686f8", + "type": "execute", + "name": "execute Properties", + "xml": "\n \n \n", + "comments": "", + "outputs": 1, + "x": 495.00018310546875, + "y": 176.01041793823242, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "df08b48d.a7c588", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 460.00030517578125, + "y": 230.01049423217773, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "3cf4985f.1d9b68", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 335, + "y": 355.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c8a0e6e.1dd9f18" + ] + ] + }, + { + "id": "c8a0e6e.1dd9f18", + "type": "block", + "name": "block : ConfigDB Update", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 514, + "y": 346.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f7ead8d5.6a76d8", + "30513601.2f1eda" + ] + ] + }, + { + "id": "30513601.2f1eda", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 731, + "y": 320.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "307d8f82.8592a" + ] + ] + }, + { + "id": "c0f7c9f8.98e818", + "type": "set", + "name": "set tmp variables for notif neigbor input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 1129, + "y": 194.9895896911621, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "307d8f82.8592a", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 864, + "y": 268.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c0f7c9f8.98e818", + "fa22a415.571198", + "6f4fe94a.b1ffa8", + "49fbbbb9.e37cd4" + ] + ] + }, + { + "id": "fa22a415.571198", + "type": "execute", + "name": "generate configdb add URL for nbr", + "xml": "\n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 1127, + "y": 240.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "6f4fe94a.b1ffa8", + "type": "record", + "name": "record configdb RestAPI parms", + "xml": "\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 1122, + "y": 289.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "49fbbbb9.e37cd4", + "type": "execute", + "name": "Add neighbor to Cell", + "xml": "\n\n\n\n\n \n\n", + "comments": "", + "outputs": 1, + "x": 1093, + "y": 367.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "e8bd439c.2947", + "780d51b3.1fe4c" + ] + ] + }, + { + "id": "e8bd439c.2947", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1295, + "y": 334.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3e77d15e.509e8e" + ] + ] + }, + { + "id": "780d51b3.1fe4c", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1287.999891281128, + "y": 413.98949909210205, + "z": "f630c4e8.64d488", + "wires": [ + [ + "ec0f9390.bc092" + ] + ] + }, + { + "id": "3e77d15e.509e8e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1455.9998779296875, + "y": 291.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "1a2c5cb9.93d263" + ] + ] + }, + { + "id": "1a2c5cb9.93d263", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1634.999568939209, + "y": 288.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "ec0f9390.bc092", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1445.9996337890625, + "y": 379.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "81cf5fd.7666fa" + ] + ] + }, + { + "id": "81cf5fd.7666fa", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1624.9997024536133, + "y": 378.98954582214355, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "b33ddeae.aa57b", + "type": "execute", + "name": "execute DmaapMsg", + "xml": "\n \n \n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 665.5, + "y": 506.07290267944336, + "z": "f630c4e8.64d488", + "wires": [ + [ + "5682184.0ed98e8", + "116d5ac8.a491a5" + ] + ] + }, + { + "id": "77dfbd9a.85b724", + "type": "set", + "name": "set", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 660.166748046875, + "y": 412.07290267944336, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5682184.0ed98e8", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 861, + "y": 445.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "feddd5d5.b26b48" + ] + ] + }, + { + "id": "116d5ac8.a491a5", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 846.9998779296875, + "y": 579.9895286560059, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f00581ee.7161e" + ] + ] + }, + { + "id": "feddd5d5.b26b48", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1051.9998779296875, + "y": 475.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f9e8e42c.b650c8" + ] + ] + }, + { + "id": "f9e8e42c.b650c8", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1230.999568939209, + "y": 472.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "f00581ee.7161e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1041.9996337890625, + "y": 563.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "2a523c48.546854" + ] + ] + }, + { + "id": "2a523c48.546854", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1220.9997024536133, + "y": 562.9895458221436, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "283ddbe5.abd8f4", + "type": "block", + "name": "block : Publish DMAAP Message", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 416, + "y": 449.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "77dfbd9a.85b724", + "b33ddeae.aa57b" + ] + ] + }, + { + "id": "280fec55.9805a4", + "type": "comment", + "name": "DMAAP Publish Not Reqd. Just a placeholder", + "info": "", + "comments": "", + "x": 380, + "y": 503.98958587646484, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "3d43e8a.fae8d18", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 815.0005493164062, + "y": 42.9896354675293, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "c74a3b00.dbe438", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 484.085693359375, + "y": 115.95317459106445, + "z": "f630c4e8.64d488", + "wires": [ + [ + "898ea471.c49108" + ] + ] + }, + { + "id": "898ea471.c49108", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 636, + "y": 77.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3d43e8a.fae8d18", + "15326088.5383cf" + ] + ] + }, + { + "id": "15326088.5383cf", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 808, + "y": 107.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "6ebb935.a77b76c" + ] + ] + }, + { + "id": "6ebb935.a77b76c", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 959, + "y": 101.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + } +] \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureDU.json b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureDU.json new file mode 100644 index 00000000..fd7af00b --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureDU.json @@ -0,0 +1,586 @@ +[ + { + "id": "a5d25c75.df911", + "type": "method", + "name": "method", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 128, + "y": 176.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "940794b0.9ca258" + ] + ] + }, + { + "id": "6b98a8.11e82758", + "type": "dgstart", + "name": "DGSTART", + "outputs": 1, + "x": 131, + "y": 26.989585876464844, + "z": "f630c4e8.64d488", + "wires": [ + [ + "cc743ed3.cedd7" + ] + ] + }, + { + "id": "cc743ed3.cedd7", + "type": "service-logic", + "name": "ran-slice-api ${project.version}", + "module": "ran-slice-api", + "version": "${project.version}", + "comments": "", + "xml": "", + "outputs": 1, + "x": 188.99998474121094, + "y": 87.98968124389648, + "z": "f630c4e8.64d488", + "wires": [ + [ + "a5d25c75.df911" + ] + ] + }, + { + "id": "940794b0.9ca258", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 150.48959732055664, + "y": 345.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "d32cd716.eb75f8", + "5a119db3.ce9b34" + ] + ] + }, + { + "id": "d32cd716.eb75f8", + "type": "returnSuccess", + "name": "return success", + "xml": "\n\n\n\n", + "comments": "", + "x": 247.0002670288086, + "y": 575.9897727966309, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "44cfb129.2991e", + "type": "comment", + "name": "configureDU", + "info": "", + "comments": "", + "x": 413, + "y": 20, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5a119db3.ce9b34", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 300.0002975463867, + "y": 155.01043319702148, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "f7ead8d5.6a76d8", + "type": "set", + "name": "set tmp variables for notif input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 770.0010986328125, + "y": 210.88906478881836, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "6e214788.4686f8", + "type": "execute", + "name": "execute Properties", + "xml": "\n \n \n", + "comments": "", + "outputs": 1, + "x": 495.00018310546875, + "y": 176.01041793823242, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "df08b48d.a7c588", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 460.00030517578125, + "y": 230.01049423217773, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "3cf4985f.1d9b68", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 335, + "y": 355.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c8a0e6e.1dd9f18" + ] + ] + }, + { + "id": "c8a0e6e.1dd9f18", + "type": "block", + "name": "block : ConfigDB Update", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 514, + "y": 346.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f7ead8d5.6a76d8", + "30513601.2f1eda" + ] + ] + }, + { + "id": "30513601.2f1eda", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 731, + "y": 320.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "307d8f82.8592a" + ] + ] + }, + { + "id": "c0f7c9f8.98e818", + "type": "set", + "name": "set tmp variables for notif neigbor input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 1129, + "y": 194.9895896911621, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "307d8f82.8592a", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 864, + "y": 268.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c0f7c9f8.98e818", + "fa22a415.571198", + "6f4fe94a.b1ffa8", + "49fbbbb9.e37cd4" + ] + ] + }, + { + "id": "fa22a415.571198", + "type": "execute", + "name": "generate configdb add URL for nbr", + "xml": "\n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 1127, + "y": 240.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "6f4fe94a.b1ffa8", + "type": "record", + "name": "record configdb RestAPI parms", + "xml": "\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 1122, + "y": 289.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "49fbbbb9.e37cd4", + "type": "execute", + "name": "Add neighbor to Cell", + "xml": "\n\n\n\n\n \n\n", + "comments": "", + "outputs": 1, + "x": 1093, + "y": 367.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "e8bd439c.2947", + "780d51b3.1fe4c" + ] + ] + }, + { + "id": "e8bd439c.2947", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1295, + "y": 334.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3e77d15e.509e8e" + ] + ] + }, + { + "id": "780d51b3.1fe4c", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1287.999891281128, + "y": 413.98949909210205, + "z": "f630c4e8.64d488", + "wires": [ + [ + "ec0f9390.bc092" + ] + ] + }, + { + "id": "3e77d15e.509e8e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1455.9998779296875, + "y": 291.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "1a2c5cb9.93d263" + ] + ] + }, + { + "id": "1a2c5cb9.93d263", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1634.999568939209, + "y": 288.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "ec0f9390.bc092", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1445.9996337890625, + "y": 379.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "81cf5fd.7666fa" + ] + ] + }, + { + "id": "81cf5fd.7666fa", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1624.9997024536133, + "y": 378.98954582214355, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "b33ddeae.aa57b", + "type": "execute", + "name": "execute DmaapMsg", + "xml": "\n \n \n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 665.5, + "y": 506.07290267944336, + "z": "f630c4e8.64d488", + "wires": [ + [ + "5682184.0ed98e8", + "116d5ac8.a491a5" + ] + ] + }, + { + "id": "77dfbd9a.85b724", + "type": "set", + "name": "set", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 660.166748046875, + "y": 412.07290267944336, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5682184.0ed98e8", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 861, + "y": 445.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "feddd5d5.b26b48" + ] + ] + }, + { + "id": "116d5ac8.a491a5", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 846.9998779296875, + "y": 579.9895286560059, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f00581ee.7161e" + ] + ] + }, + { + "id": "feddd5d5.b26b48", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1051.9998779296875, + "y": 475.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f9e8e42c.b650c8" + ] + ] + }, + { + "id": "f9e8e42c.b650c8", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1230.999568939209, + "y": 472.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "f00581ee.7161e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1041.9996337890625, + "y": 563.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "2a523c48.546854" + ] + ] + }, + { + "id": "2a523c48.546854", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1220.9997024536133, + "y": 562.9895458221436, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "283ddbe5.abd8f4", + "type": "block", + "name": "block : Publish DMAAP Message", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 416, + "y": 449.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "77dfbd9a.85b724", + "b33ddeae.aa57b" + ] + ] + }, + { + "id": "280fec55.9805a4", + "type": "comment", + "name": "DMAAP Publish Not Reqd. Just a placeholder", + "info": "", + "comments": "", + "x": 380, + "y": 503.98958587646484, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "3d43e8a.fae8d18", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 815.0005493164062, + "y": 42.9896354675293, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "c74a3b00.dbe438", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 484.085693359375, + "y": 115.95317459106445, + "z": "f630c4e8.64d488", + "wires": [ + [ + "898ea471.c49108" + ] + ] + }, + { + "id": "898ea471.c49108", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 636, + "y": 77.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3d43e8a.fae8d18", + "15326088.5383cf" + ] + ] + }, + { + "id": "15326088.5383cf", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 808, + "y": 107.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "6ebb935.a77b76c" + ] + ] + }, + { + "id": "6ebb935.a77b76c", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 959, + "y": 101.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + } +] \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureNearRTRIC.json b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureNearRTRIC.json new file mode 100644 index 00000000..d2fce025 --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureNearRTRIC.json @@ -0,0 +1,586 @@ +[ + { + "id": "a5d25c75.df911", + "type": "method", + "name": "method", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 128, + "y": 176.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "940794b0.9ca258" + ] + ] + }, + { + "id": "6b98a8.11e82758", + "type": "dgstart", + "name": "DGSTART", + "outputs": 1, + "x": 131, + "y": 26.989585876464844, + "z": "f630c4e8.64d488", + "wires": [ + [ + "cc743ed3.cedd7" + ] + ] + }, + { + "id": "cc743ed3.cedd7", + "type": "service-logic", + "name": "ran-slice-api ${project.version}", + "module": "ran-slice-api", + "version": "${project.version}", + "comments": "", + "xml": "", + "outputs": 1, + "x": 188.99998474121094, + "y": 87.98968124389648, + "z": "f630c4e8.64d488", + "wires": [ + [ + "a5d25c75.df911" + ] + ] + }, + { + "id": "940794b0.9ca258", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 150.48959732055664, + "y": 345.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "d32cd716.eb75f8", + "5a119db3.ce9b34" + ] + ] + }, + { + "id": "d32cd716.eb75f8", + "type": "returnSuccess", + "name": "return success", + "xml": "\n\n\n\n", + "comments": "", + "x": 247.0002670288086, + "y": 575.9897727966309, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "44cfb129.2991e", + "type": "comment", + "name": "configureNearRTRIC", + "info": "", + "comments": "", + "x": 413, + "y": 20, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5a119db3.ce9b34", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 300.0002975463867, + "y": 155.01043319702148, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "f7ead8d5.6a76d8", + "type": "set", + "name": "set tmp variables for notif input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 770.0010986328125, + "y": 210.88906478881836, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "6e214788.4686f8", + "type": "execute", + "name": "execute Properties", + "xml": "\n \n \n", + "comments": "", + "outputs": 1, + "x": 495.00018310546875, + "y": 176.01041793823242, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "df08b48d.a7c588", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 460.00030517578125, + "y": 230.01049423217773, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "3cf4985f.1d9b68", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 335, + "y": 355.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c8a0e6e.1dd9f18" + ] + ] + }, + { + "id": "c8a0e6e.1dd9f18", + "type": "block", + "name": "block : ConfigDB Update", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 514, + "y": 346.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f7ead8d5.6a76d8", + "30513601.2f1eda" + ] + ] + }, + { + "id": "30513601.2f1eda", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 731, + "y": 320.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "307d8f82.8592a" + ] + ] + }, + { + "id": "c0f7c9f8.98e818", + "type": "set", + "name": "set tmp variables for notif neigbor input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 1129, + "y": 194.9895896911621, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "307d8f82.8592a", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 864, + "y": 268.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c0f7c9f8.98e818", + "fa22a415.571198", + "6f4fe94a.b1ffa8", + "49fbbbb9.e37cd4" + ] + ] + }, + { + "id": "fa22a415.571198", + "type": "execute", + "name": "generate configdb add URL for nbr", + "xml": "\n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 1127, + "y": 240.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "6f4fe94a.b1ffa8", + "type": "record", + "name": "record configdb RestAPI parms", + "xml": "\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 1122, + "y": 289.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "49fbbbb9.e37cd4", + "type": "execute", + "name": "Add neighbor to Cell", + "xml": "\n\n\n\n\n \n\n", + "comments": "", + "outputs": 1, + "x": 1093, + "y": 367.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "e8bd439c.2947", + "780d51b3.1fe4c" + ] + ] + }, + { + "id": "e8bd439c.2947", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1295, + "y": 334.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3e77d15e.509e8e" + ] + ] + }, + { + "id": "780d51b3.1fe4c", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1287.999891281128, + "y": 413.98949909210205, + "z": "f630c4e8.64d488", + "wires": [ + [ + "ec0f9390.bc092" + ] + ] + }, + { + "id": "3e77d15e.509e8e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1455.9998779296875, + "y": 291.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "1a2c5cb9.93d263" + ] + ] + }, + { + "id": "1a2c5cb9.93d263", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1634.999568939209, + "y": 288.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "ec0f9390.bc092", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1445.9996337890625, + "y": 379.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "81cf5fd.7666fa" + ] + ] + }, + { + "id": "81cf5fd.7666fa", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1624.9997024536133, + "y": 378.98954582214355, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "b33ddeae.aa57b", + "type": "execute", + "name": "execute DmaapMsg", + "xml": "\n \n \n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 665.5, + "y": 506.07290267944336, + "z": "f630c4e8.64d488", + "wires": [ + [ + "5682184.0ed98e8", + "116d5ac8.a491a5" + ] + ] + }, + { + "id": "77dfbd9a.85b724", + "type": "set", + "name": "set", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 660.166748046875, + "y": 412.07290267944336, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5682184.0ed98e8", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 861, + "y": 445.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "feddd5d5.b26b48" + ] + ] + }, + { + "id": "116d5ac8.a491a5", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 846.9998779296875, + "y": 579.9895286560059, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f00581ee.7161e" + ] + ] + }, + { + "id": "feddd5d5.b26b48", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1051.9998779296875, + "y": 475.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f9e8e42c.b650c8" + ] + ] + }, + { + "id": "f9e8e42c.b650c8", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1230.999568939209, + "y": 472.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "f00581ee.7161e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1041.9996337890625, + "y": 563.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "2a523c48.546854" + ] + ] + }, + { + "id": "2a523c48.546854", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1220.9997024536133, + "y": 562.9895458221436, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "283ddbe5.abd8f4", + "type": "block", + "name": "block : Publish DMAAP Message", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 416, + "y": 449.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "77dfbd9a.85b724", + "b33ddeae.aa57b" + ] + ] + }, + { + "id": "280fec55.9805a4", + "type": "comment", + "name": "DMAAP Publish Not Reqd. Just a placeholder", + "info": "", + "comments": "", + "x": 380, + "y": 503.98958587646484, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "3d43e8a.fae8d18", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 815.0005493164062, + "y": 42.9896354675293, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "c74a3b00.dbe438", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 484.085693359375, + "y": 115.95317459106445, + "z": "f630c4e8.64d488", + "wires": [ + [ + "898ea471.c49108" + ] + ] + }, + { + "id": "898ea471.c49108", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 636, + "y": 77.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3d43e8a.fae8d18", + "15326088.5383cf" + ] + ] + }, + { + "id": "15326088.5383cf", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 808, + "y": 107.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "6ebb935.a77b76c" + ] + ] + }, + { + "id": "6ebb935.a77b76c", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 959, + "y": 101.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + } +] \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureRANSliceInstance.json b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureRANSliceInstance.json new file mode 100644 index 00000000..6197bc89 --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_configureRANSliceInstance.json @@ -0,0 +1,586 @@ +[ + { + "id": "a5d25c75.df911", + "type": "method", + "name": "method", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 128, + "y": 176.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "940794b0.9ca258" + ] + ] + }, + { + "id": "6b98a8.11e82758", + "type": "dgstart", + "name": "DGSTART", + "outputs": 1, + "x": 131, + "y": 26.989585876464844, + "z": "f630c4e8.64d488", + "wires": [ + [ + "cc743ed3.cedd7" + ] + ] + }, + { + "id": "cc743ed3.cedd7", + "type": "service-logic", + "name": "ran-slice-api ${project.version}", + "module": "ran-slice-api", + "version": "${project.version}", + "comments": "", + "xml": "", + "outputs": 1, + "x": 188.99998474121094, + "y": 87.98968124389648, + "z": "f630c4e8.64d488", + "wires": [ + [ + "a5d25c75.df911" + ] + ] + }, + { + "id": "940794b0.9ca258", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 150.48959732055664, + "y": 345.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "d32cd716.eb75f8", + "5a119db3.ce9b34" + ] + ] + }, + { + "id": "d32cd716.eb75f8", + "type": "returnSuccess", + "name": "return success", + "xml": "\n\n\n\n", + "comments": "", + "x": 247.0002670288086, + "y": 575.9897727966309, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "44cfb129.2991e", + "type": "comment", + "name": "configureRANSliceInstance", + "info": "", + "comments": "", + "x": 413, + "y": 20, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5a119db3.ce9b34", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 300.0002975463867, + "y": 155.01043319702148, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "f7ead8d5.6a76d8", + "type": "set", + "name": "set tmp variables for notif input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 770.0010986328125, + "y": 210.88906478881836, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "6e214788.4686f8", + "type": "execute", + "name": "execute Properties", + "xml": "\n \n \n", + "comments": "", + "outputs": 1, + "x": 495.00018310546875, + "y": 176.01041793823242, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "df08b48d.a7c588", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 460.00030517578125, + "y": 230.01049423217773, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "3cf4985f.1d9b68", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 335, + "y": 355.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c8a0e6e.1dd9f18" + ] + ] + }, + { + "id": "c8a0e6e.1dd9f18", + "type": "block", + "name": "block : ConfigDB Update", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 514, + "y": 346.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f7ead8d5.6a76d8", + "30513601.2f1eda" + ] + ] + }, + { + "id": "30513601.2f1eda", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 731, + "y": 320.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "307d8f82.8592a" + ] + ] + }, + { + "id": "c0f7c9f8.98e818", + "type": "set", + "name": "set tmp variables for notif neigbor input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 1129, + "y": 194.9895896911621, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "307d8f82.8592a", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 864, + "y": 268.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c0f7c9f8.98e818", + "fa22a415.571198", + "6f4fe94a.b1ffa8", + "49fbbbb9.e37cd4" + ] + ] + }, + { + "id": "fa22a415.571198", + "type": "execute", + "name": "generate configdb add URL for nbr", + "xml": "\n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 1127, + "y": 240.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "6f4fe94a.b1ffa8", + "type": "record", + "name": "record configdb RestAPI parms", + "xml": "\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 1122, + "y": 289.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "49fbbbb9.e37cd4", + "type": "execute", + "name": "Add neighbor to Cell", + "xml": "\n\n\n\n\n \n\n", + "comments": "", + "outputs": 1, + "x": 1093, + "y": 367.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "e8bd439c.2947", + "780d51b3.1fe4c" + ] + ] + }, + { + "id": "e8bd439c.2947", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1295, + "y": 334.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3e77d15e.509e8e" + ] + ] + }, + { + "id": "780d51b3.1fe4c", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1287.999891281128, + "y": 413.98949909210205, + "z": "f630c4e8.64d488", + "wires": [ + [ + "ec0f9390.bc092" + ] + ] + }, + { + "id": "3e77d15e.509e8e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1455.9998779296875, + "y": 291.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "1a2c5cb9.93d263" + ] + ] + }, + { + "id": "1a2c5cb9.93d263", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1634.999568939209, + "y": 288.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "ec0f9390.bc092", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1445.9996337890625, + "y": 379.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "81cf5fd.7666fa" + ] + ] + }, + { + "id": "81cf5fd.7666fa", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1624.9997024536133, + "y": 378.98954582214355, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "b33ddeae.aa57b", + "type": "execute", + "name": "execute DmaapMsg", + "xml": "\n \n \n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 665.5, + "y": 506.07290267944336, + "z": "f630c4e8.64d488", + "wires": [ + [ + "5682184.0ed98e8", + "116d5ac8.a491a5" + ] + ] + }, + { + "id": "77dfbd9a.85b724", + "type": "set", + "name": "set", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 660.166748046875, + "y": 412.07290267944336, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5682184.0ed98e8", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 861, + "y": 445.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "feddd5d5.b26b48" + ] + ] + }, + { + "id": "116d5ac8.a491a5", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 846.9998779296875, + "y": 579.9895286560059, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f00581ee.7161e" + ] + ] + }, + { + "id": "feddd5d5.b26b48", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1051.9998779296875, + "y": 475.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f9e8e42c.b650c8" + ] + ] + }, + { + "id": "f9e8e42c.b650c8", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1230.999568939209, + "y": 472.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "f00581ee.7161e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1041.9996337890625, + "y": 563.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "2a523c48.546854" + ] + ] + }, + { + "id": "2a523c48.546854", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1220.9997024536133, + "y": 562.9895458221436, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "283ddbe5.abd8f4", + "type": "block", + "name": "block : Publish DMAAP Message", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 416, + "y": 449.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "77dfbd9a.85b724", + "b33ddeae.aa57b" + ] + ] + }, + { + "id": "280fec55.9805a4", + "type": "comment", + "name": "DMAAP Publish Not Reqd. Just a placeholder", + "info": "", + "comments": "", + "x": 380, + "y": 503.98958587646484, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "3d43e8a.fae8d18", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 815.0005493164062, + "y": 42.9896354675293, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "c74a3b00.dbe438", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 484.085693359375, + "y": 115.95317459106445, + "z": "f630c4e8.64d488", + "wires": [ + [ + "898ea471.c49108" + ] + ] + }, + { + "id": "898ea471.c49108", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 636, + "y": 77.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3d43e8a.fae8d18", + "15326088.5383cf" + ] + ] + }, + { + "id": "15326088.5383cf", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 808, + "y": 107.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "6ebb935.a77b76c" + ] + ] + }, + { + "id": "6ebb935.a77b76c", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 959, + "y": 101.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + } +] \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/json/ran-slice-api_deactivateRANSliceInstance.json b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_deactivateRANSliceInstance.json new file mode 100644 index 00000000..bd824240 --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_deactivateRANSliceInstance.json @@ -0,0 +1,586 @@ +[ + { + "id": "a5d25c75.df911", + "type": "method", + "name": "method", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 128, + "y": 176.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "940794b0.9ca258" + ] + ] + }, + { + "id": "6b98a8.11e82758", + "type": "dgstart", + "name": "DGSTART", + "outputs": 1, + "x": 131, + "y": 26.989585876464844, + "z": "f630c4e8.64d488", + "wires": [ + [ + "cc743ed3.cedd7" + ] + ] + }, + { + "id": "cc743ed3.cedd7", + "type": "service-logic", + "name": "ran-slice-api ${project.version}", + "module": "ran-slice-api", + "version": "${project.version}", + "comments": "", + "xml": "", + "outputs": 1, + "x": 188.99998474121094, + "y": 87.98968124389648, + "z": "f630c4e8.64d488", + "wires": [ + [ + "a5d25c75.df911" + ] + ] + }, + { + "id": "940794b0.9ca258", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 150.48959732055664, + "y": 345.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "d32cd716.eb75f8", + "5a119db3.ce9b34" + ] + ] + }, + { + "id": "d32cd716.eb75f8", + "type": "returnSuccess", + "name": "return success", + "xml": "\n\n\n\n", + "comments": "", + "x": 247.0002670288086, + "y": 575.9897727966309, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "44cfb129.2991e", + "type": "comment", + "name": "deactivateRANSliceInstance", + "info": "", + "comments": "", + "x": 413, + "y": 20, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5a119db3.ce9b34", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 300.0002975463867, + "y": 155.01043319702148, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "f7ead8d5.6a76d8", + "type": "set", + "name": "set tmp variables for notif input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 770.0010986328125, + "y": 210.88906478881836, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "6e214788.4686f8", + "type": "execute", + "name": "execute Properties", + "xml": "\n \n \n", + "comments": "", + "outputs": 1, + "x": 495.00018310546875, + "y": 176.01041793823242, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "df08b48d.a7c588", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 460.00030517578125, + "y": 230.01049423217773, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "3cf4985f.1d9b68", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 335, + "y": 355.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c8a0e6e.1dd9f18" + ] + ] + }, + { + "id": "c8a0e6e.1dd9f18", + "type": "block", + "name": "block : ConfigDB Update", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 514, + "y": 346.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f7ead8d5.6a76d8", + "30513601.2f1eda" + ] + ] + }, + { + "id": "30513601.2f1eda", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 731, + "y": 320.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "307d8f82.8592a" + ] + ] + }, + { + "id": "c0f7c9f8.98e818", + "type": "set", + "name": "set tmp variables for notif neigbor input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 1129, + "y": 194.9895896911621, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "307d8f82.8592a", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 864, + "y": 268.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c0f7c9f8.98e818", + "fa22a415.571198", + "6f4fe94a.b1ffa8", + "49fbbbb9.e37cd4" + ] + ] + }, + { + "id": "fa22a415.571198", + "type": "execute", + "name": "generate configdb add URL for nbr", + "xml": "\n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 1127, + "y": 240.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "6f4fe94a.b1ffa8", + "type": "record", + "name": "record configdb RestAPI parms", + "xml": "\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 1122, + "y": 289.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "49fbbbb9.e37cd4", + "type": "execute", + "name": "Add neighbor to Cell", + "xml": "\n\n\n\n\n \n\n", + "comments": "", + "outputs": 1, + "x": 1093, + "y": 367.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "e8bd439c.2947", + "780d51b3.1fe4c" + ] + ] + }, + { + "id": "e8bd439c.2947", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1295, + "y": 334.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3e77d15e.509e8e" + ] + ] + }, + { + "id": "780d51b3.1fe4c", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1287.999891281128, + "y": 413.98949909210205, + "z": "f630c4e8.64d488", + "wires": [ + [ + "ec0f9390.bc092" + ] + ] + }, + { + "id": "3e77d15e.509e8e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1455.9998779296875, + "y": 291.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "1a2c5cb9.93d263" + ] + ] + }, + { + "id": "1a2c5cb9.93d263", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1634.999568939209, + "y": 288.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "ec0f9390.bc092", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1445.9996337890625, + "y": 379.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "81cf5fd.7666fa" + ] + ] + }, + { + "id": "81cf5fd.7666fa", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1624.9997024536133, + "y": 378.98954582214355, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "b33ddeae.aa57b", + "type": "execute", + "name": "execute DmaapMsg", + "xml": "\n \n \n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 665.5, + "y": 506.07290267944336, + "z": "f630c4e8.64d488", + "wires": [ + [ + "5682184.0ed98e8", + "116d5ac8.a491a5" + ] + ] + }, + { + "id": "77dfbd9a.85b724", + "type": "set", + "name": "set", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 660.166748046875, + "y": 412.07290267944336, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5682184.0ed98e8", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 861, + "y": 445.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "feddd5d5.b26b48" + ] + ] + }, + { + "id": "116d5ac8.a491a5", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 846.9998779296875, + "y": 579.9895286560059, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f00581ee.7161e" + ] + ] + }, + { + "id": "feddd5d5.b26b48", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1051.9998779296875, + "y": 475.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f9e8e42c.b650c8" + ] + ] + }, + { + "id": "f9e8e42c.b650c8", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1230.999568939209, + "y": 472.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "f00581ee.7161e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1041.9996337890625, + "y": 563.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "2a523c48.546854" + ] + ] + }, + { + "id": "2a523c48.546854", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1220.9997024536133, + "y": 562.9895458221436, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "283ddbe5.abd8f4", + "type": "block", + "name": "block : Publish DMAAP Message", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 416, + "y": 449.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "77dfbd9a.85b724", + "b33ddeae.aa57b" + ] + ] + }, + { + "id": "280fec55.9805a4", + "type": "comment", + "name": "DMAAP Publish Not Reqd. Just a placeholder", + "info": "", + "comments": "", + "x": 380, + "y": 503.98958587646484, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "3d43e8a.fae8d18", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 815.0005493164062, + "y": 42.9896354675293, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "c74a3b00.dbe438", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 484.085693359375, + "y": 115.95317459106445, + "z": "f630c4e8.64d488", + "wires": [ + [ + "898ea471.c49108" + ] + ] + }, + { + "id": "898ea471.c49108", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 636, + "y": 77.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3d43e8a.fae8d18", + "15326088.5383cf" + ] + ] + }, + { + "id": "15326088.5383cf", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 808, + "y": 107.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "6ebb935.a77b76c" + ] + ] + }, + { + "id": "6ebb935.a77b76c", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 959, + "y": 101.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + } +] \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/json/ran-slice-api_determineRANSliceResources.json b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_determineRANSliceResources.json new file mode 100644 index 00000000..b8eee3fe --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_determineRANSliceResources.json @@ -0,0 +1,586 @@ +[ + { + "id": "a5d25c75.df911", + "type": "method", + "name": "method", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 135, + "y": 178.98959350585938, + "z": "f630c4e8.64d488", + "wires": [ + [ + "940794b0.9ca258" + ] + ] + }, + { + "id": "6b98a8.11e82758", + "type": "dgstart", + "name": "DGSTART", + "outputs": 1, + "x": 131, + "y": 26.989585876464844, + "z": "f630c4e8.64d488", + "wires": [ + [ + "cc743ed3.cedd7" + ] + ] + }, + { + "id": "cc743ed3.cedd7", + "type": "service-logic", + "name": "ran-slice-api ${project.version}", + "module": "ran-slice-api", + "version": "${project.version}", + "comments": "", + "xml": "", + "outputs": 1, + "x": 188.99998474121094, + "y": 87.98968124389648, + "z": "f630c4e8.64d488", + "wires": [ + [ + "a5d25c75.df911" + ] + ] + }, + { + "id": "940794b0.9ca258", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 150.48959732055664, + "y": 345.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "d32cd716.eb75f8", + "5a119db3.ce9b34" + ] + ] + }, + { + "id": "d32cd716.eb75f8", + "type": "returnSuccess", + "name": "return success", + "xml": "\n\n\n\n", + "comments": "", + "x": 247.0002670288086, + "y": 575.9897727966309, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "44cfb129.2991e", + "type": "comment", + "name": "determineRANSliceResources", + "info": "", + "comments": "", + "x": 415, + "y": 21, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5a119db3.ce9b34", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 300.0002975463867, + "y": 155.01043319702148, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "f7ead8d5.6a76d8", + "type": "set", + "name": "set tmp variables for notif input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 770.0010986328125, + "y": 210.88906478881836, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "6e214788.4686f8", + "type": "execute", + "name": "execute Properties", + "xml": "\n \n \n", + "comments": "", + "outputs": 1, + "x": 495.00018310546875, + "y": 176.01041793823242, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "df08b48d.a7c588", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 460.00030517578125, + "y": 230.01049423217773, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "3cf4985f.1d9b68", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 335, + "y": 355.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c8a0e6e.1dd9f18" + ] + ] + }, + { + "id": "c8a0e6e.1dd9f18", + "type": "block", + "name": "block : ConfigDB Update", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 514, + "y": 346.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f7ead8d5.6a76d8", + "30513601.2f1eda" + ] + ] + }, + { + "id": "30513601.2f1eda", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 731, + "y": 320.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "307d8f82.8592a" + ] + ] + }, + { + "id": "c0f7c9f8.98e818", + "type": "set", + "name": "set tmp variables for notif neigbor input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 1129, + "y": 194.9895896911621, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "307d8f82.8592a", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 864, + "y": 268.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c0f7c9f8.98e818", + "fa22a415.571198", + "6f4fe94a.b1ffa8", + "49fbbbb9.e37cd4" + ] + ] + }, + { + "id": "fa22a415.571198", + "type": "execute", + "name": "generate configdb add URL for nbr", + "xml": "\n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 1127, + "y": 240.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "6f4fe94a.b1ffa8", + "type": "record", + "name": "record configdb RestAPI parms", + "xml": "\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 1122, + "y": 289.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "49fbbbb9.e37cd4", + "type": "execute", + "name": "Add neighbor to Cell", + "xml": "\n\n\n\n\n \n\n", + "comments": "", + "outputs": 1, + "x": 1093, + "y": 367.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "e8bd439c.2947", + "780d51b3.1fe4c" + ] + ] + }, + { + "id": "e8bd439c.2947", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1295, + "y": 334.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3e77d15e.509e8e" + ] + ] + }, + { + "id": "780d51b3.1fe4c", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1287.999891281128, + "y": 413.98949909210205, + "z": "f630c4e8.64d488", + "wires": [ + [ + "ec0f9390.bc092" + ] + ] + }, + { + "id": "3e77d15e.509e8e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1455.9998779296875, + "y": 291.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "1a2c5cb9.93d263" + ] + ] + }, + { + "id": "1a2c5cb9.93d263", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1634.999568939209, + "y": 288.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "ec0f9390.bc092", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1445.9996337890625, + "y": 379.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "81cf5fd.7666fa" + ] + ] + }, + { + "id": "81cf5fd.7666fa", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1624.9997024536133, + "y": 378.98954582214355, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "b33ddeae.aa57b", + "type": "execute", + "name": "execute DmaapMsg", + "xml": "\n \n \n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 665.5, + "y": 506.07290267944336, + "z": "f630c4e8.64d488", + "wires": [ + [ + "5682184.0ed98e8", + "116d5ac8.a491a5" + ] + ] + }, + { + "id": "77dfbd9a.85b724", + "type": "set", + "name": "set", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 660.166748046875, + "y": 412.07290267944336, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5682184.0ed98e8", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 861, + "y": 445.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "feddd5d5.b26b48" + ] + ] + }, + { + "id": "116d5ac8.a491a5", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 846.9998779296875, + "y": 579.9895286560059, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f00581ee.7161e" + ] + ] + }, + { + "id": "feddd5d5.b26b48", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1051.9998779296875, + "y": 475.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f9e8e42c.b650c8" + ] + ] + }, + { + "id": "f9e8e42c.b650c8", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1230.999568939209, + "y": 472.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "f00581ee.7161e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1041.9996337890625, + "y": 563.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "2a523c48.546854" + ] + ] + }, + { + "id": "2a523c48.546854", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1220.9997024536133, + "y": 562.9895458221436, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "283ddbe5.abd8f4", + "type": "block", + "name": "block : Publish DMAAP Message", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 416, + "y": 449.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "77dfbd9a.85b724", + "b33ddeae.aa57b" + ] + ] + }, + { + "id": "280fec55.9805a4", + "type": "comment", + "name": "DMAAP Publish Not Reqd. Just a placeholder", + "info": "", + "comments": "", + "x": 380, + "y": 503.98958587646484, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "3d43e8a.fae8d18", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 815.0005493164062, + "y": 42.9896354675293, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "c74a3b00.dbe438", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 484.085693359375, + "y": 115.95317459106445, + "z": "f630c4e8.64d488", + "wires": [ + [ + "898ea471.c49108" + ] + ] + }, + { + "id": "898ea471.c49108", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 636, + "y": 77.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3d43e8a.fae8d18", + "15326088.5383cf" + ] + ] + }, + { + "id": "15326088.5383cf", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 808, + "y": 107.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "6ebb935.a77b76c" + ] + ] + }, + { + "id": "6ebb935.a77b76c", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 959, + "y": 101.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + } +] \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/json/ran-slice-api_instantiateRANSlice.json b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_instantiateRANSlice.json new file mode 100644 index 00000000..dde223fb --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_instantiateRANSlice.json @@ -0,0 +1,586 @@ +[ + { + "id": "a5d25c75.df911", + "type": "method", + "name": "method", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 128, + "y": 176.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "940794b0.9ca258" + ] + ] + }, + { + "id": "6b98a8.11e82758", + "type": "dgstart", + "name": "DGSTART", + "outputs": 1, + "x": 131, + "y": 26.989585876464844, + "z": "f630c4e8.64d488", + "wires": [ + [ + "cc743ed3.cedd7" + ] + ] + }, + { + "id": "cc743ed3.cedd7", + "type": "service-logic", + "name": "ran-slice-api ${project.version}", + "module": "ran-slice-api", + "version": "${project.version}", + "comments": "", + "xml": "", + "outputs": 1, + "x": 188.99998474121094, + "y": 87.98968124389648, + "z": "f630c4e8.64d488", + "wires": [ + [ + "a5d25c75.df911" + ] + ] + }, + { + "id": "940794b0.9ca258", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 150.48959732055664, + "y": 345.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "d32cd716.eb75f8", + "5a119db3.ce9b34" + ] + ] + }, + { + "id": "d32cd716.eb75f8", + "type": "returnSuccess", + "name": "return success", + "xml": "\n\n\n\n", + "comments": "", + "x": 247.0002670288086, + "y": 575.9897727966309, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "44cfb129.2991e", + "type": "comment", + "name": "instantiateRANSlice", + "info": "", + "comments": "", + "x": 413, + "y": 20, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5a119db3.ce9b34", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 300.0002975463867, + "y": 155.01043319702148, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "f7ead8d5.6a76d8", + "type": "set", + "name": "set tmp variables for notif input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 770.0010986328125, + "y": 210.88906478881836, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "6e214788.4686f8", + "type": "execute", + "name": "execute Properties", + "xml": "\n \n \n", + "comments": "", + "outputs": 1, + "x": 495.00018310546875, + "y": 176.01041793823242, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "df08b48d.a7c588", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 460.00030517578125, + "y": 230.01049423217773, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "3cf4985f.1d9b68", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 335, + "y": 355.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c8a0e6e.1dd9f18" + ] + ] + }, + { + "id": "c8a0e6e.1dd9f18", + "type": "block", + "name": "block : ConfigDB Update", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 514, + "y": 346.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f7ead8d5.6a76d8", + "30513601.2f1eda" + ] + ] + }, + { + "id": "30513601.2f1eda", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 731, + "y": 320.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "307d8f82.8592a" + ] + ] + }, + { + "id": "c0f7c9f8.98e818", + "type": "set", + "name": "set tmp variables for notif neigbor input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 1129, + "y": 194.9895896911621, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "307d8f82.8592a", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 864, + "y": 268.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c0f7c9f8.98e818", + "fa22a415.571198", + "6f4fe94a.b1ffa8", + "49fbbbb9.e37cd4" + ] + ] + }, + { + "id": "fa22a415.571198", + "type": "execute", + "name": "generate configdb add URL for nbr", + "xml": "\n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 1127, + "y": 240.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "6f4fe94a.b1ffa8", + "type": "record", + "name": "record configdb RestAPI parms", + "xml": "\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 1122, + "y": 289.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "49fbbbb9.e37cd4", + "type": "execute", + "name": "Add neighbor to Cell", + "xml": "\n\n\n\n\n \n\n", + "comments": "", + "outputs": 1, + "x": 1093, + "y": 367.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "e8bd439c.2947", + "780d51b3.1fe4c" + ] + ] + }, + { + "id": "e8bd439c.2947", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1295, + "y": 334.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3e77d15e.509e8e" + ] + ] + }, + { + "id": "780d51b3.1fe4c", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1287.999891281128, + "y": 413.98949909210205, + "z": "f630c4e8.64d488", + "wires": [ + [ + "ec0f9390.bc092" + ] + ] + }, + { + "id": "3e77d15e.509e8e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1455.9998779296875, + "y": 291.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "1a2c5cb9.93d263" + ] + ] + }, + { + "id": "1a2c5cb9.93d263", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1634.999568939209, + "y": 288.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "ec0f9390.bc092", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1445.9996337890625, + "y": 379.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "81cf5fd.7666fa" + ] + ] + }, + { + "id": "81cf5fd.7666fa", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1624.9997024536133, + "y": 378.98954582214355, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "b33ddeae.aa57b", + "type": "execute", + "name": "execute DmaapMsg", + "xml": "\n \n \n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 665.5, + "y": 506.07290267944336, + "z": "f630c4e8.64d488", + "wires": [ + [ + "5682184.0ed98e8", + "116d5ac8.a491a5" + ] + ] + }, + { + "id": "77dfbd9a.85b724", + "type": "set", + "name": "set", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 660.166748046875, + "y": 412.07290267944336, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5682184.0ed98e8", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 861, + "y": 445.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "feddd5d5.b26b48" + ] + ] + }, + { + "id": "116d5ac8.a491a5", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 846.9998779296875, + "y": 579.9895286560059, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f00581ee.7161e" + ] + ] + }, + { + "id": "feddd5d5.b26b48", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1051.9998779296875, + "y": 475.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f9e8e42c.b650c8" + ] + ] + }, + { + "id": "f9e8e42c.b650c8", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1230.999568939209, + "y": 472.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "f00581ee.7161e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1041.9996337890625, + "y": 563.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "2a523c48.546854" + ] + ] + }, + { + "id": "2a523c48.546854", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1220.9997024536133, + "y": 562.9895458221436, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "283ddbe5.abd8f4", + "type": "block", + "name": "block : Publish DMAAP Message", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 416, + "y": 449.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "77dfbd9a.85b724", + "b33ddeae.aa57b" + ] + ] + }, + { + "id": "280fec55.9805a4", + "type": "comment", + "name": "DMAAP Publish Not Reqd. Just a placeholder", + "info": "", + "comments": "", + "x": 380, + "y": 503.98958587646484, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "3d43e8a.fae8d18", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 815.0005493164062, + "y": 42.9896354675293, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "c74a3b00.dbe438", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 484.085693359375, + "y": 115.95317459106445, + "z": "f630c4e8.64d488", + "wires": [ + [ + "898ea471.c49108" + ] + ] + }, + { + "id": "898ea471.c49108", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 636, + "y": 77.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3d43e8a.fae8d18", + "15326088.5383cf" + ] + ] + }, + { + "id": "15326088.5383cf", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 808, + "y": 107.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "6ebb935.a77b76c" + ] + ] + }, + { + "id": "6ebb935.a77b76c", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 959, + "y": 101.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + } +] \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/json/ran-slice-api_terminateRANSliceInstance.json b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_terminateRANSliceInstance.json new file mode 100644 index 00000000..e85834ca --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/json/ran-slice-api_terminateRANSliceInstance.json @@ -0,0 +1,586 @@ +[ + { + "id": "a5d25c75.df911", + "type": "method", + "name": "method", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 135, + "y": 178.98959350585938, + "z": "f630c4e8.64d488", + "wires": [ + [ + "940794b0.9ca258" + ] + ] + }, + { + "id": "6b98a8.11e82758", + "type": "dgstart", + "name": "DGSTART", + "outputs": 1, + "x": 131, + "y": 26.989585876464844, + "z": "f630c4e8.64d488", + "wires": [ + [ + "cc743ed3.cedd7" + ] + ] + }, + { + "id": "cc743ed3.cedd7", + "type": "service-logic", + "name": "ran-slice-api ${project.version}", + "module": "ran-slice-api", + "version": "${project.version}", + "comments": "", + "xml": "", + "outputs": 1, + "x": 188.99998474121094, + "y": 87.98968124389648, + "z": "f630c4e8.64d488", + "wires": [ + [ + "a5d25c75.df911" + ] + ] + }, + { + "id": "940794b0.9ca258", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 150.48959732055664, + "y": 345.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "d32cd716.eb75f8", + "5a119db3.ce9b34" + ] + ] + }, + { + "id": "d32cd716.eb75f8", + "type": "returnSuccess", + "name": "return success", + "xml": "\n\n\n\n", + "comments": "", + "x": 247.0002670288086, + "y": 575.9897727966309, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "44cfb129.2991e", + "type": "comment", + "name": "terminateRANSliceInstance", + "info": "", + "comments": "", + "x": 415, + "y": 21, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5a119db3.ce9b34", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 300.0002975463867, + "y": 155.01043319702148, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "f7ead8d5.6a76d8", + "type": "set", + "name": "set tmp variables for notif input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 770.0010986328125, + "y": 210.88906478881836, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "6e214788.4686f8", + "type": "execute", + "name": "execute Properties", + "xml": "\n \n \n", + "comments": "", + "outputs": 1, + "x": 495.00018310546875, + "y": 176.01041793823242, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "df08b48d.a7c588", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 460.00030517578125, + "y": 230.01049423217773, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "3cf4985f.1d9b68", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 335, + "y": 355.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c8a0e6e.1dd9f18" + ] + ] + }, + { + "id": "c8a0e6e.1dd9f18", + "type": "block", + "name": "block : ConfigDB Update", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 514, + "y": 346.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f7ead8d5.6a76d8", + "30513601.2f1eda" + ] + ] + }, + { + "id": "30513601.2f1eda", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 731, + "y": 320.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "307d8f82.8592a" + ] + ] + }, + { + "id": "c0f7c9f8.98e818", + "type": "set", + "name": "set tmp variables for notif neigbor input parms", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 1129, + "y": 194.9895896911621, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "307d8f82.8592a", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 864, + "y": 268.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "c0f7c9f8.98e818", + "fa22a415.571198", + "6f4fe94a.b1ffa8", + "49fbbbb9.e37cd4" + ] + ] + }, + { + "id": "fa22a415.571198", + "type": "execute", + "name": "generate configdb add URL for nbr", + "xml": "\n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 1127, + "y": 240.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "6f4fe94a.b1ffa8", + "type": "record", + "name": "record configdb RestAPI parms", + "xml": "\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 1122, + "y": 289.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "49fbbbb9.e37cd4", + "type": "execute", + "name": "Add neighbor to Cell", + "xml": "\n\n\n\n\n \n\n", + "comments": "", + "outputs": 1, + "x": 1093, + "y": 367.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "e8bd439c.2947", + "780d51b3.1fe4c" + ] + ] + }, + { + "id": "e8bd439c.2947", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1295, + "y": 334.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3e77d15e.509e8e" + ] + ] + }, + { + "id": "780d51b3.1fe4c", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 1287.999891281128, + "y": 413.98949909210205, + "z": "f630c4e8.64d488", + "wires": [ + [ + "ec0f9390.bc092" + ] + ] + }, + { + "id": "3e77d15e.509e8e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1455.9998779296875, + "y": 291.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "1a2c5cb9.93d263" + ] + ] + }, + { + "id": "1a2c5cb9.93d263", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1634.999568939209, + "y": 288.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "ec0f9390.bc092", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1445.9996337890625, + "y": 379.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "81cf5fd.7666fa" + ] + ] + }, + { + "id": "81cf5fd.7666fa", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1624.9997024536133, + "y": 378.98954582214355, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "b33ddeae.aa57b", + "type": "execute", + "name": "execute DmaapMsg", + "xml": "\n \n \n \n \n \n ", + "comments": "", + "outputs": 1, + "x": 665.5, + "y": 506.07290267944336, + "z": "f630c4e8.64d488", + "wires": [ + [ + "5682184.0ed98e8", + "116d5ac8.a491a5" + ] + ] + }, + { + "id": "77dfbd9a.85b724", + "type": "set", + "name": "set", + "xml": "\n\n\n\n\n", + "comments": "", + "x": 660.166748046875, + "y": 412.07290267944336, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "5682184.0ed98e8", + "type": "failure", + "name": "failure", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 861, + "y": 445.9895896911621, + "z": "f630c4e8.64d488", + "wires": [ + [ + "feddd5d5.b26b48" + ] + ] + }, + { + "id": "116d5ac8.a491a5", + "type": "success", + "name": "success", + "xml": "\n", + "comments": "", + "outputs": 1, + "x": 846.9998779296875, + "y": 579.9895286560059, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f00581ee.7161e" + ] + ] + }, + { + "id": "feddd5d5.b26b48", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1051.9998779296875, + "y": 475.98962020874023, + "z": "f630c4e8.64d488", + "wires": [ + [ + "f9e8e42c.b650c8" + ] + ] + }, + { + "id": "f9e8e42c.b650c8", + "type": "returnFailure", + "name": "return failure", + "xml": "\n\n\n", + "comments": "", + "x": 1230.999568939209, + "y": 472.9895877838135, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "f00581ee.7161e", + "type": "block", + "name": "block", + "xml": "\n", + "atomic": "false", + "comments": "", + "outputs": 1, + "x": 1041.9996337890625, + "y": 563.989559173584, + "z": "f630c4e8.64d488", + "wires": [ + [ + "2a523c48.546854" + ] + ] + }, + { + "id": "2a523c48.546854", + "type": "record", + "name": "record", + "xml": "\n\n\n", + "comments": "", + "outputs": 1, + "x": 1220.9997024536133, + "y": 562.9895458221436, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "283ddbe5.abd8f4", + "type": "block", + "name": "block : Publish DMAAP Message", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 416, + "y": 449.98958587646484, + "z": "f630c4e8.64d488", + "wires": [ + [ + "77dfbd9a.85b724", + "b33ddeae.aa57b" + ] + ] + }, + { + "id": "280fec55.9805a4", + "type": "comment", + "name": "DMAAP Publish Not Reqd. Just a placeholder", + "info": "", + "comments": "", + "x": 380, + "y": 503.98958587646484, + "z": "f630c4e8.64d488", + "wires": [] + }, + { + "id": "3d43e8a.fae8d18", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 815.0005493164062, + "y": 42.9896354675293, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + }, + { + "id": "c74a3b00.dbe438", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 484.085693359375, + "y": 115.95317459106445, + "z": "f630c4e8.64d488", + "wires": [ + [ + "898ea471.c49108" + ] + ] + }, + { + "id": "898ea471.c49108", + "type": "block", + "name": "block : atomic", + "xml": "", + "atomic": "true", + "comments": "", + "outputs": 1, + "x": 636, + "y": 77.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "3d43e8a.fae8d18", + "15326088.5383cf" + ] + ] + }, + { + "id": "15326088.5383cf", + "type": "for", + "name": "for", + "xml": "", + "comments": "", + "outputs": 1, + "x": 808, + "y": 107.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [ + "6ebb935.a77b76c" + ] + ] + }, + { + "id": "6ebb935.a77b76c", + "type": "record", + "name": "record", + "xml": "\n\n\n\n\n\n\n\n\n", + "comments": "", + "outputs": 1, + "x": 959, + "y": 101.98958969116211, + "z": "f630c4e8.64d488", + "wires": [ + [] + ] + } +] \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/resources/graph.versions b/platform-logic/ran-slice-api/src/main/resources/graph.versions new file mode 100644 index 00000000..e22a179b --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/resources/graph.versions @@ -0,0 +1,10 @@ +ran-slice-api configureNearRTRIC ${project.version} sync +ran-slice-api instantiateRANSlice ${project.version} sync +ran-slice-api configureRANSliceInstance ${project.version} sync +ran-slice-api configureCU ${project.version} sync +ran-slice-api configureDU ${project.version} sync +ran-slice-api activateRANSliceInstance ${project.version} sync +ran-slice-api deactivateRANSliceInstance ${project.version} sync +ran-slice-api terminateRANSliceInstance ${project.version} sync +ran-slice-api determineRANSliceResources ${project.version} sync +ran-slice-api configNotification ${project.version} sync diff --git a/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_activateRANSliceInstance.xml b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_activateRANSliceInstance.xml new file mode 100644 index 00000000..1cf36bcf --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_activateRANSliceInstance.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configNotification.xml b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configNotification.xml new file mode 100644 index 00000000..2c6f8923 --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configNotification.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureCU.xml b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureCU.xml new file mode 100644 index 00000000..74626ba3 --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureCU.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureDU.xml b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureDU.xml new file mode 100644 index 00000000..3335ea87 --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureDU.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureNearRTRIC.xml b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureNearRTRIC.xml new file mode 100644 index 00000000..44bc0f55 --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureNearRTRIC.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureRANSliceInstance.xml b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureRANSliceInstance.xml new file mode 100644 index 00000000..45b4db96 --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_configureRANSliceInstance.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_deactivateRANSliceInstance.xml b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_deactivateRANSliceInstance.xml new file mode 100644 index 00000000..44f399a6 --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_deactivateRANSliceInstance.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_determineRANSliceResources.xml b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_determineRANSliceResources.xml new file mode 100644 index 00000000..d991cfaa --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_determineRANSliceResources.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_instantiateRANSlice.xml b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_instantiateRANSlice.xml new file mode 100644 index 00000000..53f3bb52 --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_instantiateRANSlice.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_terminateRANSliceInstance.xml b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_terminateRANSliceInstance.xml new file mode 100644 index 00000000..671df6f0 --- /dev/null +++ b/platform-logic/ran-slice-api/src/main/xml/ran-slice-api_terminateRANSliceInstance.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file -- 2.16.6