aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHesam Rahimi <hesam.rahimi@huawei.com>2020-10-30 03:29:17 +0000
committerDan Timoney <dtimoney@att.com>2020-11-03 09:47:25 -0500
commit550fe5b30603ff6da993acc5aeea83d1096433eb (patch)
treea4a76af7d7438cd396f775f8b5f7b452af034341
parentbc5810f48963ec7414b69d077cd2ed91ae187136 (diff)
Completing the logic and the call flow for Transport Slicing operations:
- Allocate a Transport Slice - Activate a Transport Slice - DeActivate a Transport Slice - Delete a Transport Slice Bug Fixing and cleaning up the DGs. Issue-ID: SDNC-1202 Issue-ID: SDNC-1404 Change-Id: Ib2eae06c543ae8277ee2014fda87ca2ca3a516af Signed-off-by: Hesam Rahimi <hesam.rahimi@huawei.com> Former-commit-id: 7d1d841fd7271844c65ca1e9754ad5eec2487c4d
-rw-r--r--installation/src/main/properties/generic-resource-api-dg.properties5
-rw-r--r--platform-logic/datachange/src/main/json/DataChange_esr-thirdparty-sdnc-discovery.json986
-rw-r--r--platform-logic/datachange/src/main/json/DataChange_esr-thirdparty-sdnc.json297
-rw-r--r--platform-logic/datachange/src/main/json/DataChange_update-network-links-to-aai.json1243
-rw-r--r--platform-logic/datachange/src/main/json/DataChange_update-network-to-aai.json767
-rw-r--r--platform-logic/datachange/src/main/json/DataChange_update-tp-ttp-relationship.json392
-rw-r--r--platform-logic/datachange/src/main/xml/DataChange_esr-thirdparty-sdnc-discovery.xml28
-rw-r--r--platform-logic/datachange/src/main/xml/DataChange_esr-thirdparty-sdnc.xml12
-rw-r--r--platform-logic/datachange/src/main/xml/DataChange_update-network-links-to-aai.xml114
-rw-r--r--platform-logic/datachange/src/main/xml/DataChange_update-network-to-aai.xml98
-rw-r--r--platform-logic/datachange/src/main/xml/DataChange_update-tp-ttp-relationship.xml8
-rw-r--r--platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof.json1652
-rw-r--r--platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-activate.json1738
-rw-r--r--platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-allocate.json3497
-rw-r--r--platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-deactivate.json1000
-rw-r--r--platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-delete.json1011
-rw-r--r--platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof.xml333
-rw-r--r--platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-activate.xml464
-rw-r--r--platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-allocate.xml923
-rw-r--r--platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-deactivate.xml250
-rw-r--r--platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-delete.xml244
-rw-r--r--platform-logic/restapi-templates/src/main/json/ts-allocate-tn-slice.json16
-rw-r--r--platform-logic/restapi-templates/src/main/json/ts-coloring-uni-port.json3
-rw-r--r--platform-logic/restapi-templates/src/main/json/ts-ethernet-service.json53
-rw-r--r--platform-logic/restapi-templates/src/main/json/ts-otn-tunnel-dst-domain.json35
-rw-r--r--platform-logic/restapi-templates/src/main/json/ts-otn-tunnel-src-domain.json35
26 files changed, 13206 insertions, 1998 deletions
diff --git a/installation/src/main/properties/generic-resource-api-dg.properties b/installation/src/main/properties/generic-resource-api-dg.properties
index b303d992..389670bc 100644
--- a/installation/src/main/properties/generic-resource-api-dg.properties
+++ b/installation/src/main/properties/generic-resource-api-dg.properties
@@ -35,6 +35,11 @@ restapi.services.vnf.vfmodule.templatefile=vfmodule-vim-parameters.vgw.json
restapi.sotn-attachment.templatefile=sotn-attachment-allotted-resource.json
restapi.sdwan-attachment.templatefile=sdwan-attachment-allotted-resource.json
restapi.oof-getpath.templatefile=oof-getpath.json
+restapi.transport-slice-creation.templatefile=ts-allocate-tn-slice.json
+restapi.ts-otn-src-domain-creation.templatefile=ts-otn-tunnel-src-domain.json
+restapi.ts-otn-dst-domain-creation.templatefile=ts-otn-tunnel-dst-domain.json
+restapi.ts-ethernet-service.templatefile=ts-ethernet-service.json
+restapi.ts-coloring-uni-port.templatefile=ts-coloring-uni-port.json
restapi.naming.gen-name.templatefile=naming-ms-post-gen-name.json
restapi.ss.pnf.templatefile=self-serve-pnf-assignments.json
restapi.ss.vnf.templatefile=self-serve-vnf-assignments.json
diff --git a/platform-logic/datachange/src/main/json/DataChange_esr-thirdparty-sdnc-discovery.json b/platform-logic/datachange/src/main/json/DataChange_esr-thirdparty-sdnc-discovery.json
index 81060bf3..ead08f44 100644
--- a/platform-logic/datachange/src/main/json/DataChange_esr-thirdparty-sdnc-discovery.json
+++ b/platform-logic/datachange/src/main/json/DataChange_esr-thirdparty-sdnc-discovery.json
@@ -1,243 +1,243 @@
[
{
- "id": "c3dc4adb.8c6008",
+ "id": "3872acaa.809c44",
"type": "other",
"name": "update",
"xml": "<outcome value='Update'>\n",
"comments": "",
"outputs": 1,
- "x": 739,
- "y": 311,
- "z": "fcc91756.c8d038",
+ "x": 710,
+ "y": 305,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "bd0845c9.41d478"
+ "5a988226.7d9fdc"
]
]
},
{
- "id": "71253ee0.23906",
+ "id": "dbb694.b27a417",
"type": "other",
"name": "delete",
"xml": "<outcome value='Delete'>\n",
"comments": "",
"outputs": 1,
- "x": 739,
- "y": 391,
- "z": "fcc91756.c8d038",
+ "x": 710,
+ "y": 385,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "3f0bf71e.180588"
+ "754f4acc.eae6dc"
]
]
},
{
- "id": "3f0bf71e.180588",
+ "id": "754f4acc.eae6dc",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic=\"true\">",
"atomic": "true",
"outputs": 1,
- "x": 880.5,
- "y": 391,
- "z": "fcc91756.c8d038",
+ "x": 851.5,
+ "y": 385,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "67540de7.5dd14c"
+ "983792ba.976408"
]
]
},
{
- "id": "de801ea6.e90758",
+ "id": "4cc508ad.f5c7d",
"type": "switchNode",
"name": "switch aai-event-trigger",
"xml": "<switch test=\"`$data-change-notification-input.aai-event-trigger`\">\n",
"comments": "",
"outputs": 1,
- "x": 569.5,
- "y": 351,
- "z": "fcc91756.c8d038",
+ "x": 540.5,
+ "y": 345,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "c3dc4adb.8c6008",
- "71253ee0.23906"
+ "3872acaa.809c44",
+ "dbb694.b27a417"
]
]
},
{
- "id": "1007cea6.282501",
+ "id": "f974c517.d68cd",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic=\"true\">",
"atomic": "true",
"outputs": 1,
- "x": 1266.5,
- "y": 222,
- "z": "fcc91756.c8d038",
+ "x": 1237.5,
+ "y": 216,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "95e785b5.d067b",
- "7a1058d1.4b2d6",
- "558bdafc.122dbc",
- "54848569.ec4d54",
- "25993b47.1f060c"
+ "29d0fcfc.c3657c",
+ "80deb47b.7e9e",
+ "f9b155cc.d14098",
+ "c374fd8f.2c9bc8",
+ "31237f4.62f8c"
]
]
},
{
- "id": "7a1058d1.4b2d6",
+ "id": "80deb47b.7e9e",
"type": "execute",
"name": "execute RestApiCallNode Get token",
"xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/actokentemplate.json'`\" />\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url + '/controller/v2/tokens'`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"post\"/>\n<parameter name=\"responsePrefix\" value=\"token-result\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>",
"comments": "",
"outputs": 1,
- "x": 1539.5001983642578,
- "y": 143.00000953674316,
- "z": "fcc91756.c8d038",
+ "x": 1510.5001983642578,
+ "y": 137.00000953674316,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "1f13ca65.eddc8e",
- "fa7642f7.a126c8"
+ "6d5b07.e87e6cf8",
+ "403286df.c4eed8"
]
]
},
{
- "id": "1f13ca65.eddc8e",
+ "id": "6d5b07.e87e6cf8",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 1829.000244140625,
- "y": 135,
- "z": "fcc91756.c8d038",
+ "x": 1800.000244140625,
+ "y": 129,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "a5768e87.aa1bb"
+ "b95a0f0f.c5f4"
]
]
},
{
- "id": "fa7642f7.a126c8",
+ "id": "403286df.c4eed8",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 1825.000244140625,
- "y": 175,
- "z": "fcc91756.c8d038",
+ "x": 1796.000244140625,
+ "y": 169,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "334af206.383786"
+ "f35984bc.58f298"
]
]
},
{
- "id": "a5768e87.aa1bb",
+ "id": "b95a0f0f.c5f4",
"type": "set",
"name": "set token-id",
"xml": "<set>\n<parameter name='prop.sdncRestApi.token_id' value='`$token-result.data.token_id`' />\n",
"comments": "",
- "x": 1979.500244140625,
- "y": 135,
- "z": "fcc91756.c8d038",
+ "x": 1950.500244140625,
+ "y": 129,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "272f0d19.0aa972",
+ "id": "c03c3a2.5764a48",
"type": "execute",
"name": "execute RestApiCallNode Get Topology",
"xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`\" />\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"get\"/>\n<parameter name=\"responsePrefix\" value=\"topology\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n<parameter name='customHttpHeaders' value=\"`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`\" />",
"comments": "",
"outputs": 1,
- "x": 2046.500244140625,
- "y": 255,
- "z": "fcc91756.c8d038",
+ "x": 2017.500244140625,
+ "y": 249,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "c0f8711f.5047d8",
- "6134ff85.3a875"
+ "986cb045.40c5",
+ "e9ec571f.c3cfe8"
]
]
},
{
- "id": "c0f8711f.5047d8",
+ "id": "986cb045.40c5",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 2289.000244140625,
- "y": 275,
- "z": "fcc91756.c8d038",
+ "x": 2260.000244140625,
+ "y": 269,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "f5e8d64.1d84ba8"
+ "7a144ec7.8a9348"
]
]
},
{
- "id": "f5e8d64.1d84ba8",
+ "id": "7a144ec7.8a9348",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic=\"true\">",
"atomic": "true",
"comments": "",
"outputs": 1,
- "x": 2446.500244140625,
- "y": 275,
- "z": "fcc91756.c8d038",
+ "x": 2417.500244140625,
+ "y": 269,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "f392518f.1c82f",
- "f7bc5da7.da31b"
+ "55ea6ad.8497214",
+ "ad96f3f.ca0439"
]
]
},
{
- "id": "dd9ef895.8d06e8",
+ "id": "c2f07a72.d9a858",
"type": "returnFailure",
"name": "return failure",
"xml": "<return status='failure'>\n <parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing Create vpn rest api\" />\n",
"comments": "",
- "x": 2423.000244140625,
- "y": 175,
- "z": "fcc91756.c8d038",
+ "x": 2394.000244140625,
+ "y": 169,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "6134ff85.3a875",
+ "id": "e9ec571f.c3cfe8",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 2285.000244140625,
- "y": 175,
- "z": "fcc91756.c8d038",
+ "x": 2256.000244140625,
+ "y": 169,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "dd9ef895.8d06e8"
+ "c2f07a72.d9a858"
]
]
},
{
- "id": "bca2c88c.f5748",
+ "id": "7d5868e5.98eab",
"type": "dgstart",
"name": "DGSTART",
"outputs": 1,
- "x": 192,
- "y": 86,
- "z": "fcc91756.c8d038",
+ "x": 163,
+ "y": 80,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "1c8eebdb.be2d0c"
+ "22d8189e.4866f"
]
]
},
{
- "id": "1c8eebdb.be2d0c",
+ "id": "22d8189e.4866f",
"type": "service-logic",
"name": "DataChange ${project.version}",
"module": "DataChange",
@@ -245,1242 +245,1242 @@
"comments": "",
"xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>",
"outputs": 1,
- "x": 205,
- "y": 146,
- "z": "fcc91756.c8d038",
+ "x": 176,
+ "y": 140,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "a6fcf3ab.5f9578"
+ "3a8b8af3.4d4416"
]
]
},
{
- "id": "a6fcf3ab.5f9578",
+ "id": "3a8b8af3.4d4416",
"type": "method",
"name": "method esr-thirdparty-sdnc-discovery",
"xml": "<method rpc='esr-thirdparty-sdnc-discovery' mode='sync'>\n",
"comments": "",
"outputs": 1,
- "x": 225,
- "y": 226,
- "z": "fcc91756.c8d038",
+ "x": 196,
+ "y": 220,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "6420c8d3.d15ee"
+ "c8a85a4d.9e66f"
]
]
},
{
- "id": "6420c8d3.d15ee",
+ "id": "c8a85a4d.9e66f",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic=\"true\">\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 472.5,
- "y": 226,
- "z": "fcc91756.c8d038",
+ "x": 443.5,
+ "y": 220,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "39152f22.f0d4a8"
+ "cbd24389.ade708"
]
]
},
{
- "id": "f392518f.1c82f",
+ "id": "55ea6ad.8497214",
"type": "for",
"name": "for each Network",
"xml": "<for index='nidx' start='0' end='`$topology.networks.network_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 2665.500244140625,
- "y": 204,
- "z": "fcc91756.c8d038",
+ "x": 2636.500244140625,
+ "y": 198,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "48caa041.662da"
+ "1ed2d22d.82cc36"
]
]
},
{
- "id": "48caa041.662da",
+ "id": "1ed2d22d.82cc36",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 2814.000244140625,
- "y": 204,
- "z": "fcc91756.c8d038",
+ "x": 2785.000244140625,
+ "y": 198,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "f9d6723a.6cdf78",
- "929dfcd4.4e318"
+ "852144d1.2cc6d",
+ "530a9a06.d69fc4"
]
]
},
{
- "id": "f9d6723a.6cdf78",
+ "id": "852144d1.2cc6d",
"type": "call",
"name": "call update-network-to-aai",
"xml": "<call module='DataChange' rpc='update-network-to-aai' mode='sync' >\n",
"comments": "",
"outputs": 1,
- "x": 2993.000244140625,
- "y": 224,
- "z": "fcc91756.c8d038",
+ "x": 2964.000244140625,
+ "y": 218,
+ "z": "8cb67e95.d771b8",
"wires": [
[]
]
},
{
- "id": "929dfcd4.4e318",
+ "id": "530a9a06.d69fc4",
"type": "set",
"name": "set network",
"xml": "<set>\n<parameter name='network.' value='`$topology.networks.network[$nidx].`' />\n",
"comments": "",
- "x": 2948.000244140625,
- "y": 184,
- "z": "fcc91756.c8d038",
+ "x": 2919.000244140625,
+ "y": 178,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "334af206.383786",
+ "id": "f35984bc.58f298",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 1945.000244140625,
- "y": 175,
- "z": "fcc91756.c8d038",
+ "x": 1916.000244140625,
+ "y": 169,
+ "z": "8cb67e95.d771b8",
"wires": [
[]
]
},
{
- "id": "2b9bc1fc.7f9d86",
+ "id": "a473b7cc.4471d8",
"type": "comment",
"name": "Do Nothing",
"info": "",
"comments": "",
- "x": 2115.000244140625,
- "y": 215,
- "z": "fcc91756.c8d038",
+ "x": 2086.000244140625,
+ "y": 209,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "ec977bcd.52b8a8",
+ "id": "d9afda1.5ca9828",
"type": "switchNode",
"name": "switch type",
"xml": "<switch test=\"`$prop.sdncRestApi.type`\">\n",
"comments": "",
"outputs": 1,
- "x": 992,
- "y": 311,
- "z": "fcc91756.c8d038",
+ "x": 963,
+ "y": 305,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "e6327558.85a0e",
- "ece3c1dc.08a25",
- "57f0cdff.7f0d04",
- "e6efb547.0bd5a8"
+ "7ea96e84.4a184",
+ "e5a11dd.415fde",
+ "11ea46b7.9ad609",
+ "a5c3b391.3c4aa"
]
]
},
{
- "id": "bd0845c9.41d478",
+ "id": "5a988226.7d9fdc",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 859,
- "y": 311,
- "z": "fcc91756.c8d038",
+ "x": 830,
+ "y": 305,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "ec977bcd.52b8a8"
+ "d9afda1.5ca9828"
]
]
},
{
- "id": "e6327558.85a0e",
+ "id": "7ea96e84.4a184",
"type": "other",
"name": "SOTN",
"xml": "<outcome value='SOTN'>\n",
"comments": "",
"outputs": 1,
- "x": 1105,
- "y": 222,
- "z": "fcc91756.c8d038",
+ "x": 1076,
+ "y": 216,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "1007cea6.282501"
+ "f974c517.d68cd"
]
]
},
{
- "id": "ece3c1dc.08a25",
+ "id": "e5a11dd.415fde",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 1134.5,
- "y": 683.5001220703125,
- "z": "fcc91756.c8d038",
+ "x": 1105.5,
+ "y": 677.5001220703125,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "752a836e.32daf4"
+ "4a0581b6.8cbdf"
]
]
},
{
- "id": "752a836e.32daf4",
+ "id": "4a0581b6.8cbdf",
"type": "returnFailure",
"name": "return failure",
"xml": "<return status='failure'>\n<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unsupported type = ' + $prop.sdncRestApi.type`\" />\n\n",
"comments": "",
- "x": 1320.75,
- "y": 709.5001220703125,
- "z": "fcc91756.c8d038",
+ "x": 1291.75,
+ "y": 703.5001220703125,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "95e785b5.d067b",
+ "id": "29d0fcfc.c3657c",
"type": "execute",
"name": "execute Properties",
"xml": "<execute plugin='org.onap.ccsdk.sli.plugins.prop.PropertiesNode' method='readProperties' >\n <parameter name='fileName' value='%SDNC_CONFIG_DIR%/generic-resource-api-dg.properties' />\n <parameter name='contextPrefix' value='prop' />\n",
"comments": "",
"outputs": 1,
- "x": 1486.0001983642578,
- "y": 103.00000953674316,
- "z": "fcc91756.c8d038",
+ "x": 1457.0001983642578,
+ "y": 97.00000953674316,
+ "z": "8cb67e95.d771b8",
"wires": [
[]
]
},
{
- "id": "558bdafc.122dbc",
+ "id": "f9b155cc.d14098",
"type": "switchNode",
"name": "switch prop.sdncRestApi.token_id",
"xml": "<switch test=\"`$prop.sdncRestApi.token_id`\">\n",
"comments": "",
"outputs": 1,
- "x": 1532.5001983642578,
- "y": 223.00000953674316,
- "z": "fcc91756.c8d038",
+ "x": 1503.5001983642578,
+ "y": 217.00000953674316,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "9764857a.46386",
- "b55a5855.1b4c4"
+ "4e229170.2e1108",
+ "495c5d16.740274"
]
]
},
{
- "id": "9764857a.46386",
+ "id": "4e229170.2e1108",
"type": "other",
"name": "Null",
"xml": "<outcome value=''>\n",
"comments": "",
"outputs": 1,
- "x": 1825.000244140625,
- "y": 215,
- "z": "fcc91756.c8d038",
+ "x": 1796.000244140625,
+ "y": 209,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "d18413fb.5938e8"
+ "b14dd129.fcf7f"
]
]
},
{
- "id": "b55a5855.1b4c4",
+ "id": "495c5d16.740274",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 1825.000244140625,
- "y": 255,
- "z": "fcc91756.c8d038",
+ "x": 1796.000244140625,
+ "y": 249,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "272f0d19.0aa972"
+ "c03c3a2.5764a48"
]
]
},
{
- "id": "d18413fb.5938e8",
+ "id": "b14dd129.fcf7f",
"type": "execute",
"name": "execute RestApiCallNode Get Topology",
"xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`\" />\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"get\"/>\n<parameter name=\"responsePrefix\" value=\"topology\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n",
"comments": "",
"outputs": 1,
- "x": 2046.500244140625,
- "y": 215,
- "z": "fcc91756.c8d038",
+ "x": 2017.500244140625,
+ "y": 209,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "6134ff85.3a875",
- "c0f8711f.5047d8"
+ "e9ec571f.c3cfe8",
+ "986cb045.40c5"
]
]
},
{
- "id": "25993b47.1f060c",
+ "id": "31237f4.62f8c",
"type": "execute",
"name": "execute RestconfDiscoveryNode",
"xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restconfdiscovery.RestconfDiscoveryNode' method='establishSubscription' >\n<parameter name=\"subscriberId\" value=\"sotn-controller\" />\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/operations/ietf-subscribed-notifications:establish-subscription'`\" />\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.password`\" />\n<parameter name=\"sseConnectURL\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/streams/yang-push-json'`\" />\n<parameter name=\"dirPath\" value=\"/opt/sdnc/restconfapi/yang/notification\" />\n<parameter name=\"format\" value=\"json\" />\n<parameter name=\"httpMethod\" value=\"post\" />\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n<parameter name='customHttpHeaders' value=\"`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`\" />\n<parameter name=\"module\" value=\"DataChange\" />\n<parameter name=\"rpc\" value=\"sotn-notification-handler\" />\n<parameter name=\"mode\" value=\"sync\" />",
"comments": "",
"outputs": 1,
- "x": 1529.0001983642578,
- "y": 363.00000953674316,
- "z": "fcc91756.c8d038",
+ "x": 1500.0001983642578,
+ "y": 357.00000953674316,
+ "z": "8cb67e95.d771b8",
"wires": [
[]
]
},
{
- "id": "54848569.ec4d54",
+ "id": "c374fd8f.2c9bc8",
"type": "set",
"name": "set encoding-format",
"xml": "<set>\n<parameter name='input' value='ietf-subscribed-notifications:establish-subscription.input.' />\n<parameter name=\"`$input + 'encoding'`\" value=\"encode-json\" />",
"comments": "",
- "x": 1489.0001983642578,
- "y": 323.00000953674316,
- "z": "fcc91756.c8d038",
+ "x": 1460.0001983642578,
+ "y": 317.00000953674316,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "c147e994.7edd08",
+ "id": "47fcc4e5.c080a4",
"type": "comment",
"name": "Notification subscription",
"info": "",
"comments": "",
- "x": 1494.000343322754,
- "y": 280.00000858306885,
- "z": "fcc91756.c8d038",
+ "x": 1465.000343322754,
+ "y": 274.00000858306885,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "39152f22.f0d4a8",
+ "id": "cbd24389.ade708",
"type": "switchNode",
"name": "switch",
"xml": "<switch test=\"`$prop.sdncRestApi.vendor == 'ZTE'`\">\n",
"comments": "",
"outputs": 1,
- "x": 179,
- "y": 351,
- "z": "fcc91756.c8d038",
+ "x": 150,
+ "y": 345,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "404d2f08.96ad7",
- "74ffd1db.2f31c8"
+ "f624fdf6.4a4ef8",
+ "67364ea6.885738"
]
]
},
{
- "id": "404d2f08.96ad7",
+ "id": "f624fdf6.4a4ef8",
"type": "outcomeFalse",
"name": "false",
"xml": "<outcome value='false'>\n",
"comments": "",
"outputs": 1,
- "x": 366,
- "y": 351,
- "z": "fcc91756.c8d038",
+ "x": 337,
+ "y": 345,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "de801ea6.e90758"
+ "4cc508ad.f5c7d"
]
]
},
{
- "id": "74ffd1db.2f31c8",
+ "id": "67364ea6.885738",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 140.00003051757812,
- "y": 1107.75,
- "z": "fcc91756.c8d038",
+ "x": 111.00003051757812,
+ "y": 1101.75,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "c3886c05.a14928"
+ "48c54790.7a017"
]
]
},
{
- "id": "c3886c05.a14928",
+ "id": "48c54790.7a017",
"type": "call",
"name": "call esr-thirdparty-sdnc-of-zte",
"xml": "<call module='DataChange' rpc='esr-thirdparty-sdnc-of-zte' mode='sync' >\n",
"comments": "",
"outputs": 1,
- "x": 371.75,
- "y": 1124.5000610351562,
- "z": "fcc91756.c8d038",
+ "x": 342.75,
+ "y": 1118.5000610351562,
+ "z": "8cb67e95.d771b8",
"wires": [
[]
]
},
{
- "id": "57f0cdff.7f0d04",
+ "id": "11ea46b7.9ad609",
"type": "other",
"name": "TAPI",
"xml": "<outcome value='TAPI'>\n",
"comments": "",
"outputs": 1,
- "x": 1183,
- "y": 456,
- "z": "fcc91756.c8d038",
+ "x": 1154,
+ "y": 450,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "9159c5db.f9ecb"
+ "a1313060.f8d7d"
]
]
},
{
- "id": "9159c5db.f9ecb",
+ "id": "a1313060.f8d7d",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic=\"true\">",
"atomic": "true",
"outputs": 1,
- "x": 1346,
- "y": 455,
- "z": "fcc91756.c8d038",
+ "x": 1317,
+ "y": 449,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "359e52a9.fb7c36"
+ "f271610b.da5a3"
]
]
},
{
- "id": "359e52a9.fb7c36",
+ "id": "f271610b.da5a3",
"type": "execute",
"name": "execute",
"xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n <parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url + '/cxf/tapi/v2/topologies?topology-id-or-name=otn'`\"/> \n <parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.user`\"/> \n <parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.password`\"/> \n <parameter name=\"format\" value=\"json\"/> \n <parameter name=\"httpMethod\" value=\"get\"/> \n <parameter name=\"responsePrefix\" value=\"topologies\"/>\n <parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.tapi.jks\"/> \n <parameter name=\"trustStorePassword\" value=\"adminadmin\"/> \n <parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/> \n <parameter name=\"keyStorePassword\" value=\"adminadmin\"/>",
"comments": "",
"outputs": 1,
- "x": 1507,
- "y": 454,
- "z": "fcc91756.c8d038",
+ "x": 1478,
+ "y": 448,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "bdd5dc28.9d2908",
- "a872bbb4.c3aec8"
+ "878204ba.609a58",
+ "1c89864.e323d7a"
]
]
},
{
- "id": "a872bbb4.c3aec8",
+ "id": "1c89864.e323d7a",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 1649,
- "y": 530,
- "z": "fcc91756.c8d038",
+ "x": 1620,
+ "y": 524,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "e24829ea.497098"
+ "5d965dcc.6101a4"
]
]
},
{
- "id": "bdd5dc28.9d2908",
+ "id": "878204ba.609a58",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 1683,
- "y": 451,
- "z": "fcc91756.c8d038",
+ "x": 1654,
+ "y": 445,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "ba70e873.59e928"
+ "4052d329.1b779c"
]
]
},
{
- "id": "ba70e873.59e928",
+ "id": "4052d329.1b779c",
"type": "returnFailure",
"name": "return failure",
"xml": "<return status='failure'>\n <parameter name='ack-final' value='Y'/>\n <parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing get topology TAPI rest api\" />\n\n",
"comments": "",
- "x": 1853,
- "y": 450,
- "z": "fcc91756.c8d038",
+ "x": 1824,
+ "y": 444,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "e24829ea.497098",
+ "id": "5d965dcc.6101a4",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic=\"true\">",
"atomic": "true",
"outputs": 1,
- "x": 1810,
- "y": 529,
- "z": "fcc91756.c8d038",
+ "x": 1781,
+ "y": 523,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "e5d11bee.6d3f3"
+ "d1531df6.3732f"
]
]
},
{
- "id": "e5d11bee.6d3f3",
+ "id": "d1531df6.3732f",
"type": "for",
"name": "for each topology",
"xml": "<for index='tidx' start='0' end=\"`$topologies.topology_length`\" >\n",
"comments": "",
"outputs": 1,
- "x": 1989,
- "y": 529,
- "z": "fcc91756.c8d038",
+ "x": 1960,
+ "y": 523,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "f9dbd640.006d18"
+ "8b55167c.96333"
]
]
},
{
- "id": "f9dbd640.006d18",
+ "id": "8b55167c.96333",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 2156,
- "y": 530,
- "z": "fcc91756.c8d038",
+ "x": 2127,
+ "y": 524,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "c60ea7f.3bd2058",
- "b4f9b29d.c49458"
+ "e7e4969d.73ce58",
+ "9e2e1ddf.baa2b"
]
]
},
{
- "id": "c60ea7f.3bd2058",
+ "id": "e7e4969d.73ce58",
"type": "set",
"name": "set topology",
"xml": "<set>\n<parameter name='topology.' value='`$topologies.topology[$tidx].`' />\n",
"comments": "",
- "x": 2315,
- "y": 531,
- "z": "fcc91756.c8d038",
+ "x": 2286,
+ "y": 525,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "b4f9b29d.c49458",
+ "id": "9e2e1ddf.baa2b",
"type": "call",
"name": "call tapi-update-network-to-aai",
"xml": "<call module='DataChange' rpc='tapi-update-network-to-aai' mode='sync' >\n\n",
"comments": "",
"outputs": 1,
- "x": 2306,
- "y": 597,
- "z": "fcc91756.c8d038",
+ "x": 2277,
+ "y": 591,
+ "z": "8cb67e95.d771b8",
"wires": [
[]
]
},
{
- "id": "e6efb547.0bd5a8",
+ "id": "a5c3b391.3c4aa",
"type": "outcome",
"name": "MSA",
"xml": "<outcome value='MSA'>\n",
"comments": "",
"outputs": 1,
- "x": 1153.677324295044,
- "y": 612.8993349075317,
- "z": "fcc91756.c8d038",
+ "x": 1124.677324295044,
+ "y": 606.8993349075317,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "e1657417.9cefe8"
+ "1925d7f4.b889a8"
]
]
},
{
- "id": "e1657417.9cefe8",
+ "id": "1925d7f4.b889a8",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic=\"true\">",
"atomic": "true",
"outputs": 1,
- "x": 1315.6773872375488,
- "y": 610.899335861206,
- "z": "fcc91756.c8d038",
+ "x": 1286.6773872375488,
+ "y": 604.899335861206,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "1f0bde0a.fa2cb2"
+ "7ba5724d.ffaffc"
]
]
},
{
- "id": "1f0bde0a.fa2cb2",
+ "id": "7ba5724d.ffaffc",
"type": "execute",
"name": "execute",
"xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n <parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url + '/cxf/openroadm/v2/networks/otn-topology'`\"/> \n <parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.user`\"/> \n <parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.password`\"/> \n <parameter name=\"format\" value=\"json\"/> \n <parameter name=\"httpMethod\" value=\"get\"/> \n <parameter name=\"responsePrefix\" value=\"networks\"/>\n <parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.msa.jks\"/> \n <parameter name=\"trustStorePassword\" value=\"adminadmin\"/> \n <parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/> \n <parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n",
"comments": "",
"outputs": 1,
- "x": 1492.6771354675293,
- "y": 602.8992919921875,
- "z": "fcc91756.c8d038",
+ "x": 1463.6771354675293,
+ "y": 596.8992919921875,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "7133cad2.99b11c",
- "c3d837c.d0ca2c8"
+ "6946de0a.deebc",
+ "5d4a6514.4c3a9c"
]
]
},
{
- "id": "7133cad2.99b11c",
+ "id": "6946de0a.deebc",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 1645.6771354675293,
- "y": 599.8992919921875,
- "z": "fcc91756.c8d038",
+ "x": 1616.6771354675293,
+ "y": 593.8992919921875,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "eab907ff.882ae8"
+ "e290e7ee.1a21f"
]
]
},
{
- "id": "eab907ff.882ae8",
+ "id": "e290e7ee.1a21f",
"type": "returnFailure",
"name": "return failure",
"xml": "<return status='failure'>\n <parameter name='ack-final' value='Y'/>\n <parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing get topology MSA rest api\" />\n\n",
"comments": "",
- "x": 1820.6771354675293,
- "y": 598.8992919921875,
- "z": "fcc91756.c8d038",
+ "x": 1791.6771354675293,
+ "y": 592.8992919921875,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "c3d837c.d0ca2c8",
+ "id": "5d4a6514.4c3a9c",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 1651.6771354675293,
- "y": 672.8992919921875,
- "z": "fcc91756.c8d038",
+ "x": 1622.6771354675293,
+ "y": 666.8992919921875,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "224d6e37.21354a"
+ "815556fb.bd9668"
]
]
},
{
- "id": "224d6e37.21354a",
+ "id": "815556fb.bd9668",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic=\"true\">",
"atomic": "true",
"outputs": 1,
- "x": 1835.6771354675293,
- "y": 674.8992919921875,
- "z": "fcc91756.c8d038",
+ "x": 1806.6771354675293,
+ "y": 668.8992919921875,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "622b9c10.ebdeac"
+ "9834a552.e8e02"
]
]
},
{
- "id": "622b9c10.ebdeac",
+ "id": "9834a552.e8e02",
"type": "call",
"name": "call msa-update-network-to-aai",
"xml": "<call module='DataChange' rpc='msa-update-network-to-aai' mode='sync' >\n\n",
"comments": "",
"outputs": 1,
- "x": 2114.677001953125,
- "y": 672.8992919921875,
- "z": "fcc91756.c8d038",
+ "x": 2085.677001953125,
+ "y": 666.8992919921875,
+ "z": "8cb67e95.d771b8",
"wires": [
[]
]
},
{
- "id": "67540de7.5dd14c",
+ "id": "983792ba.976408",
"type": "switchNode",
"name": "switch type",
"xml": "<switch test=\"`$prop.sdncRestApi.type`\">\n",
"comments": "",
"outputs": 1,
- "x": 285.566650390625,
- "y": 841.5666809082031,
- "z": "fcc91756.c8d038",
+ "x": 256.566650390625,
+ "y": 835.5666809082031,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "ed11f93e.13815",
- "b9986099.553ab8",
- "eeccf78a.d71e3"
+ "674a6a9f.8c143c",
+ "42c7b2ab.76125c",
+ "1501fed.f113881"
]
]
},
{
- "id": "ed11f93e.13815",
+ "id": "674a6a9f.8c143c",
"type": "outcome",
"name": "MSA",
"xml": "<outcome value='MSA'>\n",
"comments": "",
"outputs": 1,
- "x": 464.857177734375,
- "y": 758.9285888671875,
- "z": "fcc91756.c8d038",
+ "x": 435.857177734375,
+ "y": 752.9285888671875,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "40980c29.103654"
+ "8b3cf345.6948d"
]
]
},
{
- "id": "b9986099.553ab8",
+ "id": "42c7b2ab.76125c",
"type": "other",
"name": "TAPI",
"xml": "<outcome value='TAPI'>\n",
"comments": "",
"outputs": 1,
- "x": 473.6070556640625,
- "y": 1009.6428527832031,
- "z": "fcc91756.c8d038",
+ "x": 444.6070556640625,
+ "y": 1003.6428527832031,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "b9906adb.aedb"
+ "ec6a41aa.381fd"
]
]
},
{
- "id": "40980c29.103654",
+ "id": "8b3cf345.6948d",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic='true'>",
"atomic": "true",
"comments": "",
"outputs": 1,
- "x": 618.607177734375,
- "y": 755.7143249511719,
- "z": "fcc91756.c8d038",
+ "x": 589.607177734375,
+ "y": 749.7143249511719,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "f4759d50.5acb",
- "6300b23d.858844"
+ "49d8550e.67af3c",
+ "db848d25.52ee9"
]
]
},
{
- "id": "b9906adb.aedb",
+ "id": "ec6a41aa.381fd",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 623,
- "y": 1009.5,
- "z": "fcc91756.c8d038",
+ "x": 594,
+ "y": 1003.5,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "ee72aef0.96b35",
- "80047dba.a18518"
+ "1335976f.2d9b19",
+ "16c45478.af99e4"
]
]
},
{
- "id": "eeccf78a.d71e3",
+ "id": "1501fed.f113881",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 576,
- "y": 1173.5,
- "z": "fcc91756.c8d038",
+ "x": 547,
+ "y": 1167.5,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "a7ccb229.5cc45"
+ "41c63854.9379a8"
]
]
},
{
- "id": "a7ccb229.5cc45",
+ "id": "41c63854.9379a8",
"type": "returnFailure",
"name": "return failure",
"xml": "<return status='failure'>\n<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unsupported type = ' + $prop.sdncRestApi.type`\" />\n\n",
"comments": "",
- "x": 738,
- "y": 1212.5,
- "z": "fcc91756.c8d038",
+ "x": 709,
+ "y": 1206.5,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "f4759d50.5acb",
+ "id": "49d8550e.67af3c",
"type": "get-resource",
"name": "get resources from DB -controller_id",
"xml": "<get-resource plugin='org.onap.ccsdk.sli.adaptors.resource.sql.SqlResource' resource='SQL'\nkey='SELECT controller_id\nfrom TOPOLOGY_LOGICAL_RELATION_TO_PINTERFACE\nWHERE controller_id = $controllerid'\npfx='dbcontrollerid'>\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n",
"comments": "",
"outputs": 1,
- "x": 850.5,
- "y": 803.5,
- "z": "fcc91756.c8d038",
+ "x": 821.5,
+ "y": 797.5,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "418351d.550fdb",
- "5d9de12a.c40778",
- "4f52ba75.31f414"
+ "1a8d1895.ab6a47",
+ "47ef9d8f.3964f4",
+ "d98324ce.97ca8"
]
]
},
{
- "id": "6300b23d.858844",
+ "id": "db848d25.52ee9",
"type": "set",
"name": "set controller_id",
"xml": "<set>\n<parameter name='controllerid' value=\"`$prop.sdncRestApi.type + '_' + $prop.sdncRestApi.thirdpartySdnc.url + '_' + $prop.sdncRestApi.thirdpartySdnc.id`\" />\n\n\n\n",
"comments": "",
- "x": 810.5,
- "y": 737.5,
- "z": "fcc91756.c8d038",
+ "x": 781.5,
+ "y": 731.5,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "418351d.550fdb",
+ "id": "1a8d1895.ab6a47",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 1089.5,
- "y": 823.5,
- "z": "fcc91756.c8d038",
+ "x": 1060.5,
+ "y": 817.5,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "7d4b021f.b58864"
+ "d1f9e1a7.c7f19"
]
]
},
{
- "id": "7d4b021f.b58864",
+ "id": "d1f9e1a7.c7f19",
"type": "delete",
"name": "delete from db",
"xml": "<delete plugin='org.onap.ccsdk.sli.adaptors.resource.sql.SqlResource'\n resource=\"SQL\"\n key=\"DELETE FROM TOPOLOGY_LOGICAL_RELATION_TO_PINTERFACE WHERE controller_id = $controllerid\">",
"comments": "",
"outputs": 1,
- "x": 1258.5,
- "y": 830.5,
- "z": "fcc91756.c8d038",
+ "x": 1229.5,
+ "y": 824.5,
+ "z": "8cb67e95.d771b8",
"wires": [
[]
]
},
{
- "id": "ee72aef0.96b35",
+ "id": "1335976f.2d9b19",
"type": "set",
"name": "set controller_id",
"xml": "<set>\n<parameter name='controllerid' value=\"`$prop.sdncRestApi.type + '_' + $prop.sdncRestApi.thirdpartySdnc.url + '_' + $prop.sdncRestApi.thirdpartySdnc.id`\" />\n\n\n\n",
"comments": "",
- "x": 787.5,
- "y": 965.5,
- "z": "fcc91756.c8d038",
+ "x": 758.5,
+ "y": 959.5,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "80047dba.a18518",
+ "id": "16c45478.af99e4",
"type": "get-resource",
"name": "get resources from DB -controller_id",
"xml": "<get-resource plugin='org.onap.ccsdk.sli.adaptors.resource.sql.SqlResource' resource='SQL'\nkey='SELECT controller_id\nfrom TOPOLOGY_LOGICAL_RELATION_TO_PINTERFACE\nWHERE controller_id = $controllerid'\npfx='dbcontrollerid'>\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n",
"comments": "",
"outputs": 1,
- "x": 800.5,
- "y": 1054.5,
- "z": "fcc91756.c8d038",
+ "x": 771.5,
+ "y": 1048.5,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "193e8ffa.2d1e68",
- "392a4087.7340c",
- "3b51b50f.fabfaa"
+ "a8a3e82f.8a5a8",
+ "ae0994a7.403ab8",
+ "e57ecfd9.55df58"
]
]
},
{
- "id": "193e8ffa.2d1e68",
+ "id": "a8a3e82f.8a5a8",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 1025.5,
- "y": 1069.5,
- "z": "fcc91756.c8d038",
+ "x": 996.5,
+ "y": 1063.5,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "7c3655cf.c7356c"
+ "d7aae079.2ca2a"
]
]
},
{
- "id": "7c3655cf.c7356c",
+ "id": "d7aae079.2ca2a",
"type": "delete",
"name": "delete from db",
"xml": "<delete plugin='org.onap.ccsdk.sli.adaptors.resource.sql.SqlResource'\n resource=\"SQL\"\n key=\"DELETE FROM TOPOLOGY_LOGICAL_RELATION_TO_PINTERFACE WHERE controller_id = $controllerid\">",
"comments": "",
"outputs": 1,
- "x": 1196.5,
- "y": 1070.5,
- "z": "fcc91756.c8d038",
+ "x": 1167.5,
+ "y": 1064.5,
+ "z": "8cb67e95.d771b8",
"wires": [
[]
]
},
{
- "id": "5d9de12a.c40778",
+ "id": "47ef9d8f.3964f4",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 1075.5,
- "y": 902.5,
- "z": "fcc91756.c8d038",
+ "x": 1046.5,
+ "y": 896.5,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "44b36cb9.4f203c"
+ "1e298c8c.f0408b"
]
]
},
{
- "id": "392a4087.7340c",
+ "id": "ae0994a7.403ab8",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 1006.5,
- "y": 1142.5,
- "z": "fcc91756.c8d038",
+ "x": 977.5,
+ "y": 1136.5,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "568e56df.183be8"
+ "c236971a.ee197"
]
]
},
{
- "id": "44b36cb9.4f203c",
+ "id": "1e298c8c.f0408b",
"type": "returnFailure",
"name": "return failure",
"xml": "<return status='failure'>\n <parameter name='ack-final' value='Y'/>\n <parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Failure in getting controller-id from DB\" />\n\n",
"comments": "",
- "x": 1236.5,
- "y": 907.5,
- "z": "fcc91756.c8d038",
+ "x": 1207.5,
+ "y": 901.5,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "4f52ba75.31f414",
+ "id": "d98324ce.97ca8",
"type": "not-found",
"name": "not-found",
"xml": "<outcome value='not-found'>\n",
"comments": "",
"outputs": 1,
- "x": 1066.5,
- "y": 962.5,
- "z": "fcc91756.c8d038",
+ "x": 1037.5,
+ "y": 956.5,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "67091014.c5cb48"
+ "3416464c.a143ea"
]
]
},
{
- "id": "67091014.c5cb48",
+ "id": "3416464c.a143ea",
"type": "returnFailure",
"name": "return failure",
"xml": "<return status='failure'>\n <parameter name='ack-final' value='Y'/>\n <parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"controller-id could not be found in DB\" />\n\n",
"comments": "",
- "x": 1215.5,
- "y": 964.5,
- "z": "fcc91756.c8d038",
+ "x": 1186.5,
+ "y": 958.5,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "568e56df.183be8",
+ "id": "c236971a.ee197",
"type": "returnFailure",
"name": "return failure",
"xml": "<return status='failure'>\n <parameter name='ack-final' value='Y'/>\n <parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Failure in getting controller-id from DB\" />\n\n",
"comments": "",
- "x": 1154.5,
- "y": 1143.5,
- "z": "fcc91756.c8d038",
+ "x": 1125.5,
+ "y": 1137.5,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "3b51b50f.fabfaa",
+ "id": "e57ecfd9.55df58",
"type": "not-found",
"name": "not-found",
"xml": "<outcome value='not-found'>\n",
"comments": "",
"outputs": 1,
- "x": 1006.5,
- "y": 1186.5,
- "z": "fcc91756.c8d038",
+ "x": 977.5,
+ "y": 1180.5,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "74792395.d77524"
+ "d5ad8139.acdf48"
]
]
},
{
- "id": "74792395.d77524",
+ "id": "d5ad8139.acdf48",
"type": "returnFailure",
"name": "return failure",
"xml": "<return status='failure'>\n <parameter name='ack-final' value='Y'/>\n <parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"controller-id could not be found in DB\" />\n\n",
"comments": "",
- "x": 1171.5,
- "y": 1183.5,
- "z": "fcc91756.c8d038",
+ "x": 1142.5,
+ "y": 1177.5,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "f7bc5da7.da31b",
+ "id": "ad96f3f.ca0439",
"type": "switchNode",
"name": "switch network_length",
"xml": "<switch test='`$topology.networks.network_length >= 2`'>\n",
"comments": "",
"outputs": 1,
- "x": 2682,
- "y": 335,
- "z": "fcc91756.c8d038",
+ "x": 2653,
+ "y": 329,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "aa4a8663.38bb68"
+ "d135440e.332828"
]
]
},
{
- "id": "aa4a8663.38bb68",
+ "id": "d135440e.332828",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 2864,
- "y": 336,
- "z": "fcc91756.c8d038",
+ "x": 2835,
+ "y": 330,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "efdac693.289728"
+ "9dfbe1b1.0501b8"
]
]
},
{
- "id": "6a7f62ea.d32524",
+ "id": "27de91fe.6ca4f6",
"type": "for",
"name": "for each Network",
"xml": "<for index='netidx' start='0' end='`$topology.networks.network_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 3237,
- "y": 329,
- "z": "fcc91756.c8d038",
+ "x": 3208,
+ "y": 323,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "de962ed4.8e2558"
+ "7ec0ad88.0666cc"
]
]
},
{
- "id": "de962ed4.8e2558",
+ "id": "7ec0ad88.0666cc",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 3455,
- "y": 326,
- "z": "fcc91756.c8d038",
+ "x": 3426,
+ "y": 320,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "d31ddaea.690348",
- "bbbca45f.8e2228",
- "acccc325.a38838"
+ "8fdc47cc.432ab",
+ "b5eed741.5fbb08",
+ "1656178e.3ba998"
]
]
},
{
- "id": "73e20b64.41827c",
+ "id": "5634a256.4e2744",
"type": "call",
"name": "call update-tp-ttp-relationship",
"xml": "<call module='DataChange' rpc='update-tp-ttp-relationship' mode='sync' >\n",
"comments": "",
"outputs": 1,
- "x": 3270,
- "y": 389,
- "z": "fcc91756.c8d038",
+ "x": 3241,
+ "y": 383,
+ "z": "8cb67e95.d771b8",
"wires": [
[]
]
},
{
- "id": "efdac693.289728",
+ "id": "9dfbe1b1.0501b8",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic='true'>",
"atomic": "true",
"comments": "",
"outputs": 1,
- "x": 3034,
- "y": 332,
- "z": "fcc91756.c8d038",
+ "x": 3005,
+ "y": 326,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "6a7f62ea.d32524",
- "73e20b64.41827c"
+ "27de91fe.6ca4f6",
+ "5634a256.4e2744"
]
]
},
{
- "id": "acccc325.a38838",
+ "id": "1656178e.3ba998",
"type": "set",
"name": "unset network",
"xml": "<set>\n<parameter name='network.' value='' />\n",
"comments": "",
- "x": 3614,
- "y": 266,
- "z": "fcc91756.c8d038",
+ "x": 3585,
+ "y": 260,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "d31ddaea.690348",
+ "id": "8fdc47cc.432ab",
"type": "set",
"name": "set network",
"xml": "<set>\n<parameter name='network.' value='`$topology.networks.network[$netidx].`' />\n",
"comments": "",
- "x": 3608,
- "y": 314,
- "z": "fcc91756.c8d038",
+ "x": 3579,
+ "y": 308,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "bbbca45f.8e2228",
+ "id": "b5eed741.5fbb08",
"type": "switchNode",
"name": "switch network-types with topologyId",
"xml": "<switch test='`$network.te-topology-id`'>\n",
"comments": "",
"outputs": 1,
- "x": 3685,
- "y": 361,
- "z": "fcc91756.c8d038",
+ "x": 3656,
+ "y": 355,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "e4f22bce.03ea18",
- "2f6da0f9.e964d8"
+ "c1423a29.1c46e8",
+ "ab490ddf.8e1c1"
]
]
},
{
- "id": "e4f22bce.03ea18",
+ "id": "c1423a29.1c46e8",
"type": "outcome",
- "name": "11",
- "xml": "<outcome value='11'>\n",
+ "name": "1",
+ "xml": "<outcome value='1'>\n",
"comments": "",
"outputs": 1,
- "x": 3911,
- "y": 330,
- "z": "fcc91756.c8d038",
+ "x": 3882,
+ "y": 324,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "a545d36e.f0b618"
+ "3c6e5d11.fbd2b2"
]
]
},
{
- "id": "2f6da0f9.e964d8",
+ "id": "ab490ddf.8e1c1",
"type": "outcome",
- "name": "33",
- "xml": "<outcome value='33'>\n",
+ "name": "2",
+ "xml": "<outcome value='2'>\n",
"comments": "",
"outputs": 1,
- "x": 3911,
- "y": 391,
- "z": "fcc91756.c8d038",
+ "x": 3882,
+ "y": 385,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "d2ccc5d0.bc949"
+ "654a57a4.0fd38"
]
]
},
{
- "id": "dcbdf3ee.469d4",
+ "id": "adf965cc.3e515",
"type": "set",
"name": "set network-otn",
"xml": "<set>\n<parameter name='network-otn.' value='`$topology.networks.network[$netidx].`' />\n",
"comments": "",
- "x": 4206,
- "y": 330,
- "z": "fcc91756.c8d038",
+ "x": 4177,
+ "y": 324,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "6a7bd0f0.92b65",
+ "id": "f1dbbcab.0dda4",
"type": "set",
"name": "set network eth",
"xml": "<set>\n<parameter name='network-eth.' value='`$topology.networks.network[$netidx].`' />\n",
"comments": "",
- "x": 4206,
- "y": 391,
- "z": "fcc91756.c8d038",
+ "x": 4177,
+ "y": 385,
+ "z": "8cb67e95.d771b8",
"wires": []
},
{
- "id": "a545d36e.f0b618",
+ "id": "3c6e5d11.fbd2b2",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 4045,
- "y": 330,
- "z": "fcc91756.c8d038",
+ "x": 4016,
+ "y": 324,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "dcbdf3ee.469d4"
+ "adf965cc.3e515"
]
]
},
{
- "id": "d2ccc5d0.bc949",
+ "id": "654a57a4.0fd38",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 4046,
- "y": 391,
- "z": "fcc91756.c8d038",
+ "x": 4017,
+ "y": 385,
+ "z": "8cb67e95.d771b8",
"wires": [
[
- "6a7bd0f0.92b65"
+ "f1dbbcab.0dda4"
]
]
}
diff --git a/platform-logic/datachange/src/main/json/DataChange_esr-thirdparty-sdnc.json b/platform-logic/datachange/src/main/json/DataChange_esr-thirdparty-sdnc.json
index 4e0b325a..489b429d 100644
--- a/platform-logic/datachange/src/main/json/DataChange_esr-thirdparty-sdnc.json
+++ b/platform-logic/datachange/src/main/json/DataChange_esr-thirdparty-sdnc.json
@@ -1,20 +1,20 @@
[
{
- "id": "99e701a0.2410d",
+ "id": "ef9f11e3.e25b8",
"type": "dgstart",
"name": "DGSTART",
"outputs": 1,
- "x": 136,
- "y": 137,
- "z": "3ca15a5b.03f956",
+ "x": 162,
+ "y": 62,
+ "z": "aef0e494.212df8",
"wires": [
[
- "6330fb87.7056d4"
+ "8cba6f11.c1b35"
]
]
},
{
- "id": "6330fb87.7056d4",
+ "id": "8cba6f11.c1b35",
"type": "service-logic",
"name": "DataChange ${project.version}",
"module": "DataChange",
@@ -22,429 +22,428 @@
"comments": "",
"xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>",
"outputs": 1,
- "x": 322.1111488342285,
- "y": 241.44447135925293,
- "z": "3ca15a5b.03f956",
+ "x": 348.1111488342285,
+ "y": 166.44447135925293,
+ "z": "aef0e494.212df8",
"wires": [
[
- "5d3152d6.fc261c"
+ "b34b0f2b.a26b6"
]
]
},
{
- "id": "5d3152d6.fc261c",
+ "id": "b34b0f2b.a26b6",
"type": "method",
"name": "method esr-thirdparty-sdnc",
"xml": "<method rpc='esr-thirdparty-sdnc' mode='sync'>\n",
"comments": "",
"outputs": 1,
- "x": 319.5556983947754,
- "y": 405.2222566604614,
- "z": "3ca15a5b.03f956",
+ "x": 345.5556983947754,
+ "y": 330.2222566604614,
+ "z": "aef0e494.212df8",
"wires": [
[
- "fd1dfef.d4b4b"
+ "c51c8801.1083a8"
]
]
},
{
- "id": "fd1dfef.d4b4b",
+ "id": "c51c8801.1083a8",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic=\"true\">\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 274.7779655456543,
- "y": 540.1113119125366,
- "z": "3ca15a5b.03f956",
+ "x": 300.7779655456543,
+ "y": 465.1113119125366,
+ "z": "aef0e494.212df8",
"wires": [
[
- "9b412bae.4b0eb8",
- "cceae5d2.b0de18",
- "ec471744.eb69b8",
- "ca9b8814.58fc88"
+ "b07b5277.3d4a68",
+ "b9203f9f.499548",
+ "d3ed9870.114e5"
]
]
},
{
- "id": "cceae5d2.b0de18",
+ "id": "76c0732c.b84824",
"type": "record",
"name": "record",
"xml": "<record plugin=\"org.onap.ccsdk.sli.core.sli.recording.FileRecorder\">\n<parameter name=\"file\" value=\"/opt/opendaylight/current/data/log/svclogic.log\"/>\n<parameter name=\"field1\" value=\"__TIMESTAMP__\"/>\n<parameter name=\"field2\" value=\"data-change-notification\"/>\n<parameter name=\"field3\" value=\"Config\"/>\n<parameter name=\"field4\" value=\"`service-url`\"/>\n<parameter name=\"field5\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url`\"/>",
"comments": "",
"outputs": 1,
- "x": 564,
- "y": 611,
- "z": "3ca15a5b.03f956",
+ "x": 590,
+ "y": 536,
+ "z": "aef0e494.212df8",
"wires": [
[]
]
},
{
- "id": "9b412bae.4b0eb8",
+ "id": "b07b5277.3d4a68",
"type": "for",
"name": "for 0..key-data_length",
"xml": "<for index='idx' start='0' end='`$data-change-notification-input.key-data_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 612.4441070556641,
- "y": 556.190788269043,
- "z": "3ca15a5b.03f956",
+ "x": 638.4441070556641,
+ "y": 481.19078826904297,
+ "z": "aef0e494.212df8",
"wires": [
[
- "d38c4e0c.d3a8e"
+ "e5460d9.eb92a7"
]
]
},
{
- "id": "d38c4e0c.d3a8e",
+ "id": "e5460d9.eb92a7",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 784.3335723876953,
- "y": 555.4130334854126,
- "z": "3ca15a5b.03f956",
+ "x": 810.3335723876953,
+ "y": 480.4130334854126,
+ "z": "aef0e494.212df8",
"wires": [
[
- "923e10da.3124e",
- "ad127485.a941f8",
- "39c9791a.a004c6",
- "2bf6fbdd.98dd24",
- "e16dffa9.206d5",
- "74936d17.d58244",
- "f60efc3e.9d559"
+ "1f482195.4aed1e",
+ "e326585b.5a2c8",
+ "62f527aa.843a1",
+ "a3b99d23.ded5b8",
+ "6c2b24b6.182ef4",
+ "7c3962c6.d95fe4",
+ "27459292.aa5326"
]
]
},
{
- "id": "923e10da.3124e",
+ "id": "1f482195.4aed1e",
"type": "switchNode",
"name": "switch service-url",
"xml": "<switch test=\"`$data-change-notification-input.key-data[$idx].key-name == 'service-url'`\">\n",
"comments": "",
"outputs": 1,
- "x": 996.5552749633789,
- "y": 465.5241861343384,
- "z": "3ca15a5b.03f956",
+ "x": 1022.5552749633789,
+ "y": 390.5241861343384,
+ "z": "aef0e494.212df8",
"wires": [
[
- "62882f3b.f43fb"
+ "e24bf338.0aa118"
]
]
},
{
- "id": "62882f3b.f43fb",
+ "id": "e24bf338.0aa118",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 1160.5553970336914,
- "y": 464.5554189682007,
- "z": "3ca15a5b.03f956",
+ "x": 1186.5553970336914,
+ "y": 389.5554189682007,
+ "z": "aef0e494.212df8",
"wires": [
[
- "d288b1fe.c97e8"
+ "6a8ce1d8.40cb08"
]
]
},
{
- "id": "d288b1fe.c97e8",
+ "id": "6a8ce1d8.40cb08",
"type": "set",
"name": "set service-url",
"xml": "<set>\n<parameter name='prop.sdncRestApi.thirdpartySdnc.url' value='`$data-change-notification-input.key-data[$idx].key-value`' />\n",
"comments": "",
- "x": 1314.5554885864258,
- "y": 464.1554126739502,
- "z": "3ca15a5b.03f956",
+ "x": 1340.5554885864258,
+ "y": 389.1554126739502,
+ "z": "aef0e494.212df8",
"wires": []
},
{
- "id": "ad127485.a941f8",
+ "id": "e326585b.5a2c8",
"type": "switchNode",
"name": "switch user-name",
"xml": "<switch test=\"`$data-change-notification-input.key-data[$idx].key-name == 'user-name'`\">\n",
"comments": "",
"outputs": 1,
- "x": 993.8450202941895,
- "y": 534.7712459564209,
- "z": "3ca15a5b.03f956",
+ "x": 1019.8450202941895,
+ "y": 459.7712459564209,
+ "z": "aef0e494.212df8",
"wires": [
[
- "32e92192.48f84e"
+ "6369ccba.44219c"
]
]
},
{
- "id": "32e92192.48f84e",
+ "id": "6369ccba.44219c",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 1162.8450088500977,
- "y": 532.8024892807007,
- "z": "3ca15a5b.03f956",
+ "x": 1188.8450088500977,
+ "y": 457.8024892807007,
+ "z": "aef0e494.212df8",
"wires": [
[
- "e32de5c0.443f28"
+ "29fc0e59.2a42b2"
]
]
},
{
- "id": "e32de5c0.443f28",
+ "id": "29fc0e59.2a42b2",
"type": "set",
"name": "set user",
"xml": "<set>\n<parameter name='prop.sdncRestApi.thirdpartySdnc.user' value='`$data-change-notification-input.key-data[$idx].key-value`' />\n",
"comments": "",
- "x": 1298.8451614379883,
- "y": 532.4024801254272,
- "z": "3ca15a5b.03f956",
+ "x": 1324.8451614379883,
+ "y": 457.40248012542725,
+ "z": "aef0e494.212df8",
"wires": []
},
{
- "id": "39c9791a.a004c6",
+ "id": "62f527aa.843a1",
"type": "switchNode",
"name": "switch password",
"xml": "<switch test=\"`$data-change-notification-input.key-data[$idx].key-name == 'password'`\">\n",
"comments": "",
"outputs": 1,
- "x": 991.6228523254395,
- "y": 600.3267955780029,
- "z": "3ca15a5b.03f956",
+ "x": 1017.6228523254395,
+ "y": 525.3267955780029,
+ "z": "aef0e494.212df8",
"wires": [
[
- "699a3ade.cb3b24"
+ "4646e0ce.227428"
]
]
},
{
- "id": "699a3ade.cb3b24",
+ "id": "4646e0ce.227428",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 1163.6228103637695,
- "y": 600.3580408096313,
- "z": "3ca15a5b.03f956",
+ "x": 1189.6228103637695,
+ "y": 525.3580408096313,
+ "z": "aef0e494.212df8",
"wires": [
[
- "b4409b06.1c7a48"
+ "95ef44fa.193e88"
]
]
},
{
- "id": "b4409b06.1c7a48",
+ "id": "95ef44fa.193e88",
"type": "set",
"name": "set password",
"xml": "<set>\n<parameter name='prop.sdncRestApi.thirdpartySdnc.password' value='`$data-change-notification-input.key-data[$idx].key-value`' />\n",
"comments": "",
- "x": 1318.6230545043945,
- "y": 598.9580202102661,
- "z": "3ca15a5b.03f956",
+ "x": 1344.6230545043945,
+ "y": 523.9580202102661,
+ "z": "aef0e494.212df8",
"wires": []
},
{
- "id": "ec471744.eb69b8",
+ "id": "b9203f9f.499548",
"type": "call",
"name": "call esr-thirdparty-sdnc-discovery",
"xml": "<call module='DataChange' rpc='esr-thirdparty-sdnc-discovery' mode='sync' >\n",
"comments": "",
"outputs": 1,
- "x": 635.4377593994141,
- "y": 682.5490007400513,
- "z": "3ca15a5b.03f956",
+ "x": 661.4377593994141,
+ "y": 607.5490007400513,
+ "z": "aef0e494.212df8",
"wires": [
[]
]
},
{
- "id": "2bf6fbdd.98dd24",
+ "id": "a3b99d23.ded5b8",
"type": "switchNode",
"name": "switch esr-system-info-id",
"xml": "<switch test=\"`$data-change-notification-input.key-data[$idx].key-name == 'esr-system-info-id'`\">\n",
"comments": "",
"outputs": 1,
- "x": 1013.4441528320312,
- "y": 654.3331909179688,
- "z": "3ca15a5b.03f956",
+ "x": 1039.4441528320312,
+ "y": 579.3331909179688,
+ "z": "aef0e494.212df8",
"wires": [
[
- "6b800452.92b53c"
+ "1ac41cc3.373a63"
]
]
},
{
- "id": "6b800452.92b53c",
+ "id": "1ac41cc3.373a63",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 1188.4441375732422,
- "y": 652.3643522262573,
- "z": "3ca15a5b.03f956",
+ "x": 1214.4441375732422,
+ "y": 577.3643522262573,
+ "z": "aef0e494.212df8",
"wires": [
[
- "5fb25642.fe13a8"
+ "e82e9936.a40cf"
]
]
},
{
- "id": "5fb25642.fe13a8",
+ "id": "e82e9936.a40cf",
"type": "set",
"name": "set esr-system-info-id",
"xml": "<set>\n<parameter name='prop.sdncRestApi.thirdpartySdnc.system-info-id' value='`$data-change-notification-input.key-data[$idx].key-value`' />\n",
"comments": "",
- "x": 1354.444107055664,
- "y": 653.964376449585,
- "z": "3ca15a5b.03f956",
+ "x": 1380.444107055664,
+ "y": 578.964376449585,
+ "z": "aef0e494.212df8",
"wires": []
},
{
- "id": "e16dffa9.206d5",
+ "id": "6c2b24b6.182ef4",
"type": "switchNode",
"name": "switch thirdparty-sdnc-id",
"xml": "<switch test=\"`$data-change-notification-input.key-data[$idx].key-name == 'thirdparty-sdnc-id'`\">\n",
"comments": "",
"outputs": 1,
- "x": 1008,
- "y": 699,
- "z": "3ca15a5b.03f956",
+ "x": 1034,
+ "y": 624,
+ "z": "aef0e494.212df8",
"wires": [
[
- "c89a0c6d.1572e"
+ "ce1afedb.52692"
]
]
},
{
- "id": "c89a0c6d.1572e",
+ "id": "ce1afedb.52692",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 1182.999984741211,
- "y": 697.0311613082886,
- "z": "3ca15a5b.03f956",
+ "x": 1208.999984741211,
+ "y": 622.0311613082886,
+ "z": "aef0e494.212df8",
"wires": [
[
- "a9287f8e.79595"
+ "a512db5a.75ca9"
]
]
},
{
- "id": "a9287f8e.79595",
+ "id": "a512db5a.75ca9",
"type": "set",
"name": "set thirdparty-sdnc-id",
"xml": "<set>\n<parameter name='prop.sdncRestApi.thirdpartySdnc.id' value='`$data-change-notification-input.key-data[$idx].key-value`' />\n",
"comments": "",
- "x": 1348.9999542236328,
- "y": 698.6311855316162,
- "z": "3ca15a5b.03f956",
+ "x": 1374.9999542236328,
+ "y": 623.6311855316162,
+ "z": "aef0e494.212df8",
"wires": []
},
{
- "id": "74936d17.d58244",
+ "id": "7c3962c6.d95fe4",
"type": "switchNode",
"name": "switch type",
"xml": "<switch test=\"`$data-change-notification-input.key-data[$idx].key-name == 'type'`\">\n",
"comments": "",
"outputs": 1,
- "x": 958.0000305175781,
- "y": 748.0000200271606,
- "z": "3ca15a5b.03f956",
+ "x": 984.0000305175781,
+ "y": 673.0000200271606,
+ "z": "aef0e494.212df8",
"wires": [
[
- "b33cf82.eefe308"
+ "32efc971.8d4076"
]
]
},
{
- "id": "b33cf82.eefe308",
+ "id": "32efc971.8d4076",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 1103.0000343322754,
- "y": 747.0311889648438,
- "z": "3ca15a5b.03f956",
+ "x": 1129.0000343322754,
+ "y": 672.0311889648438,
+ "z": "aef0e494.212df8",
"wires": [
[
- "dfc8eb6b.f283a8"
+ "fdd2a7f.f2554d8"
]
]
},
{
- "id": "dfc8eb6b.f283a8",
+ "id": "fdd2a7f.f2554d8",
"type": "set",
"name": "set type",
"xml": "<set>\n<parameter name='prop.sdncRestApi.type' value='`$data-change-notification-input.key-data[$idx].key-value`' />\n",
"comments": "",
- "x": 1235.0000381469727,
- "y": 746.6312046051025,
- "z": "3ca15a5b.03f956",
+ "x": 1261.0000381469727,
+ "y": 671.6312046051025,
+ "z": "aef0e494.212df8",
"wires": []
},
{
- "id": "f60efc3e.9d559",
+ "id": "27459292.aa5326",
"type": "switchNode",
"name": "switch vendor",
"xml": "<switch test=\"`$data-change-notification-input.key-data[$idx].key-name == 'vendor'`\">\n",
"comments": "",
"outputs": 1,
- "x": 959.0000267028809,
- "y": 804.0000219345093,
- "z": "3ca15a5b.03f956",
+ "x": 985.0000267028809,
+ "y": 729.0000219345093,
+ "z": "aef0e494.212df8",
"wires": [
[
- "f02e6468.4f1ca8"
+ "597caf68.90ecf"
]
]
},
{
- "id": "f02e6468.4f1ca8",
+ "id": "597caf68.90ecf",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 1104.0000305175781,
- "y": 803.0311908721924,
- "z": "3ca15a5b.03f956",
+ "x": 1130.0000305175781,
+ "y": 728.0311908721924,
+ "z": "aef0e494.212df8",
"wires": [
[
- "4287418.30ed9c"
+ "f6b454f7.14ca"
]
]
},
{
- "id": "4287418.30ed9c",
+ "id": "f6b454f7.14ca",
"type": "set",
"name": "set vendor",
"xml": "<set>\n<parameter name='prop.sdncRestApi.vendor' value='`$data-change-notification-input.key-data[$idx].key-value`' />\n",
"comments": "",
- "x": 1236.0000343322754,
- "y": 802.6312065124512,
- "z": "3ca15a5b.03f956",
+ "x": 1262.0000343322754,
+ "y": 727.6312065124512,
+ "z": "aef0e494.212df8",
"wires": []
},
{
- "id": "ca9b8814.58fc88",
+ "id": "d3ed9870.114e5",
"type": "call",
"name": "call validate-esr-thirdparty-sdnc-input",
"xml": "<call module='DataChange' rpc='validate-esr-thirdparty-sdnc-input' mode='sync' >\n",
"comments": "",
"outputs": 1,
- "x": 677.7776336669922,
- "y": 473.9998035430908,
- "z": "3ca15a5b.03f956",
+ "x": 703.7776336669922,
+ "y": 398.9998035430908,
+ "z": "aef0e494.212df8",
"wires": [
[]
]
diff --git a/platform-logic/datachange/src/main/json/DataChange_update-network-links-to-aai.json b/platform-logic/datachange/src/main/json/DataChange_update-network-links-to-aai.json
index 0d6a2784..67136feb 100644
--- a/platform-logic/datachange/src/main/json/DataChange_update-network-links-to-aai.json
+++ b/platform-logic/datachange/src/main/json/DataChange_update-network-links-to-aai.json
@@ -1,20 +1,20 @@
[
{
- "id": "ebe56983.0d3a9",
+ "id": "77244695.5fe13",
"type": "dgstart",
"name": "DGSTART",
"outputs": 1,
- "x": 134,
- "y": 65,
- "z": "3cbec5d5.54ea02",
+ "x": 124,
+ "y": 98,
+ "z": "11329427.2301e4",
"wires": [
[
- "13e5c84a.55bf3"
+ "61db70e6.96f4f"
]
]
},
{
- "id": "13e5c84a.55bf3",
+ "id": "61db70e6.96f4f",
"type": "service-logic",
"name": "DataChange ${project.version}",
"module": "DataChange",
@@ -22,1885 +22,1884 @@
"comments": "",
"xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>",
"outputs": 1,
- "x": 191,
- "y": 144.888916015625,
- "z": "3cbec5d5.54ea02",
+ "x": 181,
+ "y": 177.888916015625,
+ "z": "11329427.2301e4",
"wires": [
[
- "66a22ecb.fd2f58"
+ "1788c320.44101d"
]
]
},
{
- "id": "66a22ecb.fd2f58",
+ "id": "1788c320.44101d",
"type": "method",
"name": "method update-network-links-to-aai",
"xml": "<method rpc='update-network-links-to-aai' mode='sync'>\n",
"comments": "",
"outputs": 1,
- "x": 205,
- "y": 221.22222900390625,
- "z": "3cbec5d5.54ea02",
+ "x": 195,
+ "y": 254.22222900390625,
+ "z": "11329427.2301e4",
"wires": [
[
- "6e3553b1.ce5dcc"
+ "325d107f.de4c6"
]
]
},
{
- "id": "6e3553b1.ce5dcc",
+ "id": "325d107f.de4c6",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic=\"true\">\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 216.33343505859375,
- "y": 298.7779235839844,
- "z": "3cbec5d5.54ea02",
+ "x": 206.33343505859375,
+ "y": 331.7779235839844,
+ "z": "11329427.2301e4",
"wires": [
[
- "ce48b85e.94f938"
+ "772b5f61.91c448"
]
]
},
{
- "id": "a43a6e87.7bb85",
+ "id": "ea8c4290.e9fc4",
"type": "update",
"name": "save logical-link with regular id",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link' \n key='logical-link.link-name = $unique-linkId' >\n<parameter name='link-name' value='`$unique-linkId`' />\n<parameter name='link-id' value='`$link.link-id`' />\n<parameter name='link-type' value='`$link.te.te-link-attributes.access-type`' />\n\n\n\n\n\n",
"comments": "",
"outputs": 1,
- "x": 1091.111083984375,
- "y": 723.111083984375,
- "z": "3cbec5d5.54ea02",
+ "x": 1081.111083984375,
+ "y": 756.111083984375,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "ce48b85e.94f938",
+ "id": "772b5f61.91c448",
"type": "for",
"name": "for each link",
"xml": "<for index='pidx' start='0' end='`$network.link_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 244.88885498046875,
- "y": 392.33331298828125,
- "z": "3cbec5d5.54ea02",
+ "x": 234.88885498046875,
+ "y": 425.33331298828125,
+ "z": "11329427.2301e4",
"wires": [
[
- "dec42fbf.1e3dc8",
- "faf4c2c8.a313e8",
- "6624aa74.606e14",
- "dbc86076.1de4f",
- "4c4fa03a.a50f2"
+ "34a89003.2e2b",
+ "ba3960a8.1467",
+ "f48b8987.2973f8",
+ "37181089.2d209",
+ "f2821395.fcaa08"
]
]
},
{
- "id": "dec42fbf.1e3dc8",
+ "id": "34a89003.2e2b",
"type": "set",
"name": "set network link's local variables",
"xml": "<set>\n<parameter name='link.' value='`$network.link[$pidx].`' />\n<parameter name='unique-networkId' value='`$tmp.network-id`' />\n\n",
"comments": "",
- "x": 577.111083984375,
- "y": 97.22221374511719,
- "z": "3cbec5d5.54ea02",
+ "x": 567.111083984375,
+ "y": 130.2222137451172,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "9f28786b.9755c",
+ "id": "8fd33aa8.985138",
"type": "for",
"name": "for each label-restriction",
"xml": "<for index='tidx' start='0' end='`$link.te.te-link-attributes.label-restriction_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 1617.4444580078125,
- "y": 943.111083984375,
- "z": "3cbec5d5.54ea02",
+ "x": 1607.4444580078125,
+ "y": 976.111083984375,
+ "z": "11329427.2301e4",
"wires": [
[
- "a10e9de3.90e708",
- "9f6f811c.bccf8",
- "7166bef0.82e4a",
- "c6ea0cbf.fb7cd",
- "441a859d.1c08ec",
- "e1339bff.8f7f98"
+ "5a96ae47.c33778",
+ "6a43eee0.04c1f8",
+ "1f83fd3d.b74253",
+ "db4d2563.f4f978",
+ "49c5f91d.be38c8",
+ "b8324dab.347198"
]
]
},
{
- "id": "a10e9de3.90e708",
+ "id": "5a96ae47.c33778",
"type": "set",
"name": "set label-restriction's local variables",
"xml": "<set>\n<parameter name='unique-lrId' value=\"`$unique-linkId + '-lrId-' + $label-restriction.index`\" />\n",
"comments": "",
- "x": 1922.111328125,
- "y": 908.0000610351562,
- "z": "3cbec5d5.54ea02",
+ "x": 1912.111328125,
+ "y": 941.0000610351562,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "481ae7ff.84ac9",
+ "id": "16e2b4ec.afe953",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 2035.4998779296875,
- "y": 950.74609375,
- "z": "3cbec5d5.54ea02",
+ "x": 2025.4998779296875,
+ "y": 983.74609375,
+ "z": "11329427.2301e4",
"wires": [
[
- "4b5e8d4c.a2cfc4"
+ "180e1ac0.c84c2d"
]
]
},
{
- "id": "958898b9.8616a",
+ "id": "e2eddabf.7af6b",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 2043.178466796875,
- "y": 1009.9604187011719,
- "z": "3cbec5d5.54ea02",
+ "x": 2033.178466796875,
+ "y": 1042.9604187011719,
+ "z": "11329427.2301e4",
"wires": [
[
- "76714a99.5b6304"
+ "c411750f.6a79e8"
]
]
},
{
- "id": "4b5e8d4c.a2cfc4",
+ "id": "180e1ac0.c84c2d",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 2196,
- "y": 950.0000305175781,
- "z": "3cbec5d5.54ea02",
+ "x": 2186,
+ "y": 983.0000305175781,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "1494b149.c9a337",
+ "id": "1718031e.d8e1cd",
"type": "set",
"name": "set src-ltpId dst-ltpId",
"xml": "<set>\n<parameter name='src-ltpId' value=\"`'nodeId-' + $oof.vpn.access-node-id + '-ltpId-' + $oof.vpn.src-access-ltp-id`\" />\n<parameter name='dst-ltpId' value=\"`'nodeId-' + $oof.vpn.access-node-id + '-ltpId-' + $oof.vpn.dst-access-ltp-id`\" />",
"comments": "",
- "x": 2604.5001220703125,
- "y": 2412.545135498047,
- "z": "3cbec5d5.54ea02",
+ "x": 2594.5001220703125,
+ "y": 2445.545135498047,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "ed0f5687.170a7",
+ "id": "df5f7631.41cd8",
"type": "save",
"name": "save srcLTP relationship in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding:relationship-list' \n key='vpn-binding.vpn-id = $tmp.vpnName' \n force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $oof.vpn.access-node-id + '/p-interfaces/p-interface/' + $src-ltpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$src-ltpId`\" />\n\n\n\n",
"comments": "",
"outputs": 1,
- "x": 2638.0001220703125,
- "y": 2452.545135498047,
- "z": "3cbec5d5.54ea02",
+ "x": 2628.0001220703125,
+ "y": 2485.545135498047,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "c964af3.a8439d",
+ "id": "39d523bc.136384",
"type": "save",
"name": "save dstLTP relationship in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding:relationship-list' \n key='vpn-binding.vpn-id = $tmp.vpnName' \n force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $oof.vpn.access-node-id + '/p-interfaces/p-interface/' + $dst-ltpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$dst-ltpId`\" />",
"comments": "",
"outputs": 1,
- "x": 2638.0001220703125,
- "y": 2492.545135498047,
- "z": "3cbec5d5.54ea02",
+ "x": 2628.0001220703125,
+ "y": 2525.545135498047,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "76714a99.5b6304",
+ "id": "c411750f.6a79e8",
"type": "update",
"name": "save label-restriction",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction' \n key='logical-link.link-name = $unique-linkId\n AND label-restriction.id = $unique-lrId' > \n<parameter name='id' value='`$unique-lrId`' />\n<parameter name='label-start' value='`$label-restriction.label-start`' />\n<parameter name='label-end' value='`$label-restriction.label-end`' />\n<parameter name='range-bitmap' value='`$label-restriction.range-bitmap`' />\n<parameter name='label-step' value='`$label-restriction.label-step`' />\n<parameter name='inclusive-exclusive' value='`$label-restriction.inclusive-exclusive`' />\n\n",
"comments": "",
"outputs": 1,
- "x": 2227,
- "y": 1010.0000305175781,
- "z": "3cbec5d5.54ea02",
+ "x": 2217,
+ "y": 1043.0000305175781,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "df8f6a30.0e19f",
+ "id": "a7ae4edd.c4cd68",
"type": "save",
"name": "save link relationship to label-restriction in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list' \n key='logical-link.link-name = $unique-linkId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"label-restriction\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/label-restrictions/label-restriction/' + $unique-lrId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"label-restriction.id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$unique-lrId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 1938,
- "y": 1206,
- "z": "3cbec5d5.54ea02",
+ "x": 1928,
+ "y": 1239,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "9f6f811c.bccf8",
+ "id": "6a43eee0.04c1f8",
"type": "update",
"name": "save label-restriction",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction' \n key='label-restriction.id = $unique-lrId' > \n<parameter name='id' value='`$unique-lrId`' />\n<parameter name='label-start' value='`$label-restriction.label-start.te-label-tpn`' />\n<parameter name='label-end' value='`$label-restriction.label-end.te-label-tpn`' />\n<parameter name='range-bitmap' value='`$label-restriction.range-bitmap`' />\n<parameter name='label-step' value='`$label-restriction.label-step`' />\n<parameter name='inclusive-exclusive' value='`$label-restriction.inclusive-exclusive`' />\n\n",
"comments": "",
"outputs": 1,
- "x": 1876.815185546875,
- "y": 982.5556640625,
- "z": "3cbec5d5.54ea02",
+ "x": 1866.815185546875,
+ "y": 1015.5556640625,
+ "z": "11329427.2301e4",
"wires": [
[
- "481ae7ff.84ac9",
- "958898b9.8616a"
+ "16e2b4ec.afe953",
+ "e2eddabf.7af6b"
]
]
},
{
- "id": "e7971b0b.c3d0c",
+ "id": "30955035.7652f",
"type": "switchNode",
"name": "switch te-link-attributes label-restriction_length",
"xml": "<switch test='`$link.te.te-link-attributes.label-restriction_length`'>\n",
"comments": "",
"outputs": 1,
- "x": 1136,
- "y": 943,
- "z": "3cbec5d5.54ea02",
+ "x": 1126,
+ "y": 976,
+ "z": "11329427.2301e4",
"wires": [
[
- "d0a27e5d.161cf",
- "c301ff98.2e6928",
- "4d75dbb8.4d6b04"
+ "57ae4e2f.8a93c8",
+ "7f343bab.e4c8cc",
+ "22cb05f1.da2172"
]
]
},
{
- "id": "faf4c2c8.a313e8",
+ "id": "ba3960a8.1467",
"type": "switchNode",
"name": "switch link.destination",
"xml": "<switch test='`$link.destination.dest-node`'>\n",
"comments": "",
"outputs": 1,
- "x": 553,
- "y": 202,
- "z": "3cbec5d5.54ea02",
+ "x": 543,
+ "y": 235,
+ "z": "11329427.2301e4",
"wires": [
[
- "998d07b5.34538",
- "4877c101.9ce65"
+ "a0306127.0ff848",
+ "d09a2f1e.24e0c8"
]
]
},
{
- "id": "998d07b5.34538",
+ "id": "a0306127.0ff848",
"type": "outcome",
"name": "Null",
"xml": "<outcome value=''>\n",
"comments": "",
"outputs": 1,
- "x": 757,
- "y": 163,
- "z": "3cbec5d5.54ea02",
+ "x": 747,
+ "y": 196,
+ "z": "11329427.2301e4",
"wires": [
[
- "c3ced1a5.7034b"
+ "da99d9fe.83172"
]
]
},
{
- "id": "4877c101.9ce65",
+ "id": "d09a2f1e.24e0c8",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 754,
- "y": 225,
- "z": "3cbec5d5.54ea02",
+ "x": 744,
+ "y": 258,
+ "z": "11329427.2301e4",
"wires": [
[
- "d4197495.299218"
+ "e7a5a1e8.6ee3f"
]
]
},
{
- "id": "d4197495.299218",
+ "id": "e7a5a1e8.6ee3f",
"type": "set",
"name": "set network link's destination variables",
"xml": "<set>\n<parameter name='dst-tpId' value=\"`'networkId-' + $unique-networkId + '-nodeId-' + $link.destination.dest-node + '-ltpId-' + $link.destination.dest-tp`\" />\n<parameter name='unique-dst-node-Id' value=\"`'networkId-' + $unique-networkId + '-nodeId-' + $link.destination.dest-node`\" />\n<parameter name='is-open-ended-link' value='false' />\n\n",
"comments": "",
- "x": 983,
- "y": 188,
- "z": "3cbec5d5.54ea02",
+ "x": 973,
+ "y": 221,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "c382f34.d97691",
+ "id": "a3f68296.d7ae38",
"type": "set",
"name": "set is-open-ended-link",
"xml": "<set>\n<parameter name='is-open-ended-link' value='true' />\n\n",
"comments": "",
- "x": 1161,
- "y": 63,
- "z": "3cbec5d5.54ea02",
+ "x": 1151,
+ "y": 96,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "ff450949.dbf658",
+ "id": "be73ca4d.23f61",
"type": "save",
"name": "get p-interface from aai",
"xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"p-interface\"\n\t key=\"pnf.pnf-name = $unique-src-node-Id\n\t and p-interface.interface-name = $src-tpId\"\n\t\tlocal-only=\"false\" \n\t\tpfx=\"tmp.aai.p-interface\" >",
"comments": "",
"outputs": 1,
- "x": 1164,
- "y": 148,
- "z": "3cbec5d5.54ea02",
+ "x": 1154,
+ "y": 181,
+ "z": "11329427.2301e4",
"wires": [
[
- "5da3043a.2acbac",
- "1bf53d3.d439ac3",
- "8f4faa5b.7a92c"
+ "d126c02c.3bacd",
+ "4b20a2f1.df693c",
+ "d6c67e44.d54828"
]
]
},
{
- "id": "5da3043a.2acbac",
+ "id": "d126c02c.3bacd",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 1407,
- "y": 143,
- "z": "3cbec5d5.54ea02",
+ "x": 1397,
+ "y": 176,
+ "z": "11329427.2301e4",
"wires": [
[
- "ce061615.442fb"
+ "56d01481.fc3d34"
]
]
},
{
- "id": "1bf53d3.d439ac3",
+ "id": "4b20a2f1.df693c",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 1405,
- "y": 232,
- "z": "3cbec5d5.54ea02",
+ "x": 1395,
+ "y": 265,
+ "z": "11329427.2301e4",
"wires": [
[
- "8dce7fe6.cbf1f"
+ "b4b8cef1.bd5508"
]
]
},
{
- "id": "863e663a.20d8f8",
+ "id": "67c0b205.d4f6ec",
"type": "set",
"name": "set alternative unique link id",
"xml": "<set>\n<parameter name='alt-unique-linkId' value=\"`$tmp.aai.p-interface.inter-domain-plug-id`\" />\n<!--<parameter name='alt-unique-linkId' value=\"`'networkId-' + $unique-networkId + '-linkId-' + $tmp.aai.p-interface.inter-domain-plug-id`\" />-->\n\n",
"comments": "",
- "x": 2080,
- "y": 160,
- "z": "3cbec5d5.54ea02",
+ "x": 2070,
+ "y": 193,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "8dce7fe6.cbf1f",
+ "id": "b4b8cef1.bd5508",
"type": "returnFailure",
"name": "return failure",
"xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
"comments": "",
- "x": 1574,
- "y": 233,
- "z": "3cbec5d5.54ea02",
+ "x": 1564,
+ "y": 266,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "2b1dcd15.312222",
+ "id": "5276aaa7.05e024",
"type": "save",
"name": "get logical-link from aai",
"xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"logical-link\"\n\t key=\"logical-link.link-name = $alt-unique-linkId\"\n\t\tlocal-only=\"false\" \n\t\tpfx=\"tmp.aai.logical-link\" >",
"comments": "",
"outputs": 1,
- "x": 872,
- "y": 669,
- "z": "3cbec5d5.54ea02",
+ "x": 862,
+ "y": 702,
+ "z": "11329427.2301e4",
"wires": [
[
- "ec693039.84dc28",
- "3de532fd.f494f6"
+ "1ee6e430.75131c",
+ "e692eeb1.80fc1"
]
]
},
{
- "id": "8f4faa5b.7a92c",
+ "id": "d6c67e44.d54828",
"type": "not-found",
"name": "not-found",
"xml": "<outcome value='not-found'>\n",
"comments": "",
"outputs": 1,
- "x": 1416.490966796875,
- "y": 185.57403564453125,
- "z": "3cbec5d5.54ea02",
+ "x": 1406.490966796875,
+ "y": 218.57403564453125,
+ "z": "11329427.2301e4",
"wires": [
[
- "788cf8a5.93c298"
+ "ce500e8a.13e1b"
]
]
},
{
- "id": "788cf8a5.93c298",
+ "id": "ce500e8a.13e1b",
"type": "returnFailure",
"name": "return failure",
"xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
"comments": "",
- "x": 1570.0623779296875,
- "y": 188.85977172851562,
- "z": "3cbec5d5.54ea02",
+ "x": 1560.0623779296875,
+ "y": 221.85977172851562,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "98f67a1e.d79eb",
+ "id": "52680ac9.74c6bc",
"type": "switchNode",
"name": "switch is-open-ended-link",
"xml": "<switch test='`$is-open-ended-link`'>\n",
"comments": "",
"outputs": 1,
- "x": 451,
- "y": 708,
- "z": "3cbec5d5.54ea02",
+ "x": 441,
+ "y": 741,
+ "z": "11329427.2301e4",
"wires": [
[
- "6cd18165.d49da8",
- "a4b87205.849aa"
+ "c8f3bc4d.123c58",
+ "d068e94c.b6bab"
]
]
},
{
- "id": "6cd18165.d49da8",
+ "id": "c8f3bc4d.123c58",
"type": "outcomeFalse",
"name": "false",
"xml": "<outcome value='false'>\n",
"comments": "",
"outputs": 1,
- "x": 668,
- "y": 730,
- "z": "3cbec5d5.54ea02",
+ "x": 658,
+ "y": 763,
+ "z": "11329427.2301e4",
"wires": [
[
- "6eb10efe.79be58"
+ "62f182d2.b1427c"
]
]
},
{
- "id": "a4b87205.849aa",
+ "id": "d068e94c.b6bab",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 671,
- "y": 670,
- "z": "3cbec5d5.54ea02",
+ "x": 661,
+ "y": 703,
+ "z": "11329427.2301e4",
"wires": [
[
- "2b1dcd15.312222"
+ "5276aaa7.05e024"
]
]
},
{
- "id": "ec693039.84dc28",
+ "id": "1ee6e430.75131c",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 1116,
- "y": 339,
- "z": "3cbec5d5.54ea02",
+ "x": 1106,
+ "y": 372,
+ "z": "11329427.2301e4",
"wires": [
[
- "7e014e1e.a8dd8"
+ "5326eda4.cd9dac"
]
]
},
{
- "id": "3de532fd.f494f6",
+ "id": "e692eeb1.80fc1",
"type": "not-found",
"name": "not-found",
"xml": "<outcome value='not-found'>\n",
"comments": "",
"outputs": 1,
- "x": 1141.490966796875,
- "y": 534.5740356445312,
- "z": "3cbec5d5.54ea02",
+ "x": 1131.490966796875,
+ "y": 567.5740356445312,
+ "z": "11329427.2301e4",
"wires": [
[
- "308dc22b.73a67e"
+ "169999f1.cf3e56"
]
]
},
{
- "id": "2e5d2820.63e8c",
+ "id": "df93f1df.e408b",
"type": "update",
"name": "save logical-link with alternative link id",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link' \n key='logical-link.link-name = $alt-unique-linkId' >\n<parameter name='link-name' value='`$alt-unique-linkId`' />\n<parameter name='link-id' value='`$link.link-id`' />\n<parameter name='link-type' value='`$link.te.te-link-attributes.access-type`' />\n<parameter name='link-role' value='cross-domain' />\n\n\n\n\n",
"comments": "",
"outputs": 1,
- "x": 1613,
- "y": 556,
- "z": "3cbec5d5.54ea02",
+ "x": 1603,
+ "y": 589,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "6eb10efe.79be58",
+ "id": "62f182d2.b1427c",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic='true'>",
"atomic": "true",
"comments": "",
"outputs": 1,
- "x": 846,
- "y": 738,
- "z": "3cbec5d5.54ea02",
+ "x": 836,
+ "y": 771,
+ "z": "11329427.2301e4",
"wires": [
[
- "a43a6e87.7bb85",
- "e7971b0b.c3d0c",
- "a6b6ae44.7eb2a8",
- "370b414a.4eba76",
- "4aadddbd.521a8c"
+ "ea8c4290.e9fc4",
+ "30955035.7652f",
+ "cdc97515.c97b28",
+ "43ca3bbb.8af21c"
]
]
},
{
- "id": "521f891d.91cfc8",
+ "id": "922e1b5e.413f38",
"type": "save",
"name": "update dest TP by putting src TP of the current link",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list' \n key='logical-link.link-name = $alt-unique-linkId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<!--<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />-->\n<!--<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $unique-src-node-Id + '/p-interfaces/p-interface/' + $src-tpId`\" />-->\n<!--<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />-->\n<!--<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$src-tpId`\" />-->\n\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $unique-src-node-Id + '/p-interfaces/p-interface/' + $src-tpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$src-tpId`\" />",
"comments": "",
"outputs": 1,
- "x": 2527,
- "y": 385,
- "z": "3cbec5d5.54ea02",
+ "x": 2517,
+ "y": 418,
+ "z": "11329427.2301e4",
"wires": [
[
- "27e614a8.33d2f4",
- "5b692078.dcecc"
+ "b261d13e.1146f",
+ "acda2064.208dd8"
]
]
},
{
- "id": "6468635a.9e6d94",
+ "id": "a65d4fc9.cbb8f8",
"type": "save",
"name": "save source and dest TP",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list' \n key='logical-link.link-name = $unique-linkId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $unique-src-node-Id + '/p-interfaces/p-interface/' + $src-tpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$src-tpId`\" />\n\n<parameter name=\"relationship-list.relationship[1].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[1].related-link\" value=\"`'/network/pnfs/pnf/' + $unique-dst-node-Id + '/p-interfaces/p-interface/' + $dst-tpId`\" />\n<parameter name=\"relationship-list.relationship[1].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[1].relationship-data[0].relationship-value\" value=\"`$dst-tpId`\" />",
"comments": "",
"outputs": 1,
- "x": 1076,
- "y": 1177,
- "z": "3cbec5d5.54ea02",
+ "x": 1066,
+ "y": 1210,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "c3ced1a5.7034b",
+ "id": "da99d9fe.83172",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 945,
- "y": 124,
- "z": "3cbec5d5.54ea02",
+ "x": 935,
+ "y": 157,
+ "z": "11329427.2301e4",
"wires": [
[
- "c382f34.d97691",
- "ff450949.dbf658",
- "b85c23da.8517d"
+ "a3f68296.d7ae38",
+ "be73ca4d.23f61",
+ "7e55092c.663d38"
]
]
},
{
- "id": "308dc22b.73a67e",
+ "id": "169999f1.cf3e56",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic='true'>",
"atomic": "true",
"comments": "",
"outputs": 1,
- "x": 1330,
- "y": 537,
- "z": "3cbec5d5.54ea02",
+ "x": 1320,
+ "y": 570,
+ "z": "11329427.2301e4",
"wires": [
[
- "2e5d2820.63e8c",
- "3996c800.afa0a8",
- "d3a8ab71.fccb7",
- "6c137df8.722b8c"
+ "df93f1df.e408b",
+ "396e80a6.960c58",
+ "57d29a3c.fe54c4",
+ "3f800f5b.cc91f8"
]
]
},
{
- "id": "3996c800.afa0a8",
+ "id": "396e80a6.960c58",
"type": "save",
"name": "save source only",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list' \n key='logical-link.link-name = $alt-unique-linkId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $unique-src-node-Id + '/p-interfaces/p-interface/' + $src-tpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$src-tpId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 1542,
- "y": 617,
- "z": "3cbec5d5.54ea02",
+ "x": 1532,
+ "y": 650,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "51ef22a.000c3dc",
+ "id": "19afd467.bf4a8c",
"type": "for",
"name": "for each label-restriction",
"xml": "<for index='tidx' start='0' end='`$link.te.te-link-attributes.label-restriction_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 2069,
- "y": 743,
- "z": "3cbec5d5.54ea02",
+ "x": 2059,
+ "y": 776,
+ "z": "11329427.2301e4",
"wires": [
[
- "cb31166c.2edd2",
- "db1f7d98.2def68",
- "c4dd69cd.d872b",
- "f581a4e4.841408",
- "f2fac409.beeaf8",
- "ea1f1d76.87207"
+ "93dd8916.c138b",
+ "e065f5f8.a10718",
+ "667c042d.d704cc",
+ "1b0b9ceb.8ee5ab",
+ "98a97ae5.7ea6d",
+ "54564b15.ad996c"
]
]
},
{
- "id": "cb31166c.2edd2",
+ "id": "93dd8916.c138b",
"type": "set",
"name": "set label-restriction's local variables",
"xml": "<set>\n<parameter name='label-restriction.' value='`$link.te.te-link-attributes.label-restriction[$tidx].`' />\n",
"comments": "",
- "x": 2359.6669921875,
- "y": 621.8889770507812,
- "z": "3cbec5d5.54ea02",
+ "x": 2349.6669921875,
+ "y": 654.8889770507812,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "1dcb5e38.622da2",
+ "id": "adaa1c19.7064b",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 2501.0555419921875,
- "y": 700.635009765625,
- "z": "3cbec5d5.54ea02",
+ "x": 2491.0555419921875,
+ "y": 733.635009765625,
+ "z": "11329427.2301e4",
"wires": [
[
- "2526017c.1c252e"
+ "c7ff7951.db72b8"
]
]
},
{
- "id": "19906550.30ac83",
+ "id": "85c8d180.3fabc",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 2508.734130859375,
- "y": 759.8493347167969,
- "z": "3cbec5d5.54ea02",
+ "x": 2498.734130859375,
+ "y": 792.8493347167969,
+ "z": "11329427.2301e4",
"wires": [
[
- "52d0ed95.142f34"
+ "82edaa01.6319c"
]
]
},
{
- "id": "2526017c.1c252e",
+ "id": "c7ff7951.db72b8",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 2661.5556640625,
- "y": 699.8889465332031,
- "z": "3cbec5d5.54ea02",
+ "x": 2651.5556640625,
+ "y": 732.8889465332031,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "52d0ed95.142f34",
+ "id": "82edaa01.6319c",
"type": "update",
"name": "save label-restriction",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction' \n key='logical-link.link-name = $alt-unique-linkId\n AND label-restriction.id = $unique-lrId' > \n<parameter name='id' value='`$unique-lrId`' />\n<parameter name='label-start' value='`$label-restriction.label-start`' />\n<parameter name='label-end' value='`$label-restriction.label-end`' />\n<parameter name='range-bitmap' value='`$label-restriction.range-bitmap`' />\n<parameter name='label-step' value='`$label-restriction.label-step`' />\n<parameter name='inclusive-exclusive' value='`$label-restriction.inclusive-exclusive`' />\n\n",
"comments": "",
"outputs": 1,
- "x": 2692.5556640625,
- "y": 759.8889465332031,
- "z": "3cbec5d5.54ea02",
+ "x": 2682.5556640625,
+ "y": 792.8889465332031,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "e7979ea6.dbce4",
+ "id": "66919d0c.15300c",
"type": "save",
"name": "save link relationship to label-restriction in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list' \n key='logical-link.link-name = $alt-unique-linkId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"label-restriction\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/label-restrictions/label-restriction/' + $unique-lrId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"label-restriction.id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$unique-lrId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 2368.5556640625,
- "y": 892.888916015625,
- "z": "3cbec5d5.54ea02",
+ "x": 2358.5556640625,
+ "y": 925.888916015625,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "db1f7d98.2def68",
+ "id": "e065f5f8.a10718",
"type": "update",
"name": "save label-restriction",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction' \n key='label-restriction.id = $unique-lrId' > \n<parameter name='id' value='`$unique-lrId`' />\n<parameter name='label-start' value='`$label-restriction.label-start.te-label-tpn`' />\n<parameter name='label-end' value='`$label-restriction.label-end.te-label-tpn`' />\n<parameter name='range-bitmap' value='`$label-restriction.range-bitmap`' />\n<parameter name='label-step' value='`$label-restriction.label-step`' />\n<parameter name='inclusive-exclusive' value='`$label-restriction.inclusive-exclusive`' />\n",
"comments": "",
"outputs": 1,
- "x": 2310.370849609375,
- "y": 732.444580078125,
- "z": "3cbec5d5.54ea02",
+ "x": 2300.370849609375,
+ "y": 765.444580078125,
+ "z": "11329427.2301e4",
"wires": [
[
- "1dcb5e38.622da2",
- "19906550.30ac83"
+ "adaa1c19.7064b",
+ "85c8d180.3fabc"
]
]
},
{
- "id": "6624aa74.606e14",
+ "id": "f48b8987.2973f8",
"type": "set",
"name": "set more local variables",
"xml": "<set>\n<parameter name='unique-linkId' value=\"`'networkId-' + $unique-networkId + '-linkId-' + $link.link-id`\" />\n<parameter name='src-tpId' value=\"`'networkId-' + $unique-networkId + '-nodeId-' + $link.source.source-node + '-ltpId-' + $link.source.source-tp`\" />\n<parameter name='unique-src-node-Id' value=\"`'networkId-' + $unique-networkId + '-nodeId-' + $link.source.source-node`\" />\n",
"comments": "",
- "x": 554,
- "y": 147,
- "z": "3cbec5d5.54ea02",
+ "x": 544,
+ "y": 180,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "6e337c6f.cd362c",
+ "id": "aa54070.82178f8",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 1496,
- "y": 60,
- "z": "3cbec5d5.54ea02",
+ "x": 1486,
+ "y": 93,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "ce061615.442fb",
+ "id": "56d01481.fc3d34",
"type": "switchNode",
"name": "switch inter-domain-plug-id of the src tp",
"xml": "<switch test='`$tmp.aai.p-interface.inter-domain-plug-id`'>\n",
"comments": "",
"outputs": 1,
- "x": 1646,
- "y": 140,
- "z": "3cbec5d5.54ea02",
+ "x": 1636,
+ "y": 173,
+ "z": "11329427.2301e4",
"wires": [
[
- "a445a8a1.87665",
- "7abf5d27.d789e4"
+ "21fe7bc0.8046c4",
+ "ad83b45.12739c8"
]
]
},
{
- "id": "a445a8a1.87665",
+ "id": "21fe7bc0.8046c4",
"type": "outcome",
"name": "Null",
"xml": "<outcome value=''>\n",
"comments": "",
"outputs": 1,
- "x": 1876,
- "y": 87,
- "z": "3cbec5d5.54ea02",
+ "x": 1866,
+ "y": 120,
+ "z": "11329427.2301e4",
"wires": [
[
- "85dfc9e9.b205a8"
+ "82a5af1.d5baf5"
]
]
},
{
- "id": "7abf5d27.d789e4",
+ "id": "ad83b45.12739c8",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 1880,
- "y": 160,
- "z": "3cbec5d5.54ea02",
+ "x": 1870,
+ "y": 193,
+ "z": "11329427.2301e4",
"wires": [
[
- "863e663a.20d8f8"
+ "67c0b205.d4f6ec"
]
]
},
{
- "id": "85dfc9e9.b205a8",
+ "id": "82a5af1.d5baf5",
"type": "set",
"name": "unset is-open-ended-link",
"xml": "<set>\n<parameter name='is-open-ended-link' value='false' />\n<parameter name='is-invalid-open-ended-link' value='true' />\n\n",
"comments": "",
- "x": 2064,
- "y": 83,
- "z": "3cbec5d5.54ea02",
+ "x": 2054,
+ "y": 116,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "5df859b8.6bf788",
+ "id": "6944be1e.90178",
"type": "save",
"name": "delete logical-link",
"xml": "<delete plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"logical-link\" \n\tkey=\"logical-link.link-name = $tmp.link-name\" >\n",
"comments": "",
"outputs": 1,
- "x": 2045,
- "y": 32,
- "z": "3cbec5d5.54ea02",
+ "x": 2035,
+ "y": 65,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "dbc86076.1de4f",
+ "id": "37181089.2d209",
"type": "set",
"name": "unset network link's local variables",
"xml": "<set>\n<parameter name='link.' value='' />\n<parameter name='dst-tpId' value='' />\n<parameter name='unique-dst-node-Id' value='' />\n<parameter name='is-open-ended-link' value='false' />\n<parameter name='is-invalid-open-ended-link' value='false' />\n\n",
"comments": "",
- "x": 582,
- "y": 39,
- "z": "3cbec5d5.54ea02",
+ "x": 572,
+ "y": 72,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "5be7d94e.325bd",
+ "id": "d1dc92f0.18d3d",
"type": "switchNode",
"name": "switch is-invalid-open-ended-link",
"xml": "<switch test='`$is-invalid-open-ended-link`'>\n",
"comments": "",
"outputs": 1,
- "x": 672,
- "y": 1155,
- "z": "3cbec5d5.54ea02",
+ "x": 662,
+ "y": 1188,
+ "z": "11329427.2301e4",
"wires": [
[
- "3a021903.aa35de",
- "bd6a87fb.60cad"
+ "927f7161.cc38b",
+ "df6ba571.497fe8"
]
]
},
{
- "id": "bd6a87fb.60cad",
+ "id": "df6ba571.497fe8",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 879,
- "y": 1123,
- "z": "3cbec5d5.54ea02",
+ "x": 869,
+ "y": 1156,
+ "z": "11329427.2301e4",
"wires": [
[
- "7d536275.1f7f6c"
+ "fabfad0b.ca8968"
]
]
},
{
- "id": "3a021903.aa35de",
+ "id": "927f7161.cc38b",
"type": "outcomeFalse",
"name": "false",
"xml": "<outcome value='false'>\n",
"comments": "",
"outputs": 1,
- "x": 876,
- "y": 1183,
- "z": "3cbec5d5.54ea02",
+ "x": 866,
+ "y": 1216,
+ "z": "11329427.2301e4",
"wires": [
[
- "6468635a.9e6d94"
+ "a65d4fc9.cbb8f8"
]
]
},
{
- "id": "7d536275.1f7f6c",
+ "id": "fabfad0b.ca8968",
"type": "save",
"name": "save source only",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list' \n key='logical-link.link-name = $unique-linkId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $unique-src-node-Id + '/p-interfaces/p-interface/' + $src-tpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$src-tpId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 1059,
- "y": 1122,
- "z": "3cbec5d5.54ea02",
+ "x": 1049,
+ "y": 1155,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "c290c25a.9cb058",
+ "id": "19677d78.14b74b",
"type": "switchNode",
"name": "switch relationship-list_length",
"xml": "<switch test='`$tmp.aai.logical-link.relationship-list_length`'>\n",
"comments": "",
"outputs": 1,
- "x": 1388,
- "y": 312,
- "z": "3cbec5d5.54ea02",
+ "x": 1378,
+ "y": 345,
+ "z": "11329427.2301e4",
"wires": [
[
- "8171cd76.e9b4d",
- "9c1be6a.eb1c998",
- "be2751bf.fc2318"
+ "d7971422.333fa8",
+ "18cbfa68.3dd856",
+ "31f7a610.b076e2"
]
]
},
{
- "id": "8ea0dfd0.e04d5",
+ "id": "aa6b17d7.21416",
"type": "switchNode",
"name": "switch relationship-list_length != $src-tpId",
"xml": "<switch test='`$tmp.aai.logical-link.relationship-list.relationship[0].relationship-data[1].relationship-value != $src-tpId`'>\n",
"comments": "",
"outputs": 1,
- "x": 1839,
- "y": 326,
- "z": "3cbec5d5.54ea02",
+ "x": 1829,
+ "y": 359,
+ "z": "11329427.2301e4",
"wires": [
[
- "f6fe2af1.32bcd"
+ "b03e88ee.6fe68"
]
]
},
{
- "id": "8171cd76.e9b4d",
+ "id": "d7971422.333fa8",
"type": "outcome",
"name": "0",
"xml": "<outcome value='0'>\n",
"comments": "",
"outputs": 1,
- "x": 1606,
- "y": 271,
- "z": "3cbec5d5.54ea02",
+ "x": 1596,
+ "y": 304,
+ "z": "11329427.2301e4",
"wires": [
[
- "6d799180.26117"
+ "33af6da8.d2ef82"
]
]
},
{
- "id": "9c1be6a.eb1c998",
+ "id": "18cbfa68.3dd856",
"type": "outcome",
"name": "1",
"xml": "<outcome value='1'>\n",
"comments": "",
"outputs": 1,
- "x": 1603,
- "y": 308,
- "z": "3cbec5d5.54ea02",
+ "x": 1593,
+ "y": 341,
+ "z": "11329427.2301e4",
"wires": [
[
- "8ea0dfd0.e04d5"
+ "aa6b17d7.21416"
]
]
},
{
- "id": "be2751bf.fc2318",
+ "id": "31f7a610.b076e2",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 1613,
- "y": 382,
- "z": "3cbec5d5.54ea02",
+ "x": 1603,
+ "y": 415,
+ "z": "11329427.2301e4",
"wires": [
[
- "a1d91cb.fcaede"
+ "6e8cc864.7485f8"
]
]
},
{
- "id": "a1d91cb.fcaede",
+ "id": "6e8cc864.7485f8",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 1750,
- "y": 383,
- "z": "3cbec5d5.54ea02",
+ "x": 1740,
+ "y": 416,
+ "z": "11329427.2301e4",
"wires": [
[
- "9a538487.c08aa"
+ "899a17e9.aedab8"
]
]
},
{
- "id": "6d799180.26117",
+ "id": "33af6da8.d2ef82",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 1748,
- "y": 279,
- "z": "3cbec5d5.54ea02",
+ "x": 1738,
+ "y": 312,
+ "z": "11329427.2301e4",
"wires": [
[
- "92abbd48.ac3ab"
+ "af13ae20.bebac"
]
]
},
{
- "id": "4c4fa03a.a50f2",
+ "id": "f2821395.fcaa08",
"type": "switchNode",
"name": "switch is-invalid-open-ended-link",
"xml": "<switch test='`$is-invalid-open-ended-link`'>\n",
"comments": "",
"outputs": 1,
- "x": 449,
- "y": 536,
- "z": "3cbec5d5.54ea02",
+ "x": 439,
+ "y": 569,
+ "z": "11329427.2301e4",
"wires": [
[
- "7a803037.7fbd88",
- "a043c19c.e11a18"
+ "9c119bdb.5496e8",
+ "d08739e0.57fa3"
]
]
},
{
- "id": "a043c19c.e11a18",
+ "id": "d08739e0.57fa3",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 656,
- "y": 504,
- "z": "3cbec5d5.54ea02",
+ "x": 646,
+ "y": 537,
+ "z": "11329427.2301e4",
"wires": [
[
- "2aea0930.46cd5e"
+ "1951ba10.65f9fe"
]
]
},
{
- "id": "7a803037.7fbd88",
+ "id": "9c119bdb.5496e8",
"type": "outcomeFalse",
"name": "false",
"xml": "<outcome value='false'>\n",
"comments": "",
"outputs": 1,
- "x": 653,
- "y": 564,
- "z": "3cbec5d5.54ea02",
+ "x": 643,
+ "y": 597,
+ "z": "11329427.2301e4",
"wires": [
[
- "98f67a1e.d79eb"
+ "52680ac9.74c6bc"
]
]
},
{
- "id": "2aea0930.46cd5e",
+ "id": "1951ba10.65f9fe",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 807,
- "y": 504,
- "z": "3cbec5d5.54ea02",
+ "x": 797,
+ "y": 537,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "a6b6ae44.7eb2a8",
+ "id": "cdc97515.c97b28",
"type": "save",
"name": "save source and dest TP",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list' \n key='logical-link.link-name = $unique-linkId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $unique-src-node-Id + '/p-interfaces/p-interface/' + $src-tpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$src-tpId`\" />\n\n<parameter name=\"relationship-list.relationship[1].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[1].related-link\" value=\"`'/network/pnfs/pnf/' + $unique-dst-node-Id + '/p-interfaces/p-interface/' + $dst-tpId`\" />\n<parameter name=\"relationship-list.relationship[1].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[1].relationship-data[0].relationship-value\" value=\"`$dst-tpId`\" />",
"comments": "",
"outputs": 1,
- "x": 1074,
- "y": 826,
- "z": "3cbec5d5.54ea02",
+ "x": 1064,
+ "y": 859,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "f6fe2af1.32bcd",
+ "id": "b03e88ee.6fe68",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 2086,
- "y": 317,
- "z": "3cbec5d5.54ea02",
+ "x": 2076,
+ "y": 350,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "370b414a.4eba76",
+ "id": "57515da6.acd334",
"type": "record",
"name": "log file",
"xml": " <record plugin=\"org.onap.ccsdk.sli.core.sli.recording.FileRecorder\">\n <parameter name=\"file\" value=\"/opt/onap/logTopologyDiscovery.txt\" />\n <parameter name=\"field1\" value=\"__TIMESTAMP__\" />\n <parameter name=\"field2\" value=\"uniqueLinkId\" />\n <parameter name=\"field3\" value=\"`$unique-linkId`\" />\n <parameter name=\"field4\" value=\"srcTpId\" />\n <parameter name=\"field5\" value=\"`$src-tpId`\" />\n <parameter name=\"field6\" value=\"dstTpId\" />\n <parameter name=\"field7\" value=\"`$dst-tpId`\" />\n ",
"comments": "",
"outputs": 1,
- "x": 1019,
- "y": 771,
- "z": "3cbec5d5.54ea02",
+ "x": 1009,
+ "y": 804,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "b85c23da.8517d",
+ "id": "7e55092c.663d38",
"type": "set",
"name": "unset tmp.aai.p-interface",
"xml": "<set>\n<parameter name='tmp.aai.p-interface' value='' />\n<parameter name='tmp.aai.p-interface.inter-domain-plug-id' value='' />\n\n",
"comments": "",
- "x": 1162,
- "y": 101,
- "z": "3cbec5d5.54ea02",
+ "x": 1152,
+ "y": 134,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "e0d728fb.03e448",
+ "id": "4b963b57.e5bedc",
"type": "record",
"name": "log file",
"xml": " <record plugin=\"org.onap.ccsdk.sli.core.sli.recording.FileRecorder\">\n <parameter name=\"file\" value=\"/opt/onap/logMerge.txt\" />\n <parameter name=\"field1\" value=\"__TIMESTAMP__\" />\n <parameter name=\"field2\" value=\"altUniqueLinkId\" />\n <parameter name=\"field3\" value=\"`$alt-unique-linkId`\" />\n <parameter name=\"field4\" value=\"srcTpId\" />\n <parameter name=\"field5\" value=\"`$src-tpId`\" />\n <parameter name=\"field6\" value=\"relationship-value\" />\n <parameter name=\"field7\" value='`$tmp.aai.logical-link.relationship-list.relationship[0].relationship-data[1].relationship-value`' />\n ",
"comments": "",
"outputs": 1,
- "x": 2402,
- "y": 289,
- "z": "3cbec5d5.54ea02",
+ "x": 2392,
+ "y": 322,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "7e014e1e.a8dd8",
+ "id": "5326eda4.cd9dac",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 2078,
- "y": 534,
- "z": "3cbec5d5.54ea02",
+ "x": 2068,
+ "y": 567,
+ "z": "11329427.2301e4",
"wires": [
[
- "e0d728fb.03e448",
- "521f891d.91cfc8",
- "cedaeaf5.78fef8",
- "740002f8.4aedac"
+ "4b963b57.e5bedc",
+ "922e1b5e.413f38",
+ "a18dc6ab.ac0e98",
+ "6723873e.80324"
]
]
},
{
- "id": "27e614a8.33d2f4",
+ "id": "b261d13e.1146f",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 2816,
- "y": 355,
- "z": "3cbec5d5.54ea02",
+ "x": 2806,
+ "y": 388,
+ "z": "11329427.2301e4",
"wires": [
[
- "c5f6a36b.0845d8"
+ "9a2a7ebb.6f02f"
]
]
},
{
- "id": "5b692078.dcecc",
+ "id": "acda2064.208dd8",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 2823.6785888671875,
- "y": 414.2143249511719,
- "z": "3cbec5d5.54ea02",
+ "x": 2813.6785888671875,
+ "y": 447.2143249511719,
+ "z": "11329427.2301e4",
"wires": [
[
- "b2044c9b.8096a"
+ "693b3172.16e028"
]
]
},
{
- "id": "c5f6a36b.0845d8",
+ "id": "9a2a7ebb.6f02f",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 2964,
- "y": 350,
- "z": "3cbec5d5.54ea02",
+ "x": 2954,
+ "y": 383,
+ "z": "11329427.2301e4",
"wires": [
[
- "ad2b40a6.ff37f8"
+ "24d0b2c2.21a89e"
]
]
},
{
- "id": "ad2b40a6.ff37f8",
+ "id": "24d0b2c2.21a89e",
"type": "record",
"name": "log file",
"xml": " <record plugin=\"org.onap.ccsdk.sli.core.sli.recording.FileRecorder\">\n <parameter name=\"file\" value=\"/opt/onap/logMergeSuccess.txt\" />\n <parameter name=\"field1\" value=\"__TIMESTAMP__\" />\n <parameter name=\"field2\" value=\"altUniqueLinkId\" />\n <parameter name=\"field3\" value=\"`$alt-unique-linkId`\" />\n <parameter name=\"field4\" value=\"srcTpId\" />\n <parameter name=\"field5\" value=\"`$src-tpId`\" />\n <parameter name=\"field6\" value=\"relationship-value\" />\n <parameter name=\"field7\" value='`$tmp.aai.logical-link.relationship-list.relationship[0].relationship-data[1].relationship-value`' />\n ",
"comments": "",
"outputs": 1,
- "x": 3109,
- "y": 350,
- "z": "3cbec5d5.54ea02",
+ "x": 3099,
+ "y": 383,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "b2044c9b.8096a",
+ "id": "693b3172.16e028",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 2971,
- "y": 412,
- "z": "3cbec5d5.54ea02",
+ "x": 2961,
+ "y": 445,
+ "z": "11329427.2301e4",
"wires": [
[
- "a8dbf2db.72f548"
+ "cbdf69e4.857a38"
]
]
},
{
- "id": "92abbd48.ac3ab",
+ "id": "af13ae20.bebac",
"type": "record",
"name": "log file",
"xml": " <record plugin=\"org.onap.ccsdk.sli.core.sli.recording.FileRecorder\">\n <parameter name=\"file\" value=\"/opt/onap/logNoRelationship.txt\" />\n <parameter name=\"field1\" value=\"__TIMESTAMP__\" />\n <parameter name=\"field2\" value=\"noRelationshipForLink:\" />\n <parameter name=\"field3\" value=\"`$tmp.aai.logical-link.link-name`\" />",
"comments": "",
"outputs": 1,
- "x": 1884,
- "y": 277,
- "z": "3cbec5d5.54ea02",
+ "x": 1874,
+ "y": 310,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "9a538487.c08aa",
+ "id": "899a17e9.aedab8",
"type": "record",
"name": "log file",
"xml": " <record plugin=\"org.onap.ccsdk.sli.core.sli.recording.FileRecorder\">\n <parameter name=\"file\" value=\"/opt/onap/logNoRelationship.txt\" />\n <parameter name=\"field1\" value=\"__TIMESTAMP__\" />\n <parameter name=\"field2\" value=\"moreThanOneRelationshipForLink:\" />\n <parameter name=\"field3\" value=\"`$tmp.aai.logical-link.link-name`\" />\n <parameter name=\"field4\" value=\"HowMany:\" />\n <parameter name=\"field5\" value=\"`$tmp.aai.logical-link.relationship-list_length`\" />",
"comments": "",
"outputs": 1,
- "x": 1895,
- "y": 392,
- "z": "3cbec5d5.54ea02",
+ "x": 1885,
+ "y": 425,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "a8dbf2db.72f548",
+ "id": "cbdf69e4.857a38",
"type": "record",
"name": "log file",
"xml": " <record plugin=\"org.onap.ccsdk.sli.core.sli.recording.FileRecorder\">\n <parameter name=\"file\" value=\"/opt/onap/logMergeFailure.txt\" />\n <parameter name=\"field1\" value=\"__TIMESTAMP__\" />\n <parameter name=\"field2\" value=\"altUniqueLinkId\" />\n <parameter name=\"field3\" value=\"`$alt-unique-linkId`\" />\n <parameter name=\"field4\" value=\"srcTpId\" />\n <parameter name=\"field5\" value=\"`$src-tpId`\" />\n <parameter name=\"field6\" value=\"relationship-value\" />\n <parameter name=\"field7\" value='`$tmp.aai.logical-link.relationship-list.relationship[0].relationship-data[1].relationship-value`' />\n ",
"comments": "",
"outputs": 1,
- "x": 3116,
- "y": 412,
- "z": "3cbec5d5.54ea02",
+ "x": 3106,
+ "y": 445,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "d0a27e5d.161cf",
+ "id": "57ae4e2f.8a93c8",
"type": "other",
"name": "Null",
"xml": "<outcome value=''>\n",
"comments": "",
"outputs": 1,
- "x": 1430,
- "y": 841,
- "z": "3cbec5d5.54ea02",
+ "x": 1420,
+ "y": 874,
+ "z": "11329427.2301e4",
"wires": [
[
- "53c3433b.ea3fa4"
+ "9036593c.1672f"
]
]
},
{
- "id": "c301ff98.2e6928",
+ "id": "7f343bab.e4c8cc",
"type": "outcome",
"name": "length 0",
"xml": "<outcome value='0'>\n",
"comments": "",
"outputs": 1,
- "x": 1432,
- "y": 889,
- "z": "3cbec5d5.54ea02",
+ "x": 1422,
+ "y": 922,
+ "z": "11329427.2301e4",
"wires": [
[
- "53c3433b.ea3fa4"
+ "9036593c.1672f"
]
]
},
{
- "id": "4d75dbb8.4d6b04",
+ "id": "22cb05f1.da2172",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 1429,
- "y": 943,
- "z": "3cbec5d5.54ea02",
+ "x": 1419,
+ "y": 976,
+ "z": "11329427.2301e4",
"wires": [
[
- "9f28786b.9755c"
+ "8fd33aa8.985138"
]
]
},
{
- "id": "53c3433b.ea3fa4",
+ "id": "9036593c.1672f",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 1585,
- "y": 841,
- "z": "3cbec5d5.54ea02",
+ "x": 1575,
+ "y": 874,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "d3a8ab71.fccb7",
+ "id": "57d29a3c.fe54c4",
"type": "switchNode",
"name": "switch te-link-attributes label-restriction_length",
"xml": "<switch test='`$link.te.te-link-attributes.label-restriction_length`'>\n",
"comments": "",
"outputs": 1,
- "x": 1611,
- "y": 734,
- "z": "3cbec5d5.54ea02",
+ "x": 1601,
+ "y": 767,
+ "z": "11329427.2301e4",
"wires": [
[
- "d2a47af.0c53388",
- "6ac8d49a.12d694",
- "7da4e2ad.ccfb34"
+ "681fa8f6.5d2f28",
+ "ec4baaa9.ef82",
+ "7ddd884.112ddf8"
]
]
},
{
- "id": "d2a47af.0c53388",
+ "id": "681fa8f6.5d2f28",
"type": "other",
"name": "Null",
"xml": "<outcome value=''>\n",
"comments": "",
"outputs": 1,
- "x": 1883,
- "y": 644,
- "z": "3cbec5d5.54ea02",
+ "x": 1873,
+ "y": 677,
+ "z": "11329427.2301e4",
"wires": [
[
- "70211305.a9bd74"
+ "ef3a31b6.0b2b58"
]
]
},
{
- "id": "70211305.a9bd74",
+ "id": "ef3a31b6.0b2b58",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 2038,
- "y": 644,
- "z": "3cbec5d5.54ea02",
+ "x": 2028,
+ "y": 677,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "6ac8d49a.12d694",
+ "id": "ec4baaa9.ef82",
"type": "outcome",
"name": "length 0",
"xml": "<outcome value='0'>\n",
"comments": "",
"outputs": 1,
- "x": 1885,
- "y": 692,
- "z": "3cbec5d5.54ea02",
+ "x": 1875,
+ "y": 725,
+ "z": "11329427.2301e4",
"wires": [
[
- "70211305.a9bd74"
+ "ef3a31b6.0b2b58"
]
]
},
{
- "id": "7da4e2ad.ccfb34",
+ "id": "7ddd884.112ddf8",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 1884,
- "y": 743,
- "z": "3cbec5d5.54ea02",
+ "x": 1874,
+ "y": 776,
+ "z": "11329427.2301e4",
"wires": [
[
- "51ef22a.000c3dc"
+ "19afd467.bf4a8c"
]
]
},
{
- "id": "c4dd69cd.d872b",
+ "id": "667c042d.d704cc",
"type": "set",
"name": "unset label-restriction's local variables",
"xml": "<set>\n<parameter name='label-restriction.' value='' />\n<parameter name='unique-lrId' value=\"\" />\n",
"comments": "",
- "x": 2365,
- "y": 570,
- "z": "3cbec5d5.54ea02",
+ "x": 2355,
+ "y": 603,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "7166bef0.82e4a",
+ "id": "1f83fd3d.b74253",
"type": "set",
"name": "unset label-restriction's local variables",
"xml": "<set>\n<parameter name='label-restriction.' value='' />\n<parameter name='unique-lrId' value=\"\" />\n",
"comments": "",
- "x": 1919,
- "y": 797,
- "z": "3cbec5d5.54ea02",
+ "x": 1909,
+ "y": 830,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "cedaeaf5.78fef8",
+ "id": "a18dc6ab.ac0e98",
"type": "switchNode",
"name": "switch te-link-attributes label-restriction_length",
"xml": "<switch test='`$link.te.te-link-attributes.label-restriction_length`'>\n",
"comments": "",
"outputs": 1,
- "x": 2703,
- "y": 521,
- "z": "3cbec5d5.54ea02",
+ "x": 2693,
+ "y": 554,
+ "z": "11329427.2301e4",
"wires": [
[
- "e2267c99.350348",
- "3e0a9900.cec47e",
- "ab55b067.791f5"
+ "22753c60.a6d58c",
+ "56afa73f.b3618",
+ "2c831306.1c7d44"
]
]
},
{
- "id": "e2267c99.350348",
+ "id": "22753c60.a6d58c",
"type": "other",
"name": "Null",
"xml": "<outcome value=''>\n",
"comments": "",
"outputs": 1,
- "x": 2973,
- "y": 483,
- "z": "3cbec5d5.54ea02",
+ "x": 2963,
+ "y": 516,
+ "z": "11329427.2301e4",
"wires": [
[
- "8e66b008.2f7c48"
+ "ee39387a.68929"
]
]
},
{
- "id": "8e66b008.2f7c48",
+ "id": "ee39387a.68929",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 3128,
- "y": 483,
- "z": "3cbec5d5.54ea02",
+ "x": 3118,
+ "y": 516,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "3e0a9900.cec47e",
+ "id": "56afa73f.b3618",
"type": "outcome",
"name": "length 0",
"xml": "<outcome value='0'>\n",
"comments": "",
"outputs": 1,
- "x": 2975,
- "y": 531,
- "z": "3cbec5d5.54ea02",
+ "x": 2965,
+ "y": 564,
+ "z": "11329427.2301e4",
"wires": [
[
- "8e66b008.2f7c48"
+ "ee39387a.68929"
]
]
},
{
- "id": "ab55b067.791f5",
+ "id": "2c831306.1c7d44",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 2974,
- "y": 582,
- "z": "3cbec5d5.54ea02",
+ "x": 2964,
+ "y": 615,
+ "z": "11329427.2301e4",
"wires": [
[
- "ef26b767.51cb"
+ "37acde41.902402"
]
]
},
{
- "id": "ef26b767.51cb",
+ "id": "37acde41.902402",
"type": "for",
"name": "for each label-restriction",
"xml": "<for index='tidx' start='0' end='`$link.te.te-link-attributes.label-restriction_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 3159,
- "y": 582,
- "z": "3cbec5d5.54ea02",
+ "x": 3149,
+ "y": 615,
+ "z": "11329427.2301e4",
"wires": [
[
- "1e98f683.1aa1c9",
- "fb05e52d.520ed8",
- "d6c4c7a0.0d9e8",
- "c76088aa.f470c8",
- "4bfdac8d.42ab7c",
- "fab9bbde.d7c01"
+ "322257af.c0621",
+ "a96bc34a.edf08",
+ "85a3ce07.1ccf48",
+ "6745622e.a105dc",
+ "81205454.92f138",
+ "22ab235a.53f29c"
]
]
},
{
- "id": "d6c4c7a0.0d9e8",
+ "id": "85a3ce07.1ccf48",
"type": "set",
"name": "unset label-restriction's local variables",
"xml": "<set>\n<parameter name='label-restriction.' value='' />\n<parameter name='unique-lrId' value=\"\" />\n",
"comments": "",
- "x": 3457,
- "y": 397,
- "z": "3cbec5d5.54ea02",
+ "x": 3447,
+ "y": 430,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "1e98f683.1aa1c9",
+ "id": "322257af.c0621",
"type": "set",
"name": "set label-restriction's local variables",
"xml": "<set>\n<parameter name='label-restriction.' value='`$link.te.te-link-attributes.label-restriction[$tidx].`' />\n",
"comments": "",
- "x": 3446.6669921875,
- "y": 443.88897705078125,
- "z": "3cbec5d5.54ea02",
+ "x": 3436.6669921875,
+ "y": 476.88897705078125,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "fb05e52d.520ed8",
+ "id": "a96bc34a.edf08",
"type": "update",
"name": "save label-restriction",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction' \n key='label-restriction.id = $unique-lrId' > \n<parameter name='id' value='`$unique-lrId`' />\n<parameter name='label-start' value='`$label-restriction.label-start.te-label-tpn`' />\n<parameter name='label-end' value='`$label-restriction.label-end.te-label-tpn`' />\n<parameter name='range-bitmap' value='`$label-restriction.range-bitmap`' />\n<parameter name='label-step' value='`$label-restriction.label-step`' />\n<parameter name='inclusive-exclusive' value='`$label-restriction.inclusive-exclusive`' />\n",
"comments": "",
"outputs": 1,
- "x": 3400.370849609375,
- "y": 571.444580078125,
- "z": "3cbec5d5.54ea02",
+ "x": 3390.370849609375,
+ "y": 604.444580078125,
+ "z": "11329427.2301e4",
"wires": [
[
- "d9005ccd.b320e8",
- "c6b7c3e3.521e98"
+ "e2988e4e.9965d8",
+ "7f7d13.46dcb2ec"
]
]
},
{
- "id": "9c6aaa8e.65077",
+ "id": "d0f09020.f9dd48",
"type": "save",
"name": "save link relationship to label-restriction in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list' \n key='logical-link.link-name = $alt-unique-linkId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"label-restriction\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/label-restrictions/label-restriction/' + $unique-lrId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"label-restriction.id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$unique-lrId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 3474.5556640625,
- "y": 755.888916015625,
- "z": "3cbec5d5.54ea02",
+ "x": 3464.5556640625,
+ "y": 788.888916015625,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "d9005ccd.b320e8",
+ "id": "e2988e4e.9965d8",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 3591.0555419921875,
- "y": 539.635009765625,
- "z": "3cbec5d5.54ea02",
+ "x": 3581.0555419921875,
+ "y": 572.635009765625,
+ "z": "11329427.2301e4",
"wires": [
[
- "85dd0f0d.ac434"
+ "fbf9ca41.08cd48"
]
]
},
{
- "id": "c6b7c3e3.521e98",
+ "id": "7f7d13.46dcb2ec",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 3598.734130859375,
- "y": 598.8493347167969,
- "z": "3cbec5d5.54ea02",
+ "x": 3588.734130859375,
+ "y": 631.8493347167969,
+ "z": "11329427.2301e4",
"wires": [
[
- "d138a600.db5b8"
+ "84622b72.0f60f8"
]
]
},
{
- "id": "85dd0f0d.ac434",
+ "id": "fbf9ca41.08cd48",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 3751.5556640625,
- "y": 538.8889465332031,
- "z": "3cbec5d5.54ea02",
+ "x": 3741.5556640625,
+ "y": 571.8889465332031,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "d138a600.db5b8",
+ "id": "84622b72.0f60f8",
"type": "update",
"name": "save label-restriction",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction' \n key='label-restriction.id = $unique-lrId' > \n<parameter name='id' value='`$unique-lrId`' />\n<parameter name='label-start' value='`$label-restriction.label-start.te-label-tpn`' />\n<parameter name='label-end' value='`$label-restriction.label-end.te-label-tpn`' />\n<parameter name='range-bitmap' value='`$label-restriction.range-bitmap`' />\n<parameter name='label-step' value='`$label-restriction.label-step`' />\n<parameter name='inclusive-exclusive' value='`$label-restriction.inclusive-exclusive`' />\n",
"comments": "",
"outputs": 1,
- "x": 3782.5556640625,
- "y": 598.8889465332031,
- "z": "3cbec5d5.54ea02",
+ "x": 3772.5556640625,
+ "y": 631.8889465332031,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "c76088aa.f470c8",
+ "id": "6745622e.a105dc",
"type": "set",
"name": "set label-restriction's local variables",
"xml": "<set>\n<parameter name='unique-lrId' value=\"`$alt-unique-linkId + '-lrId-' + $label-restriction.index`\" />\n",
"comments": "",
- "x": 3447,
- "y": 493,
- "z": "3cbec5d5.54ea02",
+ "x": 3437,
+ "y": 526,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "f581a4e4.841408",
+ "id": "1b0b9ceb.8ee5ab",
"type": "set",
"name": "set label-restriction's local variables",
"xml": "<set>\n<parameter name='unique-lrId' value=\"`$alt-unique-linkId + '-lrId-' + $label-restriction.index`\" />\n",
"comments": "",
- "x": 2361,
- "y": 662,
- "z": "3cbec5d5.54ea02",
+ "x": 2351,
+ "y": 695,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "c6ea0cbf.fb7cd",
+ "id": "db4d2563.f4f978",
"type": "set",
"name": "set label-restriction's local variables",
"xml": "<set>\n<parameter name='label-restriction.' value='`$link.te.te-link-attributes.label-restriction[$tidx].`' />\n",
"comments": "",
- "x": 1916,
- "y": 849,
- "z": "3cbec5d5.54ea02",
+ "x": 1906,
+ "y": 882,
+ "z": "11329427.2301e4",
"wires": []
},
{
- "id": "4aadddbd.521a8c",
+ "id": "43ca3bbb.8af21c",
"type": "update",
"name": "save te-link-attribute",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute' \n key='te-link-attribute.id = $link.te.te-link-attributes.name' > \n<parameter name='id' value='`$link.te.te-link-attributes.name`' />\n<parameter name='access-type' value='`$link.te.te-link-attributes.access-type`' />\n\n",
"comments": "",
"outputs": 1,
- "x": 1057,
- "y": 871,
- "z": "3cbec5d5.54ea02",
+ "x": 1047,
+ "y": 904,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "e1339bff.8f7f98",
+ "id": "b8324dab.347198",
"type": "save",
"name": "save te-link-attribute relationship to label-restriction",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list' \n key='te-link-attribute.id = $link.te.te-link-attributes.name' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"label-restriction\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/label-restrictions/label-restriction/' + $unique-lrId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"label-restriction.id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$unique-lrId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 1948,
- "y": 1140,
- "z": "3cbec5d5.54ea02",
+ "x": 1938,
+ "y": 1173,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "441a859d.1c08ec",
+ "id": "49c5f91d.be38c8",
"type": "save",
"name": "save te-link-attribute relationship to logical-link in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list' \n key='te-link-attribute.id = $link.te.te-link-attributes.name' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"logical-link\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/logical-links/logical-link/' + $unique-linkId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"logical-link.link-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$unique-linkId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 1957,
- "y": 1080,
- "z": "3cbec5d5.54ea02",
+ "x": 1947,
+ "y": 1113,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "6c137df8.722b8c",
+ "id": "3f800f5b.cc91f8",
"type": "update",
"name": "save te-link-attribute",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute' \n key='te-link-attribute.id = $link.te.te-link-attributes.name' > \n<parameter name='id' value='`$link.te.te-link-attributes.name`' />\n<parameter name='access-type' value='`$link.te.te-link-attributes.access-type`' />\n\n",
"comments": "",
"outputs": 1,
- "x": 1548,
- "y": 669,
- "z": "3cbec5d5.54ea02",
+ "x": 1538,
+ "y": 702,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "740002f8.4aedac",
+ "id": "6723873e.80324",
"type": "update",
"name": "update te-link-attribute",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute' \n key='te-link-attribute.id = $link.te.te-link-attributes.name' > \n<parameter name='id' value='`$link.te.te-link-attributes.name`' />\n<parameter name='access-type' value='`$link.te.te-link-attributes.access-type`' />\n\n",
"comments": "",
"outputs": 1,
- "x": 2428,
- "y": 454,
- "z": "3cbec5d5.54ea02",
+ "x": 2418,
+ "y": 487,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "f2fac409.beeaf8",
+ "id": "98a97ae5.7ea6d",
"type": "save",
"name": "save te-link-attribute relationship to logical-link in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list' \n key='te-link-attribute.id = $link.te.te-link-attributes.name' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"logical-link\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/logical-links/logical-link/' + $alt-unique-linkId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"logical-link.link-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$alt-unique-linkId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 2393,
- "y": 800,
- "z": "3cbec5d5.54ea02",
+ "x": 2383,
+ "y": 833,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "ea1f1d76.87207",
+ "id": "54564b15.ad996c",
"type": "save",
"name": "save te-link-attribute relationship to label-restriction",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list' \n key='te-link-attribute.id = $link.te.te-link-attributes.name' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"label-restriction\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/label-restrictions/label-restriction/' + $unique-lrId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"label-restriction.id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$unique-lrId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 2386,
- "y": 846,
- "z": "3cbec5d5.54ea02",
+ "x": 2376,
+ "y": 879,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "fab9bbde.d7c01",
+ "id": "22ab235a.53f29c",
"type": "save",
"name": "save te-link-attribute relationship to label-restriction",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list' \n key='te-link-attribute.id = $link.te.te-link-attributes.name' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"label-restriction\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/label-restrictions/label-restriction/' + $unique-lrId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"label-restriction.id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$unique-lrId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 3483,
- "y": 698,
- "z": "3cbec5d5.54ea02",
+ "x": 3473,
+ "y": 731,
+ "z": "11329427.2301e4",
"wires": [
[]
]
},
{
- "id": "4bfdac8d.42ab7c",
+ "id": "81205454.92f138",
"type": "save",
"name": "save te-link-attribute relationship to logical-link in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list' \n key='te-link-attribute.id = $link.te.te-link-attributes.name' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"logical-link\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/logical-links/logical-link/' + $alt-unique-linkId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"logical-link.link-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$alt-unique-linkId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 3490,
- "y": 652,
- "z": "3cbec5d5.54ea02",
+ "x": 3480,
+ "y": 685,
+ "z": "11329427.2301e4",
"wires": [
[]
]
diff --git a/platform-logic/datachange/src/main/json/DataChange_update-network-to-aai.json b/platform-logic/datachange/src/main/json/DataChange_update-network-to-aai.json
index 411e70d3..f589905c 100644
--- a/platform-logic/datachange/src/main/json/DataChange_update-network-to-aai.json
+++ b/platform-logic/datachange/src/main/json/DataChange_update-network-to-aai.json
@@ -1,20 +1,20 @@
[
{
- "id": "b9fcda31.4ec79",
+ "id": "edeab341.54bb4",
"type": "dgstart",
"name": "DGSTART",
"outputs": 1,
- "x": 113,
- "y": 65.00650024414062,
- "z": "6d6b8a1f.be1cb4",
+ "x": 126,
+ "y": 105.00650024414062,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "3760ce9c.1bf2e2"
+ "fa7cab2b.24d26"
]
]
},
{
- "id": "3760ce9c.1bf2e2",
+ "id": "fa7cab2b.24d26",
"type": "service-logic",
"name": "DataChange ${project.version}",
"module": "DataChange",
@@ -22,1124 +22,1119 @@
"comments": "",
"xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>",
"outputs": 1,
- "x": 202.00003051757812,
- "y": 155.89541244506836,
- "z": "6d6b8a1f.be1cb4",
+ "x": 215.00003051757812,
+ "y": 195.89541244506836,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "de74005b.f44ce8"
+ "6ea5e78a.d4f118"
]
]
},
{
- "id": "de74005b.f44ce8",
+ "id": "6ea5e78a.d4f118",
"type": "method",
"name": "update-network-to-aai",
"xml": "<method rpc='update-network-to-aai' mode='sync'>\n",
"comments": "",
"outputs": 1,
- "x": 238.1112518310547,
- "y": 226.2287368774414,
- "z": "6d6b8a1f.be1cb4",
+ "x": 251.1112518310547,
+ "y": 266.2287368774414,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "1541ad9c.69aa8a"
+ "d9721e0.ea910e"
]
]
},
{
- "id": "1541ad9c.69aa8a",
+ "id": "d9721e0.ea910e",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic=\"true\">\n",
"atomic": "true",
"comments": "",
"outputs": 1,
- "x": 463.33343505859375,
- "y": 225.784423828125,
- "z": "6d6b8a1f.be1cb4",
+ "x": 476.33343505859375,
+ "y": 265.784423828125,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "dbbcebe5.6f422",
- "e66d9ed0.3d3d8",
- "f1256a59.e632c",
- "1dca15d7.0a7a3a",
- "1c1d34a0.adaa8b",
- "4469da89.6a377c"
+ "fe85cd4e.468048",
+ "e705d0b4.a9ae58",
+ "2ddaf91a.d98b16",
+ "ff89ecd9.d9563",
+ "e471027b.286e6",
+ "159870db.58eb07"
]
]
},
{
- "id": "e66d9ed0.3d3d8",
+ "id": "e705d0b4.a9ae58",
"type": "save",
"name": "save network-resource",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='network-resource' \n key='network-resource.network-id = $tmp.network-id' >\n<parameter name='network-id' value='`$tmp.network-id`' />\n<parameter name='client-id' value='`$network.client-id`' />\n<parameter name='te-topo-id' value='`$network.te-topology-id`' />\n<parameter name='provider-id' value='`$network.provider-id`' />\n\n<parameter name='network-type' value='`$network.network-types`' />\n\n\n",
"comments": "",
"outputs": 1,
- "x": 693.333251953125,
- "y": 131.0065155029297,
- "z": "6d6b8a1f.be1cb4",
+ "x": 706.333251953125,
+ "y": 171.0065155029297,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "40545c4b.9221f4",
+ "id": "cb2cfb3d.12f0a8",
"type": "save",
"name": "save pnf",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf' \n key='pnf.pnf-name = $unique-nodeId' >\n<parameter name='pnf-name' value='`$unique-nodeId`' />\n<parameter name='pnf-id' value='`$node.node-id`' />\n<parameter name='operational-status' value='`$node.te.oper-status`' />\n<parameter name='admin-status' value='`$node.te.te-node-attributes.admin-status`' />\n<parameter name='in-maint' value='true' />\n\n\n\n\n\n",
"comments": "",
"outputs": 1,
- "x": 893.1111450195312,
- "y": 502.1175842285156,
- "z": "6d6b8a1f.be1cb4",
+ "x": 906.1111450195312,
+ "y": 542.1175842285156,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "f1256a59.e632c",
+ "id": "2ddaf91a.d98b16",
"type": "for",
"name": "for each node",
"xml": "<for index='pidx' start='0' end='`$network.node_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 664.8888549804688,
- "y": 482.3398132324219,
- "z": "6d6b8a1f.be1cb4",
+ "x": 677.8888549804688,
+ "y": 522.3398132324219,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "40545c4b.9221f4",
- "eba2ef35.33c428",
- "4817116d.5f593",
- "466a40bd.9d277",
- "1acdca56.b6e67e",
- "3e1f14bc.ee90c4",
- "6de7541f.0e2a24",
- "8794be9f.289a08",
- "1b6896a8.e62c19"
+ "cb2cfb3d.12f0a8",
+ "fc39e59f.e19f7",
+ "404895b3.1b9a0c",
+ "38f275a2.ec1422",
+ "dcf15e98.55cd98",
+ "2d8d0a77.affafe",
+ "1758985b.dd13f8",
+ "7f99493d.24ad2"
]
]
},
{
- "id": "eba2ef35.33c428",
+ "id": "fc39e59f.e19f7",
"type": "set",
"name": "set node",
"xml": "<set>\n<parameter name='node.' value='`$network.node[$pidx].`' />\n<parameter name='unique-networkId' value='`$tmp.network-id`' />\n\n",
"comments": "",
- "x": 898.111083984375,
- "y": 398.2287139892578,
- "z": "6d6b8a1f.be1cb4",
+ "x": 911.111083984375,
+ "y": 438.2287139892578,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "466a40bd.9d277",
+ "id": "38f275a2.ec1422",
"type": "save",
"name": "save pnf relationship to network-resource in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf:relationship-list' \n key='pnf.pnf-name = $unique-nodeId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"network-resource\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/network-resources/network-resource/' + $tmp.network-id`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"network-resource.network-id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$tmp.network-id`\" />",
"comments": "",
"outputs": 1,
- "x": 989.7779541015625,
- "y": 677.4509782791138,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1002.7779541015625,
+ "y": 717.4509782791138,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "3d4b777c.0e42f",
+ "id": "f06afd2d.6a87a8",
"type": "for",
"name": "for each termination point",
"xml": "<for index='tidx' start='0' end='`$node.termination-point_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 1297.4444580078125,
- "y": 593.1175537109375,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1310.4444580078125,
+ "y": 633.1175537109375,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "95dfcdd1.046e6",
- "1ac320c7.c54f67",
- "aa2f70cf.6e112",
- "64896027.57fb78",
- "fe275075.949f1"
+ "641e627.90ce71c",
+ "62e3b2b7.0e1854",
+ "7c4704e9.f42bfc",
+ "cdce39b5.3e2ce8",
+ "c12a9ec.a16bae"
]
]
},
{
- "id": "95dfcdd1.046e6",
+ "id": "641e627.90ce71c",
"type": "set",
"name": "set termination point",
"xml": "<set>\n<parameter name='tp.' value='`$node.termination-point[$tidx].`' />\n",
"comments": "",
- "x": 1567.111328125,
- "y": 576.0065307617188,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1580.111328125,
+ "y": 616.0065307617188,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "aa2f70cf.6e112",
+ "id": "7c4704e9.f42bfc",
"type": "save",
"name": "save p-interface",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='p-interface' \n key='pnf.pnf-name = $unique-nodeId\n AND p-interface.interface-name = $unique-ltpId' > \n<parameter name='interface-name' value='`$unique-ltpId`' />\n<parameter name='network-ref' value='`$tp.supporting-termination-point[0].network-ref`' />\n<parameter name='transparent' value='`$tp.svc.supported-classification.transparent`' />\n<parameter name='speed-value' value='`$tp.te.interface-switching-capability[0].max-lsp-bandwidth[0].te-bandwidth.eth-bandwidth`' />\n<parameter name='operational-status' value='`$tp.te.oper-status`' />\n<parameter name='in-maint' value=\"true\" />\n\n<parameter name='inter-layer-lock-id' value='`$tp.te.inter-layer-lock-id[0]`' />\n<!--<parameter name='inter-domain-plug-id' value='`$tp.te.inter-domain-plug-id`' />-->\n<parameter name='inter-domain-plug-id' value='`$tmp.decoded-plug-id`' />\n\n",
"comments": "",
"outputs": 1,
- "x": 1561.815185546875,
- "y": 763.5620727539062,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1574.815185546875,
+ "y": 803.5620727539062,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "673078d4.a5cb68",
- "5651def0.2c85b8"
+ "99a9f83c.592fb",
+ "2cd1ffbf.d1e38"
]
]
},
{
- "id": "6cce4024.476ad",
+ "id": "6c4885ee.2512d4",
"type": "save",
"name": "save pnf relationship to p-interface in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf:relationship-list' \n key='pnf.pnf-name = $unique-nodeId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/network-resources/network-resource/' + $tmp.network-id + '/pnfs/pnf/' + $unique-nodeId '/p-interfaces/p-interface/' + $unique-ltpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$unique-ltpId`\" />",
"comments": "",
"outputs": 1,
- "x": 1382.703857421875,
- "y": 1676.33984375,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1395.703857421875,
+ "y": 1716.33984375,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "1ac320c7.c54f67",
+ "id": "62e3b2b7.0e1854",
"type": "set",
"name": "set unique-ltpId",
"xml": "<set>\n<parameter name='unique-ltpId' value=\"`$unique-nodeId + '-ltpId-' + $tp.te-tp-id`\" />\n",
"comments": "",
- "x": 1551.000244140625,
- "y": 633.1175537109375,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1564.000244140625,
+ "y": 673.1175537109375,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "dbbcebe5.6f422",
+ "id": "fe85cd4e.468048",
"type": "execute",
"name": "execute",
"xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='replace' >\n <parameter name=\"source\" value=\"`$network.network-id`\"/>\n <parameter name=\"outputPath\" value=\"tmp.original-network-id\"/>\n <parameter name=\"target\" value=\"/\"/>\n <parameter name=\"replacement\" value=\"-\"/>\n ",
"comments": "",
"outputs": 1,
- "x": 649.9935302734375,
- "y": 40,
- "z": "6d6b8a1f.be1cb4",
+ "x": 662.9935302734375,
+ "y": 80,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "4817116d.5f593",
+ "id": "404895b3.1b9a0c",
"type": "save",
"name": "save pnf relation with esr-thirdparty-sdnc",
- "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='esr-thirdparty-sdnc:relationship-list' \n key='esr-thirdparty-sdnc.thirdparty-sdnc-id = $prop.sdncRestApi.thirdpartySdnc.id' \n force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"pnf\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $node.node-id`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"pnf.pnf-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$node.node-id`\" />\n",
+ "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='esr-thirdparty-sdnc:relationship-list' \n key='esr-thirdparty-sdnc.thirdparty-sdnc-id = $prop.sdncRestApi.thirdpartySdnc.id' \n force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"pnf\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $unique-nodeId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"pnf.pnf-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$unique-nodeId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 971,
- "y": 714,
- "z": "6d6b8a1f.be1cb4",
+ "x": 984,
+ "y": 754,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "673078d4.a5cb68",
+ "id": "99a9f83c.592fb",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 1733.499885559082,
- "y": 750.7525482177734,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1746.499885559082,
+ "y": 790.7525482177734,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "72e23ce3.0ceb8c"
+ "7275269b.187718"
]
]
},
{
- "id": "5651def0.2c85b8",
+ "id": "2cd1ffbf.d1e38",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 1727.1784744262695,
- "y": 802.9668598175049,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1740.1784744262695,
+ "y": 842.9668598175049,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "936d0942.79b6"
+ "6558158e.20a7e4"
]
]
},
{
- "id": "72e23ce3.0ceb8c",
+ "id": "7275269b.187718",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 1884.0000457763672,
- "y": 750.0064792633057,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1897.0000457763672,
+ "y": 790.0064792633057,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "936d0942.79b6",
+ "id": "6558158e.20a7e4",
"type": "update",
"name": "update p-interface",
"xml": "<update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='p-interface' \n key='pnf.pnf-name = $unique-nodeId\n AND p-interface.interface-name = $unique-ltpId' > \n<parameter name='interface-name' value='`$unique-ltpId`' />\n<parameter name='network-ref' value='`$tp.supporting-termination-point[0].network-ref`' />\n<parameter name='transparent' value='`$tp.svc.supported-classification.transparent`' />\n<parameter name='speed-value' value='`$tp.te.interface-switching-capability[0].max-lsp-bandwidth[0].te-bandwidth.eth-bandwidth`' />\n<parameter name='operational-status' value='`$tp.te.oper-status`' />\n<parameter name='in-maint' value=\"true\" />\n\n<parameter name='inter-layer-lock-id' value='`$tp.te.inter-layer-lock-id[0]`' />\n<!--<parameter name='inter-domain-plug-id' value='`$tp.te.inter-domain-plug-id`' />-->\n<parameter name='inter-domain-plug-id' value='`$tmp.decoded-plug-id`' />",
"comments": "",
"outputs": 1,
- "x": 1913,
- "y": 804.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1926,
+ "y": 844.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "7077dcc4.1aa314",
+ "id": "b62e74a8.72d8f8",
"type": "save",
"name": "save tunnel-termination-point",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='tunnel-termination-point' \n key='tunnel-termination-point.ttp-id = $unique-ttpId' >\n\n<parameter name='ttp-id' value='`$unique-ttpId`' />\n<parameter name='tunnel-tp-id' value='`$ttp.tunnel-tp-id`' />\n<parameter name='name' value='`$ttp.name`' />\n<parameter name='admin-status' value='`$ttp.admin-status`' />\n<parameter name='oper-status' value='`$ttp.oper-status`' />\n<parameter name='inter-layer-lock-id' value='`$ttp.inter-layer-lock-id[0]`' />\n<parameter name='switching-capability' value='`$ttp.switching-capability`' />\n<parameter name='protection-type' value='`$ttp.protection-type`' />\n<parameter name='encoding' value='`$ttp.encoding`' />\n\n\n\n\n\n\n",
"comments": "",
"outputs": 1,
- "x": 1627,
- "y": 1055.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1640,
+ "y": 1095.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "ee093e46.66c7d8",
- "e9c7ad6a.1577f"
+ "7c8389d1.ee45",
+ "bbd909f2.ba2d1"
]
]
},
{
- "id": "3a45511d.adcf26",
+ "id": "b69752f.a47b03",
"type": "for",
"name": "for each tunnel termination point",
"xml": "<for index='ttidx' start='0' end='`$node.te.tunnel-termination-point_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 1290,
- "y": 1043.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1303,
+ "y": 1083.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "2ea4deaf.40bdfa",
- "458ce581.77bfe4",
- "7077dcc4.1aa314",
- "dad1a90d.61b018",
- "7da29c03.1dbdf4",
- "58b65656.8480c8"
+ "25de11e2.0dd0ae",
+ "b2448024.6d9268",
+ "b62e74a8.72d8f8",
+ "4cb5cbe8.ee37a4",
+ "3ba1d3d8.7bd96c",
+ "ead9d9cc.bab4f8"
]
]
},
{
- "id": "2ea4deaf.40bdfa",
+ "id": "25de11e2.0dd0ae",
"type": "set",
"name": "set tunnel termination point",
"xml": "<set>\n<parameter name='ttp.' value='`$node.te.tunnel-termination-point[$ttidx].`' />\n",
"comments": "",
- "x": 1625,
- "y": 963.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1638,
+ "y": 1003.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "458ce581.77bfe4",
+ "id": "b2448024.6d9268",
"type": "set",
"name": "set unique-ttpId",
"xml": "<set>\n<parameter name='unique-ttpId' value=\"`$unique-nodeId + '-ttpId-' + $ttp.tunnel-tp-id`\" />\n",
"comments": "",
- "x": 1583.888916015625,
- "y": 1001.1175537109375,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1596.888916015625,
+ "y": 1041.1175537109375,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "ee093e46.66c7d8",
+ "id": "7c8389d1.ee45",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 1893,
- "y": 1041.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1906,
+ "y": 1081.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "1b7d5a60.835d5e"
+ "49e600b2.247268"
]
]
},
{
- "id": "e9c7ad6a.1577f",
+ "id": "bbd909f2.ba2d1",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 1886.6785888671875,
- "y": 1093.220781326294,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1899.6785888671875,
+ "y": 1133.220781326294,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "652a4eb1.3c9f7"
+ "8a380f1a.fa11e"
]
]
},
{
- "id": "1b7d5a60.835d5e",
+ "id": "49e600b2.247268",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 2043.5001602172852,
- "y": 1040.2604007720947,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2056.500160217285,
+ "y": 1080.2604007720947,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "652a4eb1.3c9f7",
+ "id": "8a380f1a.fa11e",
"type": "update",
"name": "update tunnel-termination-point",
"xml": "<update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='tunnel-termination-point' \n key='tunnel-termination-point.ttp-id = $unique-ttpId' >\n\n<parameter name='ttp-id' value='`$unique-ttpId`' />\n<parameter name='tunnel-tp-id' value='`$ttp.tunnel-tp-id`' />\n<parameter name='name' value='`$ttp.name`' />\n<parameter name='admin-status' value='`$ttp.admin-status`' />\n<parameter name='oper-status' value='`$ttp.oper-status`' />\n<parameter name='inter-layer-lock-id' value='`$ttp.inter-layer-lock-id[0]`' />\n<parameter name='switching-capability' value='`$ttp.switching-capability`' />\n<parameter name='protection-type' value='`$ttp.protection-type`' />\n<parameter name='encoding' value='`$ttp.encoding`' />\n\n\n\n\n\n\n",
"comments": "",
"outputs": 1,
- "x": 2124,
- "y": 1095.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2137,
+ "y": 1135.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "1acdca56.b6e67e",
+ "id": "dcf15e98.55cd98",
"type": "set",
"name": "set local variables",
"xml": "<set>\n<parameter name='unique-nodeId' value=\"`'networkId-' + $unique-networkId + '-nodeId-' + $node.node-id`\" />\n",
"comments": "",
- "x": 923,
- "y": 445.0065002441406,
- "z": "6d6b8a1f.be1cb4",
+ "x": 936,
+ "y": 485.0065002441406,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "1dca15d7.0a7a3a",
+ "id": "ff89ecd9.d9563",
"type": "call",
"name": "call update-network-links-to-aai",
"xml": "<call module='DataChange' rpc='update-network-links-to-aai' mode='sync' >\n",
"comments": "",
"outputs": 1,
- "x": 607,
- "y": 608.0065002441406,
- "z": "6d6b8a1f.be1cb4",
+ "x": 620,
+ "y": 648.0065002441406,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "c87f71c.204801",
+ "id": "d7b3037a.697688",
"type": "save",
"name": "save pnf-interface relationship to pnf in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='p-interface:relationship-list' \n key='pnf.pnf-name = $unique-nodeId\n AND p-interface.interface-name = $unique-ltpId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"pnf\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $unique-nodeId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"pnf.pnf-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$unique-nodeId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 1389,
- "y": 1632.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1402,
+ "y": 1672.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "dad1a90d.61b018",
+ "id": "4cb5cbe8.ee37a4",
"type": "save",
"name": "save pnf relationship to tunnel termination point in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf:relationship-list' \n key='pnf.pnf-name = $unique-nodeId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"tunnel-termination-point\" />\n<!--<parameter name=\"relationship-list.relationship[$ttidx].related-link\" value=\"`'/network/network-resources/network-resource/' + $tmp.network-id + '/pnfs/pnf/' + $node.node-id '/tunnel-termination-points/tunnel-termination-point/' + $unique-ttpId`\" />-->\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/tunnel-termination-points/tunnel-termination-point/' + $unique-ttpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"tunnel-termination-point.ttp-id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$unique-ttpId`\" />",
"comments": "",
"outputs": 1,
- "x": 1698,
- "y": 1147.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1711,
+ "y": 1187.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "486bef2.804149",
- "8297f8e3.32f2f"
+ "477ea94a.d9b708",
+ "1857aab6.41528d"
]
]
},
{
- "id": "3e1f14bc.ee90c4",
+ "id": "2d8d0a77.affafe",
"type": "switchNode",
"name": "switch node ttp",
"xml": "<switch test='`$node.te.tunnel-termination-point_length`'>\n",
"comments": "",
"outputs": 1,
- "x": 862,
- "y": 1019.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 875,
+ "y": 1059.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "3564e5a8.68c49a",
- "fd68b5a4.a3a878",
- "f36d0950.312798"
+ "df28f111.dccd78",
+ "56382251.f0ed44",
+ "836a4c10.0f5058"
]
]
},
{
- "id": "d6240165.9d9a1",
+ "id": "efccb4e8.6c1f7",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 1210,
- "y": 971.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1223,
+ "y": 1011.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "f36d0950.312798",
+ "id": "836a4c10.0f5058",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 1057,
- "y": 1054.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1070,
+ "y": 1094.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "3a45511d.adcf26"
+ "b69752f.a47b03"
]
]
},
{
- "id": "6de7541f.0e2a24",
+ "id": "1758985b.dd13f8",
"type": "switchNode",
"name": "switch node tp",
"xml": "<switch test='`$node.termination-point_length`'>\n",
"comments": "",
"outputs": 1,
- "x": 911,
- "y": 569.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 924,
+ "y": 609.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "d28496d2.5ae628",
- "74698dba.4a5d9c",
- "f51e137e.4b4cd"
+ "9b64d5a2.85c768",
+ "9d78d705.498a28",
+ "fec4616c.fd5128"
]
]
},
{
- "id": "d28496d2.5ae628",
+ "id": "9b64d5a2.85c768",
"type": "other",
"name": "Null",
"xml": "<outcome value=''>\n",
"comments": "",
"outputs": 1,
- "x": 1090,
- "y": 521.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1103,
+ "y": 561.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "1912a08f.2e751f"
+ "31b2e806.d617f"
]
]
},
{
- "id": "74698dba.4a5d9c",
+ "id": "9d78d705.498a28",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 1089,
- "y": 623.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1102,
+ "y": 663.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "3d4b777c.0e42f"
+ "f06afd2d.6a87a8"
]
]
},
{
- "id": "1912a08f.2e751f",
+ "id": "31b2e806.d617f",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 1245,
- "y": 521.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1258,
+ "y": 561.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "8794be9f.289a08",
+ "id": "264d4645.5fe58a",
"type": "record",
"name": "log file",
"xml": " <record plugin=\"org.onap.ccsdk.sli.core.sli.recording.FileRecorder\">\n <parameter name=\"file\" value=\"/opt/onap/logTopologyDiscovery.txt\" />\n <parameter name=\"field1\" value=\"__TIMESTAMP__\" />\n <parameter name=\"field2\" value=\"sucess executing Hesam log file\" />\n <parameter name=\"field3\" value=\"`$node.te.tunnel-termination-point_length`\" />\n <parameter name=\"field4\" value=\"`$node.termination-point_length`\" />\n ",
"comments": "",
"outputs": 1,
- "x": 840,
- "y": 1063.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 853,
+ "y": 1103.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "3564e5a8.68c49a",
+ "id": "df28f111.dccd78",
"type": "other",
"name": "Null",
"xml": "<outcome value=''>\n",
"comments": "",
"outputs": 1,
- "x": 1050,
- "y": 905.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1063,
+ "y": 945.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "d6240165.9d9a1"
+ "efccb4e8.6c1f7"
]
]
},
{
- "id": "fd68b5a4.a3a878",
+ "id": "56382251.f0ed44",
"type": "outcome",
"name": "length 0",
"xml": "<outcome value='0'>\n",
"comments": "",
"outputs": 1,
- "x": 1055,
- "y": 980.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1068,
+ "y": 1020.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "d6240165.9d9a1"
+ "efccb4e8.6c1f7"
]
]
},
{
- "id": "f51e137e.4b4cd",
+ "id": "fec4616c.fd5128",
"type": "outcome",
"name": "length 0",
"xml": "<outcome value='0'>\n",
"comments": "",
"outputs": 1,
- "x": 1100,
- "y": 569.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1113,
+ "y": 609.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "1912a08f.2e751f"
+ "31b2e806.d617f"
]
]
},
{
- "id": "1b6896a8.e62c19",
+ "id": "7f99493d.24ad2",
"type": "set",
"name": "unset node",
"xml": "<set>\n<parameter name='node.' value='' />\n\n",
"comments": "",
- "x": 895,
- "y": 347.0065002441406,
- "z": "6d6b8a1f.be1cb4",
+ "x": 908,
+ "y": 387.0065002441406,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "64896027.57fb78",
+ "id": "cdce39b5.3e2ce8",
"type": "set",
"name": "unset termination point",
"xml": "<set>\n<parameter name='tp.' value='' />\n",
"comments": "",
- "x": 1579,
- "y": 519.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1592,
+ "y": 559.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "7da29c03.1dbdf4",
+ "id": "3ba1d3d8.7bd96c",
"type": "set",
"name": "unset tunnel termination point",
"xml": "<set>\n<parameter name='ttp.' value='' />\n",
"comments": "",
- "x": 1625,
- "y": 915.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1638,
+ "y": 955.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "486bef2.804149",
+ "id": "477ea94a.d9b708",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 2030,
- "y": 1150.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2043,
+ "y": 1190.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
- [
- "f859267c.20dd3"
- ]
+ []
]
},
{
- "id": "8297f8e3.32f2f",
+ "id": "1857aab6.41528d",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 2027,
- "y": 1198.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2040,
+ "y": 1238.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
- [
- "19a686f.52c17f9"
- ]
+ []
]
},
{
- "id": "f859267c.20dd3",
+ "id": "7abfb291.6dcbac",
"type": "record",
"name": "log file",
"xml": " <record plugin=\"org.onap.ccsdk.sli.core.sli.recording.FileRecorder\">\n <parameter name=\"file\" value=\"/opt/onap/logTopologyDiscovery.txt\" />\n <parameter name=\"field1\" value=\"__TIMESTAMP__\" />\n <parameter name=\"field2\" value=\"sucess executing Hesam log file\" />\n <parameter name=\"field3\" value=\"`$node.te.tunnel-termination-point_length`\" />\n <parameter name=\"field4\" value=\"`$node.termination-point_length`\" />\n <parameter name=\"field5\" value=\"sucessfully saved ttp\" />\n <parameter name=\"field6\" value=\"`relationship-list.relationship[$ttidx].related-link`\" />\n ",
"comments": "",
"outputs": 1,
- "x": 2185,
- "y": 1151.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2198,
+ "y": 1191.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "19a686f.52c17f9",
+ "id": "ec345a2.2004e28",
"type": "record",
"name": "log file",
"xml": " <record plugin=\"org.onap.ccsdk.sli.core.sli.recording.FileRecorder\">\n <parameter name=\"file\" value=\"/opt/onap/logTopologyDiscovery.txt\" />\n <parameter name=\"field1\" value=\"__TIMESTAMP__\" />\n <parameter name=\"field2\" value=\"sucess executing Hesam log file\" />\n <parameter name=\"field3\" value=\"`$node.te.tunnel-termination-point_length`\" />\n <parameter name=\"field4\" value=\"`$node.termination-point_length`\" />\n <parameter name=\"field5\" value=\"failuire on saving ttp\" />\n <parameter name=\"field6\" value=\"`relationship-list.relationship[$ttidx].related-link`\" />\n\n ",
"comments": "",
"outputs": 1,
- "x": 2186,
- "y": 1199.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2199,
+ "y": 1239.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "c991cb25.a4c41",
+ "id": "49dd63ef.87e564",
"type": "execute",
"name": "execute Base64 Converter",
"xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='base64DecodingAlgo' >\n <parameter name=\"encodedValue\" value='`$tp.te.inter-domain-plug-id`'/>\n <parameter name=\"decodedValue\" value=\"tmp.decoded-plug-id\"/>\n ",
"comments": "",
"outputs": 1,
- "x": 2045,
- "y": 688.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2058,
+ "y": 728.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "dcbfdbac.4106e8",
- "25f66573.5f2caa"
+ "fafe42.8d2fb9c",
+ "2c876749.ba8618"
]
]
},
{
- "id": "fe275075.949f1",
+ "id": "c12a9ec.a16bae",
"type": "switchNode",
"name": "switch inter-domain-plug-id empty?",
"xml": "<switch test='`length($tp.te.inter-domain-plug-id) == 0`'>\n\n",
"comments": "",
"outputs": 1,
- "x": 1615,
- "y": 689.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1628,
+ "y": 729.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "2202ef19.0cb66",
- "a44d5e08.8645a8"
+ "a32fa569.0a3c28",
+ "b8de06da.79eb1"
]
]
},
{
- "id": "a44d5e08.8645a8",
+ "id": "b8de06da.79eb1",
"type": "outcomeTrue",
"name": "true",
"xml": "<outcome value='true'>\n",
"comments": "",
"outputs": 1,
- "x": 1842,
- "y": 642.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1855,
+ "y": 682.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "77ac957f.8f7e64"
+ "578202f3.fbbe74"
]
]
},
{
- "id": "2202ef19.0cb66",
+ "id": "a32fa569.0a3c28",
"type": "outcomeFalse",
"name": "false",
"xml": "<outcome value='false'>\n",
"comments": "",
"outputs": 1,
- "x": 1843,
- "y": 688.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1856,
+ "y": 728.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "c991cb25.a4c41"
+ "49dd63ef.87e564"
]
]
},
{
- "id": "77ac957f.8f7e64",
+ "id": "578202f3.fbbe74",
"type": "set",
"name": "unset tmp.decoded-plug-id",
"xml": "<set>\n<parameter name='tmp.decoded-plug-id' value='' />\n",
"comments": "",
- "x": 2046,
- "y": 642.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2059,
+ "y": 682.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "dcbfdbac.4106e8",
+ "id": "fafe42.8d2fb9c",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 2250,
- "y": 665.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2263,
+ "y": 705.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "21836a86.63b72e"
+ "cad449b6.73c6d"
]
]
},
{
- "id": "25f66573.5f2caa",
+ "id": "2c876749.ba8618",
"type": "failure",
"name": "failure",
"xml": "<outcome value='failure'>\n",
"comments": "",
"outputs": 1,
- "x": 2243.6785888671875,
- "y": 717.220781326294,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2256.6785888671875,
+ "y": 757.220781326294,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "8297f536.6bb4a"
+ "92336385.660b18"
]
]
},
{
- "id": "21836a86.63b72e",
+ "id": "cad449b6.73c6d",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 2391,
- "y": 665.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2404,
+ "y": 705.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "8297f536.6bb4a",
+ "id": "92336385.660b18",
"type": "set",
"name": "unset tmp.decoded-plug-id",
"xml": "<set>\n<parameter name='tmp.decoded-plug-id' value='`$tp.te.inter-domain-plug-id`' />\n",
"comments": "",
- "x": 2450,
- "y": 717.0064697265625,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2463,
+ "y": 757.0064697265625,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "1c1d34a0.adaa8b",
+ "id": "e471027b.286e6",
"type": "set",
"name": "set tmp.network-if",
- "xml": "<set>\n<parameter name='tmp.network-id' value=\"`$prop.sdncRestApi.thirdpartySdnc.id + '-' + $tmp.original-network-id`\" />\n\n",
+ "xml": "<set>\n<!--<parameter name='tmp.network-id' value=\"`$prop.sdncRestApi.thirdpartySdnc.id + '-' + $tmp.original-network-id`\" />-->\n<parameter name='tmp.network-id' value=\"`$tmp.original-network-id`\" />\n\n",
"comments": "",
- "x": 675,
- "y": 81.00650024414062,
- "z": "6d6b8a1f.be1cb4",
+ "x": 688,
+ "y": 121.00650024414062,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "4469da89.6a377c",
+ "id": "159870db.58eb07",
"type": "get-resource",
"name": "get-resource esr-thirdparty-sdnc",
"xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"esr-thirdparty-sdnc\" \n\t\tkey=\"esr-thirdparty-sdnc.thirdparty-sdnc-id = $prop.sdncRestApi.thirdpartySdnc.id AND \n\t\t depth = '1'\"\n pfx='tmp.aai.esr-thirdparty-sdnc' local-only='false' >\n\n",
"comments": "",
"outputs": 1,
- "x": 736,
- "y": 220,
- "z": "6d6b8a1f.be1cb4",
+ "x": 749,
+ "y": 260,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "259a6f10.d859c",
- "2643a1bc.bc0f46",
- "7a6e0ac1.83425c"
+ "f22633be.4476e8",
+ "4f55d446.34a7f4",
+ "beabc6d6.2806f"
]
]
},
{
- "id": "259a6f10.d859c",
+ "id": "f22633be.4476e8",
"type": "success",
"name": "success",
"xml": "<outcome value='success'>\n",
"comments": "",
"outputs": 1,
- "x": 982,
- "y": 180,
- "z": "6d6b8a1f.be1cb4",
+ "x": 995,
+ "y": 220,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "83c13ac.c0250c8"
+ "543559cc.c24e08"
]
]
},
{
- "id": "2643a1bc.bc0f46",
+ "id": "4f55d446.34a7f4",
"type": "not-found",
"name": "not-found",
"xml": "<outcome value='not-found'>\n",
"comments": "",
"outputs": 1,
- "x": 986,
- "y": 220,
- "z": "6d6b8a1f.be1cb4",
+ "x": 999,
+ "y": 260,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "7add65bd.d43c1c"
+ "50076a10.d4e1b4"
]
]
},
{
- "id": "7a6e0ac1.83425c",
+ "id": "beabc6d6.2806f",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 978,
- "y": 260,
- "z": "6d6b8a1f.be1cb4",
+ "x": 991,
+ "y": 300,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "a3451a06.01294"
+ "a9b8ac2f.1b4d8"
]
]
},
{
- "id": "7add65bd.d43c1c",
+ "id": "50076a10.d4e1b4",
"type": "returnFailure",
"name": "return failure",
"xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying esr-thirdparty-sdnc from AnAI with thirdparty-sdnc-id = ' + $tmp.thirdparty-sdnc-id`\" />\n\n",
"comments": "",
- "x": 1136,
- "y": 220,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1149,
+ "y": 260,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "a3451a06.01294",
+ "id": "a9b8ac2f.1b4d8",
"type": "returnFailure",
"name": "return failure",
"xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying esr-thirdparty-sdnc from AnAI with thirdparty-sdnc-id = ' + $tmp.thirdparty-sdnc-id`\" />\n\n",
"comments": "",
- "x": 1136,
- "y": 260,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1149,
+ "y": 300,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "83c13ac.c0250c8",
+ "id": "543559cc.c24e08",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 1126,
- "y": 178,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1139,
+ "y": 218,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "70f6d2fc.749b0c"
+ "627ad99d.a81fa"
]
]
},
{
- "id": "70f6d2fc.749b0c",
+ "id": "627ad99d.a81fa",
"type": "save",
"name": "save network-resource relationship to esr-thirdparty-sdnc",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='network-resource:relationship-list' \n key='network-resource.network-id = $tmp.network-id'\n force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"esr-thirdparty-sdnc\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/aai/v19/external-system/esr-thirdparty-sdnc-list/esr-thirdparty-sdnc/' + $prop.sdncRestApi.thirdpartySdnc.id`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"esr-thirdparty-sdnc.thirdparty-sdnc-id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$prop.sdncRestApi.thirdpartySdnc.id`\" />\n\n<!--/aai/v19/external-system/esr-thirdparty-sdnc-list/esr-thirdparty-sdnc/SOTNControllerDomain2-->\n",
"comments": "",
"outputs": 1,
- "x": 1429,
- "y": 179,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1442,
+ "y": 219,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "58b65656.8480c8",
+ "id": "ead9d9cc.bab4f8",
"type": "switchNode",
"name": "switch llcl length",
"xml": "<switch test='`$node.te.tunnel-termination-point[$ttidx].local-link-connectivities.local-link-connectivity_length`'>\n",
"comments": "",
"outputs": 1,
- "x": 1559,
- "y": 1319,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1572,
+ "y": 1359,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "cf6621ae.60449",
- "a969fa1e.a9262",
- "31cb7972.09206e"
+ "adf88b82.7a0f88",
+ "67300142.b2942",
+ "fa1d40a0.27dcc"
]
]
},
{
- "id": "cf6621ae.60449",
+ "id": "adf88b82.7a0f88",
"type": "other",
"name": "Null",
"xml": "<outcome value=''>\n",
"comments": "",
"outputs": 1,
- "x": 1747,
- "y": 1205,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1760,
+ "y": 1245,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "95b8f366.2c9b38"
+ "f1f92de8.0da378"
]
]
},
{
- "id": "a969fa1e.a9262",
+ "id": "67300142.b2942",
"type": "outcome",
"name": "length 0",
"xml": "<outcome value='0'>\n",
"comments": "",
"outputs": 1,
- "x": 1752,
- "y": 1280,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1765,
+ "y": 1320,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "95b8f366.2c9b38"
+ "f1f92de8.0da378"
]
]
},
{
- "id": "31cb7972.09206e",
+ "id": "fa1d40a0.27dcc",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 1754,
- "y": 1354,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1767,
+ "y": 1394,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "df66f384.e71e78"
+ "945bda0b.acb23"
]
]
},
{
- "id": "95b8f366.2c9b38",
+ "id": "f1f92de8.0da378",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 1907,
- "y": 1271,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1920,
+ "y": 1311,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "ba6a5053.fa9158",
+ "id": "489cfee9.f3ca9",
"type": "save",
"name": "save ttp relationship to tp in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='tunnel-termination-point:relationship-list' \n key='tunnel-termination-point.ttp-id = $unique-ttpId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $unique-nodeId + '/p-interfaces/p-interface/' + $unique-ltpId-second`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$unique-ltpId-second`\" />",
"comments": "",
"outputs": 1,
- "x": 2135,
- "y": 1357,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2148,
+ "y": 1397,
+ "z": "a1dc56fc.25a538",
"wires": [
[]
]
},
{
- "id": "f20766b0.56af",
+ "id": "5109bb9b.43b29c",
"type": "set",
"name": "set unique-ltpId second",
"xml": "<set>\n<parameter name='unique-ltpId-second' value=\"`$unique-nodeId + '-ltpId-' + $node.te.tunnel-termination-point[$ttidx].local-link-connectivities.local-link-connectivity[0].link-tp-ref`\" />\n",
"comments": "",
- "x": 2084,
- "y": 1313,
- "z": "6d6b8a1f.be1cb4",
+ "x": 2097,
+ "y": 1353,
+ "z": "a1dc56fc.25a538",
"wires": []
},
{
- "id": "df66f384.e71e78",
+ "id": "945bda0b.acb23",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 1894,
- "y": 1350,
- "z": "6d6b8a1f.be1cb4",
+ "x": 1907,
+ "y": 1390,
+ "z": "a1dc56fc.25a538",
"wires": [
[
- "f20766b0.56af",
- "ba6a5053.fa9158"
+ "5109bb9b.43b29c",
+ "489cfee9.f3ca9"
]
]
}
diff --git a/platform-logic/datachange/src/main/json/DataChange_update-tp-ttp-relationship.json b/platform-logic/datachange/src/main/json/DataChange_update-tp-ttp-relationship.json
index a22a5bdd..dec44df1 100644
--- a/platform-logic/datachange/src/main/json/DataChange_update-tp-ttp-relationship.json
+++ b/platform-logic/datachange/src/main/json/DataChange_update-tp-ttp-relationship.json
@@ -1,20 +1,20 @@
[
{
- "id": "f3e0b928.e8c7e",
+ "id": "cba977f9.85534",
"type": "dgstart",
"name": "DGSTART",
"outputs": 1,
- "x": 128,
- "y": 83,
- "z": "8966128c.40fc9",
+ "x": 137,
+ "y": 125.77778625488281,
+ "z": "b3282176.32be28",
"wires": [
[
- "2b8024f5.a0b3e4"
+ "dde6a42.304b158"
]
]
},
{
- "id": "2b8024f5.a0b3e4",
+ "id": "dde6a42.304b158",
"type": "service-logic",
"name": "DataChange ${project.version}",
"module": "DataChange",
@@ -22,540 +22,540 @@
"comments": "",
"xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>",
"outputs": 1,
- "x": 217.00003051757812,
- "y": 173.88891220092773,
- "z": "8966128c.40fc9",
+ "x": 226.00003051757812,
+ "y": 216.66669845581055,
+ "z": "b3282176.32be28",
"wires": [
[
- "e0b4218d.2d604"
+ "459043f1.b44bbc"
]
]
},
{
- "id": "e0b4218d.2d604",
+ "id": "459043f1.b44bbc",
"type": "method",
"name": "method update-tp-ttp-relationship",
"xml": "<method rpc='update-tp-ttp-relationship' mode='sync'>\n",
"comments": "",
"outputs": 1,
- "x": 253.1112518310547,
- "y": 244.22223663330078,
- "z": "8966128c.40fc9",
+ "x": 262.1112518310547,
+ "y": 287.0000228881836,
+ "z": "b3282176.32be28",
"wires": [
[
- "36afdba8.70bb5c"
+ "186c55de.c4aa02"
]
]
},
{
- "id": "36afdba8.70bb5c",
+ "id": "186c55de.c4aa02",
"type": "block",
"name": "block : atomic",
"xml": "<block atomic=\"true\">\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 478.33343505859375,
- "y": 243.77792358398438,
- "z": "8966128c.40fc9",
+ "x": 487.33343505859375,
+ "y": 286.5557098388672,
+ "z": "b3282176.32be28",
"wires": [
[
- "63bd9611.390fd8",
- "1ed8c21a.583ede",
- "232a5f0a.159568",
- "e63ab049.15d1f"
+ "bae21f69.72b29",
+ "c754730e.915558",
+ "1242acf2.9455a3",
+ "f448c5cf.144de8"
]
]
},
{
- "id": "1ed8c21a.583ede",
+ "id": "c754730e.915558",
"type": "for",
"name": "for each node in network-eth",
"xml": "<for index='pethidx' start='0' end='`$network-eth.node_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 710.8888549804688,
- "y": 198.33331298828125,
- "z": "8966128c.40fc9",
+ "x": 719.8888549804688,
+ "y": 241.11109924316406,
+ "z": "b3282176.32be28",
"wires": [
[
- "d25c4b67.5fdd7",
- "7e336092.2a08",
- "d912c615.382f4",
- "e1c780a1.bce018"
+ "3d9e22e8.4c63be",
+ "8255778d.4bbb18",
+ "fc2531d8.c81378",
+ "c794ebab.b4d2b8"
]
]
},
{
- "id": "d25c4b67.5fdd7",
+ "id": "3d9e22e8.4c63be",
"type": "set",
"name": "set node-eth",
"xml": "<set>\n<parameter name='node-eth.' value='`$network-eth.node[$pethidx].`' />",
"comments": "",
- "x": 973.111083984375,
- "y": 42.22221374511719,
- "z": "8966128c.40fc9",
+ "x": 982.111083984375,
+ "y": 85,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "68049.3760dfb7c",
+ "id": "f02496e2.4d8238",
"type": "set",
"name": "set termination point tp-eth",
"xml": "<set>\n<parameter name='tp-eth.' value='`$node-eth.termination-point[$tidx].`' />\n",
"comments": "",
- "x": 1215.111328125,
- "y": 232.00006103515625,
- "z": "8966128c.40fc9",
+ "x": 1224.111328125,
+ "y": 274.77784729003906,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "78ae2560.1cea4c",
+ "id": "3b37c604.4d197a",
"type": "set",
"name": "set unique-ltpethId",
"xml": "<set>\n<parameter name='unique-ltpethId' value=\"`$unique-node-ethId + '-ltpId-' + $tp-eth.te-tp-id`\" />\n",
"comments": "",
- "x": 1193.000244140625,
- "y": 269.111083984375,
- "z": "8966128c.40fc9",
+ "x": 1202.000244140625,
+ "y": 311.8888702392578,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "63bd9611.390fd8",
+ "id": "bae21f69.72b29",
"type": "execute",
"name": "execute set tmp.network-eth.network-id",
"xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='replace' >\n <parameter name=\"source\" value=\"`$network-eth.network-id`\"/>\n <parameter name=\"outputPath\" value=\"tmp.original-network-eth.network-id\"/>\n <parameter name=\"target\" value=\"/\"/>\n <parameter name=\"replacement\" value=\"-\"/>\n ",
"comments": "",
"outputs": 1,
- "x": 668.9935302734375,
- "y": 62.993499755859375,
- "z": "8966128c.40fc9",
+ "x": 677.9935302734375,
+ "y": 105.77128601074219,
+ "z": "b3282176.32be28",
"wires": [
[]
]
},
{
- "id": "7e336092.2a08",
+ "id": "8255778d.4bbb18",
"type": "set",
"name": "set local variables",
"xml": "<set>\n<parameter name='unique-network-ethId' value='`$tmp.network-eth.network-id`' />\n",
"comments": "",
- "x": 987,
- "y": 97,
- "z": "8966128c.40fc9",
+ "x": 996,
+ "y": 139.7777862548828,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "232a5f0a.159568",
+ "id": "1242acf2.9455a3",
"type": "execute",
"name": "execute set tmp.network-otn.network-id",
"xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='replace' >\n <parameter name=\"source\" value=\"`$network-otn.network-id`\"/>\n <parameter name=\"outputPath\" value=\"tmp.original-network-otn.network-id\"/>\n <parameter name=\"target\" value=\"/\"/>\n <parameter name=\"replacement\" value=\"-\"/>\n ",
"comments": "",
"outputs": 1,
- "x": 666,
- "y": 102,
- "z": "8966128c.40fc9",
+ "x": 675,
+ "y": 144.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[]
]
},
{
- "id": "5ced7489.3fd33c",
+ "id": "a7f3a830.3d5f7",
"type": "for",
"name": "for each tunnel termination point in otn",
"xml": "<for index='ttidx' start='0' end='`$node-otn.te.tunnel-termination-point_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 1570,
- "y": 629,
- "z": "8966128c.40fc9",
+ "x": 1579,
+ "y": 671.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[
- "c149dbcd.dbc5b",
- "a007e2e5.f8d76",
- "1e876a82.9683f5",
- "a5938665.3779c8",
- "a06a50c9.82a2f"
+ "10ff0cec.24339b",
+ "9056ce37.3f1b1",
+ "52a7d8e5.f166d",
+ "dbe73ecc.1015c8",
+ "734513b1.8f6e74"
]
]
},
{
- "id": "c149dbcd.dbc5b",
+ "id": "10ff0cec.24339b",
"type": "set",
"name": "set tunnel termination point",
"xml": "<set>\n<parameter name='ttp.' value='`$node-otn.te.tunnel-termination-point[$ttidx].`' />\n",
"comments": "",
- "x": 1939,
- "y": 341,
- "z": "8966128c.40fc9",
+ "x": 1948,
+ "y": 383.7777862548828,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "a007e2e5.f8d76",
+ "id": "9056ce37.3f1b1",
"type": "set",
"name": "set unique-ttpId",
"xml": "<set>\n<parameter name='unique-ttpId' value=\"`$unique-node-otnId + '-ttpId-' + $ttp.tunnel-tp-id`\" />\n",
"comments": "",
- "x": 1906.888916015625,
- "y": 405.111083984375,
- "z": "8966128c.40fc9",
+ "x": 1915.888916015625,
+ "y": 447.8888702392578,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "b56a229e.94c8d8",
+ "id": "588044e.57930bc",
"type": "set",
"name": "set tp-inter-layer-lock-id",
"xml": "<set>\n<parameter name='tp-inter-layer-lock-id' value='`$node-eth.termination-point[$tidx].te.inter-layer-lock-id[0]`' />\n",
"comments": "",
- "x": 1233,
- "y": 309,
- "z": "8966128c.40fc9",
+ "x": 1242,
+ "y": 351.7777862548828,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "91b08f38.b7b1f",
+ "id": "5be60218.18e4f4",
"type": "for",
"name": "for each node in network-otn",
"xml": "<for index='potnidx' start='0' end='`$network-otn.node_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 1251,
- "y": 358,
- "z": "8966128c.40fc9",
+ "x": 1260,
+ "y": 400.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[
- "2a04c22a.d38706",
- "747557f8.e08f6",
- "23d7e732.31c878",
- "7fec5669.9d797",
- "5525a122.db022"
+ "bcce7947.89d4e",
+ "6a38d3e2.fd7954",
+ "85e0a40f.e7ed",
+ "4764cff0.412538",
+ "46555423.5326e4"
]
]
},
{
- "id": "2a04c22a.d38706",
+ "id": "bcce7947.89d4e",
"type": "set",
"name": "set node-otn",
"xml": "<set>\n<parameter name='node-otn.' value='`$network-otn.node[$potnidx].`' />",
"comments": "",
- "x": 1545,
- "y": 328,
- "z": "8966128c.40fc9",
+ "x": 1554,
+ "y": 370.7777862548828,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "747557f8.e08f6",
+ "id": "6a38d3e2.fd7954",
"type": "set",
"name": "set local variables",
"xml": "<set>\n<parameter name='unique-network-otnId' value='`$tmp.network-otn.network-id`' />\n",
"comments": "",
- "x": 1543.888916015625,
- "y": 375.7777862548828,
- "z": "8966128c.40fc9",
+ "x": 1552.888916015625,
+ "y": 418.5555725097656,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "1e876a82.9683f5",
+ "id": "52a7d8e5.f166d",
"type": "set",
"name": "set ttp-inter-layer-lock-id",
"xml": "<set>\n<parameter name='ttp-inter-layer-lock-id' value='`$node-otn.te.tunnel-termination-point[$ttidx].inter-layer-lock-id[0]`' />\n",
"comments": "",
- "x": 1931,
- "y": 459,
- "z": "8966128c.40fc9",
+ "x": 1940,
+ "y": 501.7777862548828,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "a5938665.3779c8",
+ "id": "dbe73ecc.1015c8",
"type": "switchNode",
"name": "switch tp-inter-layer-lock-id",
"xml": "<switch test='`$tp-inter-layer-lock-id`'>\n",
"comments": "",
"outputs": 1,
- "x": 1938,
- "y": 515,
- "z": "8966128c.40fc9",
+ "x": 1947,
+ "y": 557.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[
- "48b284bc.31f88c"
+ "dd2d2104.bc9a18"
]
]
},
{
- "id": "48b284bc.31f88c",
+ "id": "dd2d2104.bc9a18",
"type": "outcome",
"name": "ttp-inter-layer-lock-id",
"xml": "<outcome value='`$ttp-inter-layer-lock-id`'>\n",
"comments": "",
"outputs": 1,
- "x": 1996,
- "y": 611,
- "z": "8966128c.40fc9",
+ "x": 2005,
+ "y": 653.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[
- "d5168225.118b5"
+ "48fc2c75.77d024"
]
]
},
{
- "id": "d5168225.118b5",
+ "id": "48fc2c75.77d024",
"type": "save",
"name": "save p-interface relationship to ttp in AAI",
"xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='p-interface:relationship-list' \n key='p-interface.interface-name = $unique-ltpethId' force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"tunnel-termination-point\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"/network/tunnel-termination-points/tunnel-termination-point/ + `$unique-ttpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"tunnel-termination-point.tunnel-tp-id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$unique-ttpId`\" />\n",
"comments": "",
"outputs": 1,
- "x": 2314,
- "y": 611,
- "z": "8966128c.40fc9",
+ "x": 2323,
+ "y": 653.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[]
]
},
{
- "id": "679b8e41.9ed698",
+ "id": "f7880100.7c4d78",
"type": "set",
"name": "unset termination point tp-eth",
"xml": "<set>\n<parameter name='tp-eth.' value='' />\n",
"comments": "",
- "x": 1210,
- "y": 194.99349975585938,
- "z": "8966128c.40fc9",
+ "x": 1219,
+ "y": 237.7712860107422,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "a06a50c9.82a2f",
+ "id": "734513b1.8f6e74",
"type": "set",
"name": "unset tunnel termination point",
"xml": "<set>\n<parameter name='ttp.' value='' />\n",
"comments": "",
- "x": 1947,
- "y": 287.9934997558594,
- "z": "8966128c.40fc9",
+ "x": 1956,
+ "y": 330.7712860107422,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "d912c615.382f4",
+ "id": "fc2531d8.c81378",
"type": "switchNode",
"name": "switch node-eth tp",
"xml": "<switch test='`$node-eth.termination-point_length`'>\n",
"comments": "",
"outputs": 1,
- "x": 577,
- "y": 377,
- "z": "8966128c.40fc9",
+ "x": 586,
+ "y": 419.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[
- "a5220607.a1fd88",
- "ed33421.4d77fc",
- "60e52ea8.adce88"
+ "601d7951.71e8b",
+ "d861b589.14035",
+ "7f887585.d4b524"
]
]
},
{
- "id": "a5220607.a1fd88",
+ "id": "601d7951.71e8b",
"type": "other",
"name": "Null",
"xml": "<outcome value=''>\n",
"comments": "",
"outputs": 1,
- "x": 756,
- "y": 329,
- "z": "8966128c.40fc9",
+ "x": 765,
+ "y": 371.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[
- "f8847f3a.3586c"
+ "7824b45e.78053c"
]
]
},
{
- "id": "f8847f3a.3586c",
+ "id": "7824b45e.78053c",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 911,
- "y": 329,
- "z": "8966128c.40fc9",
+ "x": 920,
+ "y": 371.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[]
]
},
{
- "id": "60e52ea8.adce88",
+ "id": "7f887585.d4b524",
"type": "outcome",
"name": "length 0",
"xml": "<outcome value='0'>\n",
"comments": "",
"outputs": 1,
- "x": 766,
- "y": 377,
- "z": "8966128c.40fc9",
+ "x": 775,
+ "y": 419.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[
- "f8847f3a.3586c"
+ "7824b45e.78053c"
]
]
},
{
- "id": "ed33421.4d77fc",
+ "id": "d861b589.14035",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 755,
- "y": 431,
- "z": "8966128c.40fc9",
+ "x": 764,
+ "y": 473.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[
- "4137593c.5397c"
+ "a6890129.4d77c"
]
]
},
{
- "id": "4137593c.5397c",
+ "id": "a6890129.4d77c",
"type": "for",
"name": "for each termination point",
"xml": "<for index='tidx' start='0' end='`$node-eth.termination-point_length`' >\n",
"comments": "",
"outputs": 1,
- "x": 963.4444580078125,
- "y": 401.111083984375,
- "z": "8966128c.40fc9",
+ "x": 972.4444580078125,
+ "y": 443.8888702392578,
+ "z": "b3282176.32be28",
"wires": [
[
- "679b8e41.9ed698",
- "68049.3760dfb7c",
- "78ae2560.1cea4c",
- "b56a229e.94c8d8",
- "91b08f38.b7b1f"
+ "f7880100.7c4d78",
+ "f02496e2.4d8238",
+ "3b37c604.4d197a",
+ "588044e.57930bc",
+ "5be60218.18e4f4"
]
]
},
{
- "id": "23d7e732.31c878",
+ "id": "85e0a40f.e7ed",
"type": "set",
"name": "unset node-otn",
"xml": "<set>\n<parameter name='node-otn.' value='' />\n<parameter name='unique-network-otnId' value='' />\n<parameter name='unique-node-otnId' value=\"\" />\n",
"comments": "",
- "x": 1546,
- "y": 277,
- "z": "8966128c.40fc9",
+ "x": 1555,
+ "y": 319.7777862548828,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "7fec5669.9d797",
+ "id": "4764cff0.412538",
"type": "switchNode",
"name": "switch node-otn ttp",
"xml": "<switch test='`$node-otn.te.tunnel-termination-point_length`'>\n",
"comments": "",
"outputs": 1,
- "x": 1143,
- "y": 608,
- "z": "8966128c.40fc9",
+ "x": 1152,
+ "y": 650.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[
- "c2495d37.4f1a88",
- "4a7d6e3.4a2c99",
- "e5a8fd10.f52c58"
+ "abfc6cbb.6eaee8",
+ "6c6ea4d2.be42cc",
+ "1f3ac3bf.46c73c"
]
]
},
{
- "id": "c2495d37.4f1a88",
+ "id": "abfc6cbb.6eaee8",
"type": "other",
"name": "Null",
"xml": "<outcome value=''>\n",
"comments": "",
"outputs": 1,
- "x": 1331,
- "y": 494,
- "z": "8966128c.40fc9",
+ "x": 1340,
+ "y": 536.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[
- "50aa44cc.08445c"
+ "ceb636f.d5bb7c8"
]
]
},
{
- "id": "4a7d6e3.4a2c99",
+ "id": "6c6ea4d2.be42cc",
"type": "outcome",
"name": "length 0",
"xml": "<outcome value='0'>\n",
"comments": "",
"outputs": 1,
- "x": 1336,
- "y": 569,
- "z": "8966128c.40fc9",
+ "x": 1345,
+ "y": 611.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[
- "50aa44cc.08445c"
+ "ceb636f.d5bb7c8"
]
]
},
{
- "id": "e5a8fd10.f52c58",
+ "id": "1f3ac3bf.46c73c",
"type": "other",
"name": "other",
"xml": "<outcome value='Other'>\n",
"comments": "",
"outputs": 1,
- "x": 1333,
- "y": 631,
- "z": "8966128c.40fc9",
+ "x": 1342,
+ "y": 673.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[
- "5ced7489.3fd33c"
+ "a7f3a830.3d5f7"
]
]
},
{
- "id": "50aa44cc.08445c",
+ "id": "ceb636f.d5bb7c8",
"type": "block",
"name": "block",
"xml": "<block>\n",
"atomic": "false",
"comments": "",
"outputs": 1,
- "x": 1491,
- "y": 560,
- "z": "8966128c.40fc9",
+ "x": 1500,
+ "y": 602.7777862548828,
+ "z": "b3282176.32be28",
"wires": [
[]
]
},
{
- "id": "e1c780a1.bce018",
+ "id": "c794ebab.b4d2b8",
"type": "set",
"name": "set local variables",
"xml": "<set>\n<parameter name='unique-node-ethId' value=\"`'networkId-' + $unique-network-ethId + '-nodeId-' + $node-eth.node-id`\" />\n",
"comments": "",
- "x": 989,
- "y": 153,
- "z": "8966128c.40fc9",
+ "x": 998,
+ "y": 195.7777862548828,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "e63ab049.15d1f",
+ "id": "f448c5cf.144de8",
"type": "set",
"name": "set local variables",
"xml": "<set>\n<parameter name='tmp.network-eth.network-id' value=\"`$prop.sdncRestApi.thirdpartySdnc.id + '-' + $tmp.original-network-eth.network-id`\" />\n<parameter name='tmp.network-otn.network-id' value=\"`$prop.sdncRestApi.thirdpartySdnc.id + '-' + $tmp.original-network-otn.network-id`\" />\n\n",
"comments": "",
- "x": 658,
- "y": 144,
- "z": "8966128c.40fc9",
+ "x": 667,
+ "y": 186.7777862548828,
+ "z": "b3282176.32be28",
"wires": []
},
{
- "id": "5525a122.db022",
+ "id": "46555423.5326e4",
"type": "set",
"name": "set local variables",
"xml": "<set>\n<parameter name='unique-node-otnId' value=\"`'networkId-' + $unique-network-otnId + '-nodeId-' + $node-otn.node-id`\" />\n",
"comments": "",
- "x": 1544,
- "y": 425,
- "z": "8966128c.40fc9",
+ "x": 1553,
+ "y": 467.7777862548828,
+ "z": "b3282176.32be28",
"wires": []
}
] \ No newline at end of file
diff --git a/platform-logic/datachange/src/main/xml/DataChange_esr-thirdparty-sdnc-discovery.xml b/platform-logic/datachange/src/main/xml/DataChange_esr-thirdparty-sdnc-discovery.xml
index 057f6313..98585dbd 100644
--- a/platform-logic/datachange/src/main/xml/DataChange_esr-thirdparty-sdnc-discovery.xml
+++ b/platform-logic/datachange/src/main/xml/DataChange_esr-thirdparty-sdnc-discovery.xml
@@ -1,6 +1,6 @@
<service-logic
- xmlns='http://www.onap.org/sdnc/svclogic'
- xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>
+ xmlns='http://www.onap.org/sdnc/svclogic'
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>
<method rpc='esr-thirdparty-sdnc-discovery' mode='sync'>
<block atomic="true">
<switch test="`$prop.sdncRestApi.vendor == 'ZTE'`">
@@ -76,14 +76,14 @@
<parameter name='network.' value='`$topology.networks.network[$netidx].`' />
</set>
<switch test='`$network.te-topology-id`'>
- <outcome value='11'>
+ <outcome value='1'>
<block>
<set>
<parameter name='network-otn.' value='`$topology.networks.network[$netidx].`' />
</set>
</block>
</outcome>
- <outcome value='33'>
+ <outcome value='2'>
<block>
<set>
<parameter name='network-eth.' value='`$topology.networks.network[$netidx].`' />
@@ -143,14 +143,14 @@
<parameter name='network.' value='`$topology.networks.network[$netidx].`' />
</set>
<switch test='`$network.te-topology-id`'>
- <outcome value='11'>
+ <outcome value='1'>
<block>
<set>
<parameter name='network-otn.' value='`$topology.networks.network[$netidx].`' />
</set>
</block>
</outcome>
- <outcome value='33'>
+ <outcome value='2'>
<block>
<set>
<parameter name='network-eth.' value='`$topology.networks.network[$netidx].`' />
@@ -275,14 +275,14 @@
<parameter name='controllerid' value="`$prop.sdncRestApi.type + '_' + $prop.sdncRestApi.thirdpartySdnc.url + '_' + $prop.sdncRestApi.thirdpartySdnc.id`" />
</set>
<get-resource plugin='org.onap.ccsdk.sli.adaptors.resource.sql.SqlResource' resource='SQL'
-key='SELECT controller_id
+ key='SELECT controller_id
from TOPOLOGY_LOGICAL_RELATION_TO_PINTERFACE
WHERE controller_id = $controllerid'
-pfx='dbcontrollerid'>
+ pfx='dbcontrollerid'>
<outcome value='success'>
<delete plugin='org.onap.ccsdk.sli.adaptors.resource.sql.SqlResource'
- resource="SQL"
- key="DELETE FROM TOPOLOGY_LOGICAL_RELATION_TO_PINTERFACE WHERE controller_id = $controllerid"></delete>
+ resource="SQL"
+ key="DELETE FROM TOPOLOGY_LOGICAL_RELATION_TO_PINTERFACE WHERE controller_id = $controllerid"></delete>
</outcome>
<outcome value='failure'>
<return status='failure'>
@@ -307,14 +307,14 @@ pfx='dbcontrollerid'>
<parameter name='controllerid' value="`$prop.sdncRestApi.type + '_' + $prop.sdncRestApi.thirdpartySdnc.url + '_' + $prop.sdncRestApi.thirdpartySdnc.id`" />
</set>
<get-resource plugin='org.onap.ccsdk.sli.adaptors.resource.sql.SqlResource' resource='SQL'
-key='SELECT controller_id
+ key='SELECT controller_id
from TOPOLOGY_LOGICAL_RELATION_TO_PINTERFACE
WHERE controller_id = $controllerid'
-pfx='dbcontrollerid'>
+ pfx='dbcontrollerid'>
<outcome value='success'>
<delete plugin='org.onap.ccsdk.sli.adaptors.resource.sql.SqlResource'
- resource="SQL"
- key="DELETE FROM TOPOLOGY_LOGICAL_RELATION_TO_PINTERFACE WHERE controller_id = $controllerid"></delete>
+ resource="SQL"
+ key="DELETE FROM TOPOLOGY_LOGICAL_RELATION_TO_PINTERFACE WHERE controller_id = $controllerid"></delete>
</outcome>
<outcome value='failure'>
<return status='failure'>
diff --git a/platform-logic/datachange/src/main/xml/DataChange_esr-thirdparty-sdnc.xml b/platform-logic/datachange/src/main/xml/DataChange_esr-thirdparty-sdnc.xml
index 15ac4016..46d85060 100644
--- a/platform-logic/datachange/src/main/xml/DataChange_esr-thirdparty-sdnc.xml
+++ b/platform-logic/datachange/src/main/xml/DataChange_esr-thirdparty-sdnc.xml
@@ -1,6 +1,6 @@
<service-logic
- xmlns='http://www.onap.org/sdnc/svclogic'
- xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>
+ xmlns='http://www.onap.org/sdnc/svclogic'
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>
<method rpc='esr-thirdparty-sdnc' mode='sync'>
<block atomic="true">
<call module='DataChange' rpc='validate-esr-thirdparty-sdnc-input' mode='sync' ></call>
@@ -57,14 +57,6 @@
</switch>
</block>
</for>
- <record plugin="org.onap.ccsdk.sli.core.sli.recording.FileRecorder">
- <parameter name="file" value="/opt/opendaylight/current/data/log/svclogic.log"/>
- <parameter name="field1" value="__TIMESTAMP__"/>
- <parameter name="field2" value="data-change-notification"/>
- <parameter name="field3" value="Config"/>
- <parameter name="field4" value="`service-url`"/>
- <parameter name="field5" value="`$prop.sdncRestApi.thirdpartySdnc.url`"/>
- </record>
<call module='DataChange' rpc='esr-thirdparty-sdnc-discovery' mode='sync' ></call>
</block>
</method>
diff --git a/platform-logic/datachange/src/main/xml/DataChange_update-network-links-to-aai.xml b/platform-logic/datachange/src/main/xml/DataChange_update-network-links-to-aai.xml
index f870e369..8bac2e29 100644
--- a/platform-logic/datachange/src/main/xml/DataChange_update-network-links-to-aai.xml
+++ b/platform-logic/datachange/src/main/xml/DataChange_update-network-links-to-aai.xml
@@ -1,6 +1,6 @@
<service-logic
- xmlns='http://www.onap.org/sdnc/svclogic'
- xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>
+ xmlns='http://www.onap.org/sdnc/svclogic'
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>
<method rpc='update-network-links-to-aai' mode='sync'>
<block atomic="true">
<for index='pidx' start='0' end='`$network.link_length`' >
@@ -30,12 +30,12 @@
<parameter name='tmp.aai.p-interface' value='' />
<parameter name='tmp.aai.p-interface.inter-domain-plug-id' value='' />
</set>
- <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
- resource="p-interface"
- key="pnf.pnf-name = $unique-src-node-Id
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="p-interface"
+ key="pnf.pnf-name = $unique-src-node-Id
and p-interface.interface-name = $src-tpId"
- local-only="false"
- pfx="tmp.aai.p-interface" >
+ local-only="false"
+ pfx="tmp.aai.p-interface" >
<outcome value='success'>
<switch test='`$tmp.aai.p-interface.inter-domain-plug-id`'>
<outcome value=''>
@@ -83,11 +83,11 @@
<outcome value='false'>
<switch test='`$is-open-ended-link`'>
<outcome value='true'>
- <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
- resource="logical-link"
- key="logical-link.link-name = $alt-unique-linkId"
- local-only="false"
- pfx="tmp.aai.logical-link" >
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="logical-link"
+ key="logical-link.link-name = $alt-unique-linkId"
+ local-only="false"
+ pfx="tmp.aai.logical-link" >
<outcome value='success'>
<block>
<record plugin="org.onap.ccsdk.sli.core.sli.recording.FileRecorder">
@@ -100,8 +100,8 @@
<parameter name="field6" value="relationship-value" />
<parameter name="field7" value='`$tmp.aai.logical-link.relationship-list.relationship[0].relationship-data[1].relationship-value`' />
</record>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list'
- key='logical-link.link-name = $alt-unique-linkId' force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list'
+ key='logical-link.link-name = $alt-unique-linkId' force="true" pfx="tmp.AnAI-data">
<!--<parameter name="relationship-list.relationship[0].related-to" value="p-interface" />-->
<!--<parameter name="relationship-list.relationship[0].related-link" value="`'/network/pnfs/pnf/' + $unique-src-node-Id + '/p-interfaces/p-interface/' + $src-tpId`" />-->
<!--<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="p-interface.interface-name" />-->
@@ -139,8 +139,8 @@
</block>
</outcome>
</save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute'
- key='te-link-attribute.id = $link.te.te-link-attributes.name' >
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute'
+ key='te-link-attribute.id = $link.te.te-link-attributes.name' >
<parameter name='id' value='`$link.te.te-link-attributes.name`' />
<parameter name='access-type' value='`$link.te.te-link-attributes.access-type`' />
</save>
@@ -163,8 +163,8 @@
<set>
<parameter name='unique-lrId' value="`$alt-unique-linkId + '-lrId-' + $label-restriction.index`" />
</set>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction'
- key='label-restriction.id = $unique-lrId' >
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction'
+ key='label-restriction.id = $unique-lrId' >
<parameter name='id' value='`$unique-lrId`' />
<parameter name='label-start' value='`$label-restriction.label-start.te-label-tpn`' />
<parameter name='label-end' value='`$label-restriction.label-end.te-label-tpn`' />
@@ -175,8 +175,8 @@
<block></block>
</outcome>
<outcome value='failure'>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction'
- key='label-restriction.id = $unique-lrId' >
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction'
+ key='label-restriction.id = $unique-lrId' >
<parameter name='id' value='`$unique-lrId`' />
<parameter name='label-start' value='`$label-restriction.label-start.te-label-tpn`' />
<parameter name='label-end' value='`$label-restriction.label-end.te-label-tpn`' />
@@ -186,15 +186,15 @@
</save>
</outcome>
</save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list'
- key='te-link-attribute.id = $link.te.te-link-attributes.name' force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list'
+ key='te-link-attribute.id = $link.te.te-link-attributes.name' force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="logical-link" />
<parameter name="relationship-list.relationship[0].related-link" value="`'/network/logical-links/logical-link/' + $alt-unique-linkId`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="logical-link.link-name" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$alt-unique-linkId`" />
</save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list'
- key='te-link-attribute.id = $link.te.te-link-attributes.name' force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list'
+ key='te-link-attribute.id = $link.te.te-link-attributes.name' force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="label-restriction" />
<parameter name="relationship-list.relationship[0].related-link" value="`'/network/label-restrictions/label-restriction/' + $unique-lrId`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="label-restriction.id" />
@@ -207,22 +207,22 @@
</outcome>
<outcome value='not-found'>
<block atomic='true'>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link'
- key='logical-link.link-name = $alt-unique-linkId' >
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link'
+ key='logical-link.link-name = $alt-unique-linkId' >
<parameter name='link-name' value='`$alt-unique-linkId`' />
<parameter name='link-id' value='`$link.link-id`' />
<parameter name='link-type' value='`$link.te.te-link-attributes.access-type`' />
<parameter name='link-role' value='cross-domain' />
</save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list'
- key='logical-link.link-name = $alt-unique-linkId' force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list'
+ key='logical-link.link-name = $alt-unique-linkId' force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="p-interface" />
<parameter name="relationship-list.relationship[0].related-link" value="`'/network/pnfs/pnf/' + $unique-src-node-Id + '/p-interfaces/p-interface/' + $src-tpId`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="p-interface.interface-name" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$src-tpId`" />
</save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute'
- key='te-link-attribute.id = $link.te.te-link-attributes.name' >
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute'
+ key='te-link-attribute.id = $link.te.te-link-attributes.name' >
<parameter name='id' value='`$link.te.te-link-attributes.name`' />
<parameter name='access-type' value='`$link.te.te-link-attributes.access-type`' />
</save>
@@ -245,8 +245,8 @@
<set>
<parameter name='unique-lrId' value="`$alt-unique-linkId + '-lrId-' + $label-restriction.index`" />
</set>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction'
- key='label-restriction.id = $unique-lrId' >
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction'
+ key='label-restriction.id = $unique-lrId' >
<parameter name='id' value='`$unique-lrId`' />
<parameter name='label-start' value='`$label-restriction.label-start.te-label-tpn`' />
<parameter name='label-end' value='`$label-restriction.label-end.te-label-tpn`' />
@@ -257,8 +257,8 @@
<block></block>
</outcome>
<outcome value='failure'>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction'
- key='logical-link.link-name = $alt-unique-linkId
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction'
+ key='logical-link.link-name = $alt-unique-linkId
AND label-restriction.id = $unique-lrId' >
<parameter name='id' value='`$unique-lrId`' />
<parameter name='label-start' value='`$label-restriction.label-start`' />
@@ -269,15 +269,15 @@
</save>
</outcome>
</save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list'
- key='te-link-attribute.id = $link.te.te-link-attributes.name' force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list'
+ key='te-link-attribute.id = $link.te.te-link-attributes.name' force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="logical-link" />
<parameter name="relationship-list.relationship[0].related-link" value="`'/network/logical-links/logical-link/' + $alt-unique-linkId`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="logical-link.link-name" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$alt-unique-linkId`" />
</save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list'
- key='te-link-attribute.id = $link.te.te-link-attributes.name' force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list'
+ key='te-link-attribute.id = $link.te.te-link-attributes.name' force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="label-restriction" />
<parameter name="relationship-list.relationship[0].related-link" value="`'/network/label-restrictions/label-restriction/' + $unique-lrId`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="label-restriction.id" />
@@ -292,24 +292,14 @@
</outcome>
<outcome value='false'>
<block atomic='true'>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link'
- key='logical-link.link-name = $unique-linkId' >
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link'
+ key='logical-link.link-name = $unique-linkId' >
<parameter name='link-name' value='`$unique-linkId`' />
<parameter name='link-id' value='`$link.link-id`' />
<parameter name='link-type' value='`$link.te.te-link-attributes.access-type`' />
</save>
- <record plugin="org.onap.ccsdk.sli.core.sli.recording.FileRecorder">
- <parameter name="file" value="/opt/onap/logTopologyDiscovery.txt" />
- <parameter name="field1" value="__TIMESTAMP__" />
- <parameter name="field2" value="uniqueLinkId" />
- <parameter name="field3" value="`$unique-linkId`" />
- <parameter name="field4" value="srcTpId" />
- <parameter name="field5" value="`$src-tpId`" />
- <parameter name="field6" value="dstTpId" />
- <parameter name="field7" value="`$dst-tpId`" />
- </record>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list'
- key='logical-link.link-name = $unique-linkId' force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='logical-link:relationship-list'
+ key='logical-link.link-name = $unique-linkId' force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="p-interface" />
<parameter name="relationship-list.relationship[0].related-link" value="`'/network/pnfs/pnf/' + $unique-src-node-Id + '/p-interfaces/p-interface/' + $src-tpId`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="p-interface.interface-name" />
@@ -319,8 +309,8 @@
<parameter name="relationship-list.relationship[1].relationship-data[0].relationship-key" value="p-interface.interface-name" />
<parameter name="relationship-list.relationship[1].relationship-data[0].relationship-value" value="`$dst-tpId`" />
</save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute'
- key='te-link-attribute.id = $link.te.te-link-attributes.name' >
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute'
+ key='te-link-attribute.id = $link.te.te-link-attributes.name' >
<parameter name='id' value='`$link.te.te-link-attributes.name`' />
<parameter name='access-type' value='`$link.te.te-link-attributes.access-type`' />
</save>
@@ -343,8 +333,8 @@
<set>
<parameter name='unique-lrId' value="`$unique-linkId + '-lrId-' + $label-restriction.index`" />
</set>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction'
- key='label-restriction.id = $unique-lrId' >
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction'
+ key='label-restriction.id = $unique-lrId' >
<parameter name='id' value='`$unique-lrId`' />
<parameter name='label-start' value='`$label-restriction.label-start.te-label-tpn`' />
<parameter name='label-end' value='`$label-restriction.label-end.te-label-tpn`' />
@@ -355,8 +345,8 @@
<block></block>
</outcome>
<outcome value='failure'>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction'
- key='logical-link.link-name = $unique-linkId
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='label-restriction'
+ key='logical-link.link-name = $unique-linkId
AND label-restriction.id = $unique-lrId' >
<parameter name='id' value='`$unique-lrId`' />
<parameter name='label-start' value='`$label-restriction.label-start`' />
@@ -367,15 +357,15 @@
</save>
</outcome>
</save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list'
- key='te-link-attribute.id = $link.te.te-link-attributes.name' force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list'
+ key='te-link-attribute.id = $link.te.te-link-attributes.name' force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="logical-link" />
<parameter name="relationship-list.relationship[0].related-link" value="`'/network/logical-links/logical-link/' + $unique-linkId`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="logical-link.link-name" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$unique-linkId`" />
</save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list'
- key='te-link-attribute.id = $link.te.te-link-attributes.name' force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='te-link-attribute:relationship-list'
+ key='te-link-attribute.id = $link.te.te-link-attributes.name' force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="label-restriction" />
<parameter name="relationship-list.relationship[0].related-link" value="`'/network/label-restrictions/label-restriction/' + $unique-lrId`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="label-restriction.id" />
diff --git a/platform-logic/datachange/src/main/xml/DataChange_update-network-to-aai.xml b/platform-logic/datachange/src/main/xml/DataChange_update-network-to-aai.xml
index 4b3906ee..9d59adf7 100644
--- a/platform-logic/datachange/src/main/xml/DataChange_update-network-to-aai.xml
+++ b/platform-logic/datachange/src/main/xml/DataChange_update-network-to-aai.xml
@@ -1,6 +1,6 @@
<service-logic
- xmlns='http://www.onap.org/sdnc/svclogic'
- xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>
+ xmlns='http://www.onap.org/sdnc/svclogic'
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>
<method rpc='update-network-to-aai' mode='sync'>
<block atomic="true">
<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='replace' >
@@ -10,26 +10,27 @@
<parameter name="replacement" value="-"/>
</execute>
<set>
- <parameter name='tmp.network-id' value="`$prop.sdncRestApi.thirdpartySdnc.id + '-' + $tmp.original-network-id`" />
+ <!--<parameter name='tmp.network-id' value="`$prop.sdncRestApi.thirdpartySdnc.id + '-' + $tmp.original-network-id`" />-->
+ <parameter name='tmp.network-id' value="`$tmp.original-network-id`" />
</set>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='network-resource'
- key='network-resource.network-id = $tmp.network-id' >
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='network-resource'
+ key='network-resource.network-id = $tmp.network-id' >
<parameter name='network-id' value='`$tmp.network-id`' />
<parameter name='client-id' value='`$network.client-id`' />
<parameter name='te-topo-id' value='`$network.te-topology-id`' />
<parameter name='provider-id' value='`$network.provider-id`' />
<parameter name='network-type' value='`$network.network-types`' />
</save>
- <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
- resource="esr-thirdparty-sdnc"
- key="esr-thirdparty-sdnc.thirdparty-sdnc-id = $prop.sdncRestApi.thirdpartySdnc.id AND
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="esr-thirdparty-sdnc"
+ key="esr-thirdparty-sdnc.thirdparty-sdnc-id = $prop.sdncRestApi.thirdpartySdnc.id AND
depth = '1'"
- pfx='tmp.aai.esr-thirdparty-sdnc' local-only='false' >
+ pfx='tmp.aai.esr-thirdparty-sdnc' local-only='false' >
<outcome value='success'>
<block>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='network-resource:relationship-list'
- key='network-resource.network-id = $tmp.network-id'
- force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='network-resource:relationship-list'
+ key='network-resource.network-id = $tmp.network-id'
+ force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="esr-thirdparty-sdnc" />
<parameter name="relationship-list.relationship[0].related-link" value="`'/aai/v19/external-system/esr-thirdparty-sdnc-list/esr-thirdparty-sdnc/' + $prop.sdncRestApi.thirdpartySdnc.id`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="esr-thirdparty-sdnc.thirdparty-sdnc-id" />
@@ -64,8 +65,8 @@
<set>
<parameter name='unique-nodeId' value="`'networkId-' + $unique-networkId + '-nodeId-' + $node.node-id`" />
</set>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf'
- key='pnf.pnf-name = $unique-nodeId' >
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf'
+ key='pnf.pnf-name = $unique-nodeId' >
<parameter name='pnf-name' value='`$unique-nodeId`' />
<parameter name='pnf-id' value='`$node.node-id`' />
<parameter name='operational-status' value='`$node.te.oper-status`' />
@@ -111,8 +112,8 @@
</execute>
</outcome>
</switch>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='p-interface'
- key='pnf.pnf-name = $unique-nodeId
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='p-interface'
+ key='pnf.pnf-name = $unique-nodeId
AND p-interface.interface-name = $unique-ltpId' >
<parameter name='interface-name' value='`$unique-ltpId`' />
<parameter name='network-ref' value='`$tp.supporting-termination-point[0].network-ref`' />
@@ -127,8 +128,8 @@
<block></block>
</outcome>
<outcome value='failure'>
- <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='p-interface'
- key='pnf.pnf-name = $unique-nodeId
+ <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='p-interface'
+ key='pnf.pnf-name = $unique-nodeId
AND p-interface.interface-name = $unique-ltpId' >
<parameter name='interface-name' value='`$unique-ltpId`' />
<parameter name='network-ref' value='`$tp.supporting-termination-point[0].network-ref`' />
@@ -145,20 +146,20 @@
</for>
</outcome>
</switch>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf:relationship-list'
- key='pnf.pnf-name = $unique-nodeId' force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf:relationship-list'
+ key='pnf.pnf-name = $unique-nodeId' force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="network-resource" />
<parameter name="relationship-list.relationship[0].related-link" value="`'/network/network-resources/network-resource/' + $tmp.network-id`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="network-resource.network-id" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$tmp.network-id`" />
</save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='esr-thirdparty-sdnc:relationship-list'
- key='esr-thirdparty-sdnc.thirdparty-sdnc-id = $prop.sdncRestApi.thirdpartySdnc.id'
- force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='esr-thirdparty-sdnc:relationship-list'
+ key='esr-thirdparty-sdnc.thirdparty-sdnc-id = $prop.sdncRestApi.thirdpartySdnc.id'
+ force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="pnf" />
- <parameter name="relationship-list.relationship[0].related-link" value="`'/network/pnfs/pnf/' + $node.node-id`" />
+ <parameter name="relationship-list.relationship[0].related-link" value="`'/network/pnfs/pnf/' + $unique-nodeId`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="pnf.pnf-name" />
- <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$node.node-id`" />
+ <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$unique-nodeId`" />
</save>
<switch test='`$node.te.tunnel-termination-point_length`'>
<outcome value=''>
@@ -178,8 +179,8 @@
<set>
<parameter name='unique-ttpId' value="`$unique-nodeId + '-ttpId-' + $ttp.tunnel-tp-id`" />
</set>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='tunnel-termination-point'
- key='tunnel-termination-point.ttp-id = $unique-ttpId' >
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='tunnel-termination-point'
+ key='tunnel-termination-point.ttp-id = $unique-ttpId' >
<parameter name='ttp-id' value='`$unique-ttpId`' />
<parameter name='tunnel-tp-id' value='`$ttp.tunnel-tp-id`' />
<parameter name='name' value='`$ttp.name`' />
@@ -193,8 +194,8 @@
<block></block>
</outcome>
<outcome value='failure'>
- <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='tunnel-termination-point'
- key='tunnel-termination-point.ttp-id = $unique-ttpId' >
+ <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='tunnel-termination-point'
+ key='tunnel-termination-point.ttp-id = $unique-ttpId' >
<parameter name='ttp-id' value='`$unique-ttpId`' />
<parameter name='tunnel-tp-id' value='`$ttp.tunnel-tp-id`' />
<parameter name='name' value='`$ttp.name`' />
@@ -207,35 +208,15 @@
</update>
</outcome>
</save>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf:relationship-list'
- key='pnf.pnf-name = $unique-nodeId' force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='pnf:relationship-list'
+ key='pnf.pnf-name = $unique-nodeId' force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="tunnel-termination-point" />
<!--<parameter name="relationship-list.relationship[$ttidx].related-link" value="`'/network/network-resources/network-resource/' + $tmp.network-id + '/pnfs/pnf/' + $node.node-id '/tunnel-termination-points/tunnel-termination-point/' + $unique-ttpId`" />-->
<parameter name="relationship-list.relationship[0].related-link" value="`'/network/tunnel-termination-points/tunnel-termination-point/' + $unique-ttpId`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="tunnel-termination-point.ttp-id" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$unique-ttpId`" />
- <outcome value='success'>
- <record plugin="org.onap.ccsdk.sli.core.sli.recording.FileRecorder">
- <parameter name="file" value="/opt/onap/logTopologyDiscovery.txt" />
- <parameter name="field1" value="__TIMESTAMP__" />
- <parameter name="field2" value="sucess executing Hesam log file" />
- <parameter name="field3" value="`$node.te.tunnel-termination-point_length`" />
- <parameter name="field4" value="`$node.termination-point_length`" />
- <parameter name="field5" value="sucessfully saved ttp" />
- <parameter name="field6" value="`relationship-list.relationship[$ttidx].related-link`" />
- </record>
- </outcome>
- <outcome value='failure'>
- <record plugin="org.onap.ccsdk.sli.core.sli.recording.FileRecorder">
- <parameter name="file" value="/opt/onap/logTopologyDiscovery.txt" />
- <parameter name="field1" value="__TIMESTAMP__" />
- <parameter name="field2" value="sucess executing Hesam log file" />
- <parameter name="field3" value="`$node.te.tunnel-termination-point_length`" />
- <parameter name="field4" value="`$node.termination-point_length`" />
- <parameter name="field5" value="failuire on saving ttp" />
- <parameter name="field6" value="`relationship-list.relationship[$ttidx].related-link`" />
- </record>
- </outcome>
+ <outcome value='success'></outcome>
+ <outcome value='failure'></outcome>
</save>
<switch test='`$node.te.tunnel-termination-point[$ttidx].local-link-connectivities.local-link-connectivity_length`'>
<outcome value=''>
@@ -249,8 +230,8 @@
<set>
<parameter name='unique-ltpId-second' value="`$unique-nodeId + '-ltpId-' + $node.te.tunnel-termination-point[$ttidx].local-link-connectivities.local-link-connectivity[0].link-tp-ref`" />
</set>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='tunnel-termination-point:relationship-list'
- key='tunnel-termination-point.ttp-id = $unique-ttpId' force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='tunnel-termination-point:relationship-list'
+ key='tunnel-termination-point.ttp-id = $unique-ttpId' force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="p-interface" />
<parameter name="relationship-list.relationship[0].related-link" value="`'/network/pnfs/pnf/' + $unique-nodeId + '/p-interfaces/p-interface/' + $unique-ltpId-second`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="p-interface.interface-name" />
@@ -262,13 +243,6 @@
</for>
</outcome>
</switch>
- <record plugin="org.onap.ccsdk.sli.core.sli.recording.FileRecorder">
- <parameter name="file" value="/opt/onap/logTopologyDiscovery.txt" />
- <parameter name="field1" value="__TIMESTAMP__" />
- <parameter name="field2" value="sucess executing Hesam log file" />
- <parameter name="field3" value="`$node.te.tunnel-termination-point_length`" />
- <parameter name="field4" value="`$node.termination-point_length`" />
- </record>
</for>
<call module='DataChange' rpc='update-network-links-to-aai' mode='sync' ></call>
</block>
diff --git a/platform-logic/datachange/src/main/xml/DataChange_update-tp-ttp-relationship.xml b/platform-logic/datachange/src/main/xml/DataChange_update-tp-ttp-relationship.xml
index 30eddfd8..fd3a67d9 100644
--- a/platform-logic/datachange/src/main/xml/DataChange_update-tp-ttp-relationship.xml
+++ b/platform-logic/datachange/src/main/xml/DataChange_update-tp-ttp-relationship.xml
@@ -1,6 +1,6 @@
<service-logic
- xmlns='http://www.onap.org/sdnc/svclogic'
- xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>
+ xmlns='http://www.onap.org/sdnc/svclogic'
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='DataChange' version='${project.version}'>
<method rpc='update-tp-ttp-relationship' mode='sync'>
<block atomic="true">
<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='replace' >
@@ -88,8 +88,8 @@
</set>
<switch test='`$tp-inter-layer-lock-id`'>
<outcome value='`$ttp-inter-layer-lock-id`'>
- <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='p-interface:relationship-list'
- key='p-interface.interface-name = $unique-ltpethId' force="true" pfx="tmp.AnAI-data">
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='p-interface:relationship-list'
+ key='p-interface.interface-name = $unique-ltpethId' force="true" pfx="tmp.AnAI-data">
<parameter name="relationship-list.relationship[0].related-to" value="tunnel-termination-point" />
<parameter name="relationship-list.relationship[0].related-link" value="/network/tunnel-termination-points/tunnel-termination-point/ + `$unique-ttpId`" />
<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="tunnel-termination-point.tunnel-tp-id" />
diff --git a/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof.json b/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof.json
new file mode 100644
index 00000000..edc6aadf
--- /dev/null
+++ b/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof.json
@@ -0,0 +1,1652 @@
+[
+ {
+ "id": "ffc612a5.7b0918",
+ "type": "dgstart",
+ "name": "DGSTART",
+ "outputs": 1,
+ "x": 183,
+ "y": 130,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "6dda290e.27dad8"
+ ]
+ ]
+ },
+ {
+ "id": "6dda290e.27dad8",
+ "type": "service-logic",
+ "name": "GENERIC-RESOURCE-API ${project.version}",
+ "module": "GENERIC-RESOURCE-API",
+ "version": "${project.version}",
+ "comments": "",
+ "xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='GENERIC-RESOURCE-API' version='${project.version}'>",
+ "outputs": 1,
+ "x": 308,
+ "y": 456.00001525878906,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "3ffa7f3f.e7e27"
+ ]
+ ]
+ },
+ {
+ "id": "3ffa7f3f.e7e27",
+ "type": "method",
+ "name": "tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof",
+ "xml": "<method rpc='tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof' mode='sync'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 372.0001220703125,
+ "y": 549,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "9aa7ba3c.52a7f"
+ ]
+ ]
+ },
+ {
+ "id": "4ab3abe1.e87adc",
+ "type": "execute",
+ "name": "execute RestApiCallNode getPath from OOF",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.oof-getpath.templatefile`\" />\n<parameter name=\"restapiUrl\" value=\"`$prop.restapi.connection-oof-url`\" />\n<parameter name=\"restapiUser\" value=\"`$prop.oof.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.oof.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"post\"/>\n<parameter name=\"responsePrefix\" value=\"otn-oof\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n<parameter name='customHttpHeaders' value=\"`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`\" />",
+ "comments": "",
+ "outputs": 1,
+ "x": 854.9730834960938,
+ "y": 207.99600219726562,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "6b5ff944.5bf648",
+ "850f0c15.20d28"
+ ]
+ ]
+ },
+ {
+ "id": "6b5ff944.5bf648",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1094.9732246398926,
+ "y": 231.9959716796875,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "cd276ba.d3fc218"
+ ]
+ ]
+ },
+ {
+ "id": "905d3517.25cab8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing OOF api\" />\n",
+ "comments": "",
+ "x": 1233.973258972168,
+ "y": 180.99606323242188,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "850f0c15.20d28",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1093.9730110168457,
+ "y": 180.99606227874756,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "905d3517.25cab8"
+ ]
+ ]
+ },
+ {
+ "id": "6a5159e4.7418a",
+ "type": "comment",
+ "name": "OTN tunnel path computation",
+ "info": "TODO: check input parameters -- they should be\nthe source and destination of ETH node+tp.",
+ "comments": "",
+ "x": 826.4768829345703,
+ "y": 164.00000190734863,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "eda4482b.a18e38",
+ "type": "for",
+ "name": "for vidx..otn-oof.solutions_length[]",
+ "xml": "<for index='vidx' start='0' end='`$otn-oof.solutions_length`' >",
+ "comments": "",
+ "outputs": 1,
+ "x": 845.972900390625,
+ "y": 517.2457275390625,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "576c4b0b.248fb4"
+ ]
+ ]
+ },
+ {
+ "id": "735419f0.115878",
+ "type": "comment",
+ "name": "Loop through OTN links",
+ "info": "",
+ "comments": "",
+ "x": 929.4732055664062,
+ "y": 596.74609375,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "576c4b0b.248fb4",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 950.5001220703125,
+ "y": 708.2864990234375,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "da160010.38d94",
+ "5b4dabd5.4d7054"
+ ]
+ ]
+ },
+ {
+ "id": "da160010.38d94",
+ "type": "get-resource",
+ "name": "get-resource cross-link",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"logical-link\" \n\t\tkey=\"logical-link.link-name = $otn-oof.link-name\"\n pfx='tmp.aai.cross-link' local-only='false' >\n\n <!--AND depth = '0'\"-->\n\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1217.5001220703125,
+ "y": 628.2864685058594,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "38a6a5c5.3878b2",
+ "7911950a.d4f9bc",
+ "c37b490.2ec29b8"
+ ]
+ ]
+ },
+ {
+ "id": "c37b490.2ec29b8",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1409.0001220703125,
+ "y": 573.2864685058594,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "203a4a36.513986"
+ ]
+ ]
+ },
+ {
+ "id": "38a6a5c5.3878b2",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1445.0001220703125,
+ "y": 698.2864990234375,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "21535143.0a939e"
+ ]
+ ]
+ },
+ {
+ "id": "7911950a.d4f9bc",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1439.0001220703125,
+ "y": 748.2864990234375,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "21f78d15.02bd0a"
+ ]
+ ]
+ },
+ {
+ "id": "21535143.0a939e",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 1606.0001220703125,
+ "y": 687.2864990234375,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "21f78d15.02bd0a",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 1604.0001220703125,
+ "y": 743.2864990234375,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "875b8573.2757",
+ "type": "comment",
+ "name": "get cross-domain-link information",
+ "info": "",
+ "comments": "",
+ "x": 1218.5001220703125,
+ "y": 589.2864685058594,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "5b4dabd5.4d7054",
+ "type": "set",
+ "name": "set otn-oof.link-name",
+ "xml": "<set>\n<parameter name='otn-oof.link-name' value='`$otn-oof.solutions[$vidx].link`' />",
+ "comments": "",
+ "x": 1200.0001220703125,
+ "y": 538.2864685058594,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "cd276ba.d3fc218",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 1240.0002708435059,
+ "y": 229.74145698547363,
+ "z": "59711e8e.29744",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "9aa7ba3c.52a7f",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 612.9688835144043,
+ "y": 475.74163722991943,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "eda4482b.a18e38",
+ "4ab3abe1.e87adc"
+ ]
+ ]
+ },
+ {
+ "id": "edd38a6c.67c6b8",
+ "type": "switchNode",
+ "name": "test cross-domain-link role",
+ "xml": "<switch test='`$tmp.aai.cross-link.link-role`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1724.5001220703125,
+ "y": 573,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "344b3505.db598a"
+ ]
+ ]
+ },
+ {
+ "id": "344b3505.db598a",
+ "type": "outcome",
+ "name": "outcome cross-domain",
+ "xml": "<outcome value='cross-domain'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1960.5001220703125,
+ "y": 574,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "bdc2d141.60e88"
+ ]
+ ]
+ },
+ {
+ "id": "7c9a4f45.2dfb5",
+ "type": "break",
+ "name": "break",
+ "xml": "<break>\n",
+ "comments": "",
+ "x": 2279.5,
+ "y": 1051,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "bdc2d141.60e88",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 2163.5001220703125,
+ "y": 575,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "7c9a4f45.2dfb5",
+ "54d54d35.c8ade4",
+ "965a7aea.98984",
+ "f57884fd.e852f"
+ ]
+ ]
+ },
+ {
+ "id": "7f48300c.649cc8",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2604,
+ "y": 542,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "2a6040f8.29261"
+ ]
+ ]
+ },
+ {
+ "id": "9cd22818.9c99c",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2637.0001220703125,
+ "y": 600,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "8222994e.269fa"
+ ]
+ ]
+ },
+ {
+ "id": "11e5f855.56b93",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2640.0001220703125,
+ "y": 652,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "39b267f5.2906b8"
+ ]
+ ]
+ },
+ {
+ "id": "8222994e.269fa",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 2822.0001220703125,
+ "y": 604,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "39b267f5.2906b8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 2810.0001220703125,
+ "y": 655,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "6235283.bbe1f58",
+ "type": "set",
+ "name": "set domain A node ttp-id",
+ "xml": "<set>\n<parameter name='tmp.domain-A.ttp-id' value=\"`$tmp.aai.src-tp.relationship-list.relationship[$vidx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 3940.5,
+ "y": 457,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "4dcc3c3f.b0f8dc",
+ "type": "get-resource",
+ "name": "get-resource src TTP",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"tunnel-termination-point\" \n\t\tkey=\"tunnel-termination-point.ttp-id = $tmp.domain-A.ttp-id \n\t\tAND depth = '0'\"\n pfx='tmp.aai.src-ttp' local-only='false' >\n\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3948.5,
+ "y": 509,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "83dfda72.1dad78"
+ ]
+ ]
+ },
+ {
+ "id": "83dfda72.1dad78",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4155,
+ "y": 487,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "bd70272d.20274"
+ ]
+ ]
+ },
+ {
+ "id": "49b3daba.22ab04",
+ "type": "outcome",
+ "name": "tunnel-termination-point",
+ "xml": "<outcome value='tunnel-termination-point'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3492.66845703125,
+ "y": 535.4815063476562,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "2abdfdd6.de70da"
+ ]
+ ]
+ },
+ {
+ "id": "db5fdeca.64d9c8",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='vidx' start='0' end='`$tmp.aai.src-tp.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2955.3828125,
+ "y": 537.6597290039062,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "7fedd7f6.218328"
+ ]
+ ]
+ },
+ {
+ "id": "7fedd7f6.218328",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.src-tp.relationship-list.relationship[$vidx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3207.3828125,
+ "y": 534.6597290039062,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "49b3daba.22ab04"
+ ]
+ ]
+ },
+ {
+ "id": "2abdfdd6.de70da",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 3719.5,
+ "y": 524,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "6235283.bbe1f58",
+ "4dcc3c3f.b0f8dc",
+ "3af252ac.f5160e",
+ "b3928b44.45b93",
+ "6051cb19.bdbedc"
+ ]
+ ]
+ },
+ {
+ "id": "54d54d35.c8ade4",
+ "type": "get-resource",
+ "name": "get-resource dst tp",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"p-interface\" \n\t\tkey=\"pnf.pnf-name = $tmp.dst-pnf-name\n\t\t AND p-interface.interface-name = $tmp.cross-link.dst-ltpId\"\n pfx='tmp.aai.dst-tp' local-only='false' >\n \n <!--AND depth = '0'\"-->\n\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2360.5001220703125,
+ "y": 947,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "caa1180f.475d",
+ "4f60ddcb.06c464",
+ "99e66acf.ef78a8"
+ ]
+ ]
+ },
+ {
+ "id": "caa1180f.475d",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2583,
+ "y": 1089,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "99dd61a2.0612b8"
+ ]
+ ]
+ },
+ {
+ "id": "4f60ddcb.06c464",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2567,
+ "y": 1140,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "ecf71935.9fff1"
+ ]
+ ]
+ },
+ {
+ "id": "99e66acf.ef78a8",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2570,
+ "y": 1192,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "b029d176.ebc328"
+ ]
+ ]
+ },
+ {
+ "id": "b029d176.ebc328",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 2740,
+ "y": 1195,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "ecf71935.9fff1",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 2752,
+ "y": 1144,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "446999ee.737b88",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='vidx' start='0' end='`$tmp.aai.dst-tp.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2939.3828125,
+ "y": 1099.6597290039062,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "733247bb.4951e8"
+ ]
+ ]
+ },
+ {
+ "id": "733247bb.4951e8",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.dst-tp.relationship-list.relationship[$vidx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3182.3828125,
+ "y": 1098.6597290039062,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "551892cc.c334d4"
+ ]
+ ]
+ },
+ {
+ "id": "d1ae1073.116fc8",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4948.5,
+ "y": 900,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "e4453cc8.2d68",
+ "a58a5fab.4b9628",
+ "a3e0896b.517c78"
+ ]
+ ]
+ },
+ {
+ "id": "551892cc.c334d4",
+ "type": "outcome",
+ "name": "tunnel-termination-point",
+ "xml": "<outcome value='tunnel-termination-point'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3438.66845703125,
+ "y": 1098.4815063476562,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "167858f1.4d47ff"
+ ]
+ ]
+ },
+ {
+ "id": "c5e10d55.b93e8",
+ "type": "outcome",
+ "name": "network-resource",
+ "xml": "<outcome value='network-resource'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4735.5,
+ "y": 899,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "d1ae1073.116fc8"
+ ]
+ ]
+ },
+ {
+ "id": "167858f1.4d47ff",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 3738.5,
+ "y": 1096,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "b3d72c6d.8cf07",
+ "1624e4ba.2068eb",
+ "140c24f7.3b14f3",
+ "c25cb799.15c3f8",
+ "a035bf70.73a55"
+ ]
+ ]
+ },
+ {
+ "id": "b3d72c6d.8cf07",
+ "type": "set",
+ "name": "set domain B node ttp-id",
+ "xml": "<set>\n<parameter name='tmp.domain-B.ttp-id' value=\"`$tmp.aai.dst-tp.relationship-list.relationship[$vidx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 3980.5,
+ "y": 1050,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "1624e4ba.2068eb",
+ "type": "get-resource",
+ "name": "get-resource dst TTP",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"tunnel-termination-point\" \n\t\tkey=\"tunnel-termination-point.ttp-id = $tmp.domain-B.ttp-id \n\t\tAND depth = '0'\"\n pfx='tmp.aai.dst-ttp' local-only='false' >\n\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3970.5,
+ "y": 1101,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "58cdb5cc.380cfc"
+ ]
+ ]
+ },
+ {
+ "id": "58cdb5cc.380cfc",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4158,
+ "y": 1099,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "355115bb.2168d2"
+ ]
+ ]
+ },
+ {
+ "id": "e4453cc8.2d68",
+ "type": "set",
+ "name": "set domain B network-id",
+ "xml": "<set>\n<parameter name='tmp.domain-B.network-id' value=\"`$tmp.aai.dst-pnf.relationship-list.relationship[$mvidx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 5218.5,
+ "y": 876,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "a58a5fab.4b9628",
+ "type": "get-resource",
+ "name": "get-resource dst network-resource",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"network-resource\" \n\t\tkey=\"network-resource.network-id = $tmp.domain-B.network-id \n\t\tAND depth = '0'\"\n pfx='tmp.aai.dst-network-resource' local-only='false' >\n\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5228.5,
+ "y": 922,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "a2d84f11.e4cb88"
+ ]
+ ]
+ },
+ {
+ "id": "a2d84f11.e4cb88",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5444,
+ "y": 913,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "33f08d3a.c124c2"
+ ]
+ ]
+ },
+ {
+ "id": "33f08d3a.c124c2",
+ "type": "set",
+ "name": "set domain B network-id, topo-id, client-id, etc",
+ "xml": "<set>\n<parameter name='domain-B.network-id' value=\"`$tmp.aai.dst-network-resource.network-id`\" />\n<parameter name='domain-B.provider-id' value=\"`$tmp.aai.dst-network-resource.provider-id`\" />\n<parameter name='domain-B.client-id' value=\"`$tmp.aai.dst-network-resource.client-id`\" />\n<parameter name='domain-B.te-topo-id' value=\"`$tmp.aai.dst-network-resource.te-topo-id`\" />\n<parameter name='domain-B.network-type' value=\"`$tmp.aai.dst-network-resource.network-type`\" />\n\n\n",
+ "comments": "",
+ "x": 5698.5,
+ "y": 919,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "2a6040f8.29261",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 2738,
+ "y": 538,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "db5fdeca.64d9c8"
+ ]
+ ]
+ },
+ {
+ "id": "99dd61a2.0612b8",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 2729,
+ "y": 1080,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "446999ee.737b88"
+ ]
+ ]
+ },
+ {
+ "id": "203a4a36.513986",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 1543,
+ "y": 575,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "edd38a6c.67c6b8"
+ ]
+ ]
+ },
+ {
+ "id": "965a7aea.98984",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for index='lridx' start='0' end='`$tmp.aai.cross-link.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2313,
+ "y": 359,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "3bc95abb.a9239e"
+ ]
+ ]
+ },
+ {
+ "id": "3bc95abb.a9239e",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.cross-link.relationship-list.relationship[$lridx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2512,
+ "y": 356,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "3cce24fd.740654"
+ ]
+ ]
+ },
+ {
+ "id": "3cce24fd.740654",
+ "type": "outcome",
+ "name": "p-interface",
+ "xml": "<outcome value='p-interface'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2689.117431640625,
+ "y": 354.34027099609375,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "6ac060c8.1a11e8"
+ ]
+ ]
+ },
+ {
+ "id": "9ef5481b.bf4b48",
+ "type": "set",
+ "name": "set src-ltpId and dst-ltpId",
+ "xml": "<set>\n<parameter name='tmp.cross-link.src-ltpId' value=\"`$tmp.aai.cross-link.relationship-list.relationship[$lridx].relationship-data[1].relationship-value`\" />\n<parameter name='tmp.cross-link.dst-ltpId' value=\"`$tmp.aai.cross-link.relationship-list.relationship[$lridx + 1].relationship-data[1].relationship-value`\" />\n\n<parameter name='tmp.src-pnf-name' value=\"`$tmp.aai.cross-link.relationship-list.relationship[$lridx].relationship-data[0].relationship-value`\" />\n<parameter name='tmp.dst-pnf-name' value=\"`$tmp.aai.cross-link.relationship-list.relationship[$lridx + 1].relationship-data[0].relationship-value`\" />\n\n\n",
+ "comments": "",
+ "x": 3003,
+ "y": 298,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "ddeb58ef.e40c3",
+ "type": "break",
+ "name": "break",
+ "xml": "<break>\n",
+ "comments": "",
+ "x": 2964,
+ "y": 361,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "6ac060c8.1a11e8",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 2829,
+ "y": 339,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "9ef5481b.bf4b48",
+ "ddeb58ef.e40c3"
+ ]
+ ]
+ },
+ {
+ "id": "bd70272d.20274",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4330,
+ "y": 483,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "b2e7a790.6b1818"
+ ]
+ ]
+ },
+ {
+ "id": "355115bb.2168d2",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4347,
+ "y": 1088,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "d4658a57.f78ed8"
+ ]
+ ]
+ },
+ {
+ "id": "f57884fd.e852f",
+ "type": "get-resource",
+ "name": "get-resource src tp",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"p-interface\" \n\t\tkey=\"pnf.pnf-name = $tmp.src-pnf-name\n\t\t AND p-interface.interface-name = $tmp.cross-link.src-ltpId\"\n pfx='tmp.aai.src-tp' local-only='false' >\n \n <!--AND depth = '0'\"-->\n\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2406.5001220703125,
+ "y": 581,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "7f48300c.649cc8",
+ "9cd22818.9c99c",
+ "11e5f855.56b93"
+ ]
+ ]
+ },
+ {
+ "id": "3af252ac.f5160e",
+ "type": "get-resource",
+ "name": "get-resource src pnf",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"pnf\" \n\t\tkey=\"pnf.pnf-name = $tmp.src-pnf-name\"\n pfx='tmp.aai.src-pnf' local-only='false' >\n\n <!--AND depth = '0'\"-->\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3810,
+ "y": 327,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "fd4b75db.4422e8",
+ "650bdcdc.cfece4",
+ "72662c6f.14033c"
+ ]
+ ]
+ },
+ {
+ "id": "fd4b75db.4422e8",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4005.5001220703125,
+ "y": 279,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "b45c7d99.22c22"
+ ]
+ ]
+ },
+ {
+ "id": "650bdcdc.cfece4",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3997.5001220703125,
+ "y": 334,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "cb3c1121.cbe778"
+ ]
+ ]
+ },
+ {
+ "id": "72662c6f.14033c",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4002.5001220703125,
+ "y": 391,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "789ed2a8.499b74"
+ ]
+ ]
+ },
+ {
+ "id": "789ed2a8.499b74",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 4154.5001220703125,
+ "y": 392,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "cb3c1121.cbe778",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 4165.5001220703125,
+ "y": 337,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "b45c7d99.22c22",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 4149.8824462890625,
+ "y": 276.6556701660156,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "ba380e73.fe2bc8",
+ "65a7e039.6dcda8"
+ ]
+ ]
+ },
+ {
+ "id": "ba380e73.fe2bc8",
+ "type": "set",
+ "name": "set domain A node-id and tpn",
+ "xml": "<set>\n<parameter name='domain-A.node-id' value=\"`$tmp.aai.src-pnf.pnf-id`\" />\n<parameter name='domain-A.tpn' value='1' />\n",
+ "comments": "",
+ "x": 4375,
+ "y": 232,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "b3928b44.45b93",
+ "type": "break",
+ "name": "break",
+ "xml": "<break>\n",
+ "comments": "",
+ "x": 3897,
+ "y": 574,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "b2e7a790.6b1818",
+ "type": "set",
+ "name": "set domain A tunnel tp ip",
+ "xml": "<set>\n<parameter name='domain-A.tunnel-tp-id' value=\"`$tmp.aai.src-ttp.tunnel-tp-id`\" />\n",
+ "comments": "",
+ "x": 4591,
+ "y": 480,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "c25cb799.15c3f8",
+ "type": "get-resource",
+ "name": "get-resource dst pnf",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"pnf\" \n\t\tkey=\"pnf.pnf-name = $tmp.dst-pnf-name\"\n pfx='tmp.aai.dst-pnf' local-only='false' >\n\n <!--AND depth = '0'\"-->\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3807,
+ "y": 930,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "c37473f2.19f208",
+ "c644027c.70c3f8",
+ "98fb79a9.84cdc8"
+ ]
+ ]
+ },
+ {
+ "id": "98fb79a9.84cdc8",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4002.5001220703125,
+ "y": 882,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "3c4a5895.c63a"
+ ]
+ ]
+ },
+ {
+ "id": "c644027c.70c3f8",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3994.5001220703125,
+ "y": 937,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "70fd1b7c.8d1aac"
+ ]
+ ]
+ },
+ {
+ "id": "c37473f2.19f208",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3999.5001220703125,
+ "y": 994,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "cd3e066f.324aa"
+ ]
+ ]
+ },
+ {
+ "id": "3c4a5895.c63a",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 4146.8824462890625,
+ "y": 879.6556701660156,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "a79b012a.c282e",
+ "469c63f2.54b414"
+ ]
+ ]
+ },
+ {
+ "id": "70fd1b7c.8d1aac",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 4162.5001220703125,
+ "y": 940,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "cd3e066f.324aa",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 4151.5001220703125,
+ "y": 995,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "a79b012a.c282e",
+ "type": "set",
+ "name": "set domain B node-id and tpn",
+ "xml": "<set>\n<parameter name='domain-B.node-id' value=\"`$tmp.aai.dst-pnf.pnf-id`\" />\n<parameter name='domain-B.tpn' value='1' />\n",
+ "comments": "",
+ "x": 4356,
+ "y": 847,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "140c24f7.3b14f3",
+ "type": "break",
+ "name": "break",
+ "xml": "<break>\n",
+ "comments": "",
+ "x": 3926,
+ "y": 1142,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "d4658a57.f78ed8",
+ "type": "set",
+ "name": "set domain B tunnel tp id",
+ "xml": "<set>\n<parameter name='domain-B.tunnel-tp-id' value=\"`$tmp.aai.dst-ttp.tunnel-tp-id`\" />\n",
+ "comments": "",
+ "x": 4580,
+ "y": 1087,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "4b900139.065478",
+ "type": "outcome",
+ "name": "network-resource",
+ "xml": "<outcome value='network-resource'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4732,
+ "y": 295,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "c3283205.62573"
+ ]
+ ]
+ },
+ {
+ "id": "c3283205.62573",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4909,
+ "y": 287,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "e3322f04.45bf9",
+ "201af2cb.ff685e",
+ "24c615e9.67af32"
+ ]
+ ]
+ },
+ {
+ "id": "e3322f04.45bf9",
+ "type": "set",
+ "name": "set domain A network-id",
+ "xml": "<set>\n<parameter name='tmp.domain-A.network-id' value=\"`$tmp.aai.src-pnf.relationship-list.relationship[$pvidx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 5124,
+ "y": 268,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "201af2cb.ff685e",
+ "type": "get-resource",
+ "name": "get-resource src network-resource",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"network-resource\" \n\t\tkey=\"network-resource.network-id = $tmp.domain-A.network-id \n\t\tAND depth = '0'\"\n pfx='tmp.aai.src-network-resource' local-only='false' >\n\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5141,
+ "y": 332,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "ba151945.9e348"
+ ]
+ ]
+ },
+ {
+ "id": "ba151945.9e348",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5364.5,
+ "y": 333,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "bf5ba977.146f8"
+ ]
+ ]
+ },
+ {
+ "id": "bf5ba977.146f8",
+ "type": "set",
+ "name": "set domain A network-id, topo-id, client-id, etc",
+ "xml": "<set>\n<parameter name='domain-A.network-id' value=\"`$tmp.aai.src-network-resource.network-id`\" />\n<parameter name='domain-A.provider-id' value=\"`$tmp.aai.src-network-resource.provider-id`\" />\n<parameter name='domain-A.client-id' value=\"`$tmp.aai.src-network-resource.client-id`\" />\n<parameter name='domain-A.te-topo-id' value=\"`$tmp.aai.src-network-resource.te-topo-id`\" />\n<parameter name='domain-A.network-type' value=\"`$tmp.aai.src-network-resource.network-type`\" />\n\n\n",
+ "comments": "",
+ "x": 5629,
+ "y": 322,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "65a7e039.6dcda8",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='pvidx' start='0' end='`$tmp.aai.src-pnf.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4334,
+ "y": 291,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "ebc07ec5.500b48"
+ ]
+ ]
+ },
+ {
+ "id": "ebc07ec5.500b48",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.src-pnf.relationship-list.relationship[$pvidx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4529,
+ "y": 291,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "4b900139.065478"
+ ]
+ ]
+ },
+ {
+ "id": "24c615e9.67af32",
+ "type": "break",
+ "name": "break",
+ "xml": "<break>\n",
+ "comments": "",
+ "x": 5068,
+ "y": 385,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "469c63f2.54b414",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='mvidx' start='0' end='`$tmp.aai.dst-pnf.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4335,
+ "y": 898,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "a4a499c0.e7f04"
+ ]
+ ]
+ },
+ {
+ "id": "a4a499c0.e7f04",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.dst-pnf.relationship-list.relationship[$mvidx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4530,
+ "y": 898,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "c5e10d55.b93e8"
+ ]
+ ]
+ },
+ {
+ "id": "a3e0896b.517c78",
+ "type": "break",
+ "name": "break",
+ "xml": "<break>\n",
+ "comments": "",
+ "x": 5154,
+ "y": 978,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "6051cb19.bdbedc",
+ "type": "execute",
+ "name": "execute split tp-id to get pnf-name",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='split' >\n<parameter name=\"original_string\" value='`$tmp.aai.src-tp`'/>\n<!--<parameter name=\"regex\" value=\"[^-]+$\"/>-->\n<parameter name=\"regex\" value=\"[-]+\"/>\n<parameter name=\"ctx_memory_result_key\" value=\"param-prefix-src-tp\"/>\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3838,
+ "y": 121,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "474c52a4.93fc74",
+ "2bdecc1b.43ff94"
+ ]
+ ]
+ },
+ {
+ "id": "2bdecc1b.43ff94",
+ "type": "failure",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4059,
+ "y": 89,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "21520c33.eb9b1c"
+ ]
+ ]
+ },
+ {
+ "id": "474c52a4.93fc74",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4059,
+ "y": 136,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "ff0936f5.25fc9"
+ ]
+ ]
+ },
+ {
+ "id": "21520c33.eb9b1c",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4224,
+ "y": 86,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "47f81613.356b38"
+ ]
+ ]
+ },
+ {
+ "id": "47f81613.356b38",
+ "type": "set",
+ "name": "set domain-A.ltpId",
+ "xml": "<set>\n<parameter name='domain-A.ltpId' value='`$param-prefix-src-tp[$param-prefix-src-tp_length -1]`' />\n",
+ "comments": "",
+ "x": 4406,
+ "y": 90,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "ff0936f5.25fc9",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value=\"An error occured while splitting sna1_route\" />\n",
+ "comments": "",
+ "x": 4226,
+ "y": 136,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "a035bf70.73a55",
+ "type": "execute",
+ "name": "execute split tp-id to get pnf-name",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='split' >\n<parameter name=\"original_string\" value='`$tmp.aai.dst-tp`'/>\n<!--<parameter name=\"regex\" value=\"[^-]+$\"/>-->\n<parameter name=\"regex\" value=\"[-]+\"/>\n<parameter name=\"ctx_memory_result_key\" value=\"param-prefix-dst-tp\"/>\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3846,
+ "y": 745,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "310e01dd.c1a27e",
+ "976ae4f1.c35c1"
+ ]
+ ]
+ },
+ {
+ "id": "976ae4f1.c35c1",
+ "type": "failure",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4067,
+ "y": 713,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "20b670c9.8ae9c8"
+ ]
+ ]
+ },
+ {
+ "id": "310e01dd.c1a27e",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4067,
+ "y": 760,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "75ef28c6.5e31a"
+ ]
+ ]
+ },
+ {
+ "id": "20b670c9.8ae9c8",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4232,
+ "y": 710,
+ "z": "59711e8e.29744",
+ "wires": [
+ [
+ "3c392a8.397b7d6"
+ ]
+ ]
+ },
+ {
+ "id": "3c392a8.397b7d6",
+ "type": "set",
+ "name": "set domain-B.ltpId",
+ "xml": "<set>\n<parameter name='domain-B.ltpId' value='`$param-prefix-dst-tp[$param-prefix-dst-tp_length -1]`' />\n",
+ "comments": "",
+ "x": 4428,
+ "y": 707,
+ "z": "59711e8e.29744",
+ "wires": []
+ },
+ {
+ "id": "75ef28c6.5e31a",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value=\"An error occured while splitting sna1_route\" />\n",
+ "comments": "",
+ "x": 4234,
+ "y": 760,
+ "z": "59711e8e.29744",
+ "wires": []
+ }
+] \ No newline at end of file
diff --git a/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-activate.json b/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-activate.json
new file mode 100644
index 00000000..9ffaaf75
--- /dev/null
+++ b/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-activate.json
@@ -0,0 +1,1738 @@
+[
+ {
+ "id": "d3bb30c4.60fa",
+ "type": "dgstart",
+ "name": "DGSTART",
+ "outputs": 1,
+ "x": 130,
+ "y": 87,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "d58b4202.9cdb3"
+ ]
+ ]
+ },
+ {
+ "id": "d58b4202.9cdb3",
+ "type": "service-logic",
+ "name": "GENERIC-RESOURCE-API ${project.version}",
+ "module": "GENERIC-RESOURCE-API",
+ "version": "${project.version}",
+ "comments": "",
+ "xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='GENERIC-RESOURCE-API' version='${project.version}'>",
+ "outputs": 1,
+ "x": 261.2856903076172,
+ "y": 136.23810863494873,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "617bde2e.1132b"
+ ]
+ ]
+ },
+ {
+ "id": "617bde2e.1132b",
+ "type": "method",
+ "name": "method tsli-vnf-topology-operation-trans-slice-activate",
+ "xml": "<method rpc='tsli-vnf-topology-operation-trans-slice-activate' mode='sync'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 264.4286193847656,
+ "y": 221.00003242492676,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "8ac7a60e.72d768"
+ ]
+ ]
+ },
+ {
+ "id": "8ac7a60e.72d768",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 414.238037109375,
+ "y": 350.6666564941406,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "72b21bde.5e8f94",
+ "9fe7f5eb.e26c6",
+ "9bca10ea.41532"
+ ]
+ ]
+ },
+ {
+ "id": "72b21bde.5e8f94",
+ "type": "returnSuccess",
+ "name": "return success",
+ "xml": "<return status='success'>\n<parameter name=\"ack-final-indicator\" value=\"Y\" />\n<parameter name=\"error-code\" value=\"200\" />\n<parameter name=\"error-message\" value=\"`$error-message`\" />\n",
+ "comments": "",
+ "x": 682.5716552734375,
+ "y": 737.59716796875,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "441fc399.08ca9c",
+ "type": "comment",
+ "name": "new for TransportSlicing",
+ "info": "",
+ "comments": "",
+ "x": 714,
+ "y": 412,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "9fe7f5eb.e26c6",
+ "type": "save",
+ "name": "get service-instance from aai",
+ "xml": "<!--<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" -->\n<!--\tresource=\"service-instance\"-->\n<!--\tkey='service-instance.service-instance-id = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.service-instance-id-->\n<!-- AND customer.global-customer-id = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.global-customer-id -->\n<!-- AND service-subscription.service-type = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.subscription-service-type'-->\n<!--\tlocal-only=\"false\"-->\n<!--\tforce=\"true\" pfx=\"tmp.aai.service-instance\">-->\n\n<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"service-instance\"\n\tkey='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id\n AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id \n AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type'\n\tlocal-only=\"false\"\n\tforce=\"true\" pfx=\"tmp.aai.service-instance\">\n\n\n<!--$vnf-topology-operation-input.service-information.service-instance-id-->",
+ "comments": "",
+ "outputs": 1,
+ "x": 734,
+ "y": 508,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "926c12ae.af2a48",
+ "5deb4cbf.60b5f4",
+ "35c77549.8e65c2"
+ ]
+ ]
+ },
+ {
+ "id": "926c12ae.af2a48",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 953,
+ "y": 446,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "c296586e.046f08"
+ ]
+ ]
+ },
+ {
+ "id": "5deb4cbf.60b5f4",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 962.490966796875,
+ "y": 488.57403564453125,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "bb46ff52.717af8"
+ ]
+ ]
+ },
+ {
+ "id": "35c77549.8e65c2",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 951,
+ "y": 535,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "236d61d5.47d9a6"
+ ]
+ ]
+ },
+ {
+ "id": "bb46ff52.717af8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 1116.0623779296875,
+ "y": 491.8597717285156,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "236d61d5.47d9a6",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 1120,
+ "y": 536,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "c296586e.046f08",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for index='rel-index' start='0' end='`$tmp.aai.service-instance.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1150,
+ "y": 442,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "b77b70ed.c591c"
+ ]
+ ]
+ },
+ {
+ "id": "b77b70ed.c591c",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.service-instance.relationship-list.relationship[$rel-index].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1373.33349609375,
+ "y": 441.99993896484375,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "2fc295b4.0602da"
+ ]
+ ]
+ },
+ {
+ "id": "2fc295b4.0602da",
+ "type": "outcome",
+ "name": "connectivity",
+ "xml": "<outcome value='connectivity'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1574.0001335144043,
+ "y": 443.00002098083496,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "483259b4.af3e1"
+ ]
+ ]
+ },
+ {
+ "id": "cba9b813.e1b22",
+ "type": "set",
+ "name": "set attachment_param for OTN A",
+ "xml": "<set>\n<parameter name='src-node-id' value='`$tmp.aai.vpn-bindingA.src-access-node-id`' />\n<parameter name='dst-node-id' value='`$tmp.aai.vpn-bindingA.dst-access-node-id`' />\n<parameter name='dst-tpn-id' value='1' />\n<parameter name='dst-ttp-id' value='`$tmp.aai.vpn-bindingA.dst-access-ltp-id`' />\n<parameter name='slice-instance-id' value='`$tmp.aai.service-instance.service-instance-id`' />\n<parameter name='otn-tunnel-name-src-domain' value='`$tmp.aai.vpn-bindingA.vpn-name`' />\n<parameter name='client-id' value='`$tmp.aai.vpn-bindingA.access-client-id`' />\n<parameter name='provider-id' value='`$tmp.aai.vpn-bindingA.access-provider-id`' />\n<parameter name='topology-id' value='`$tmp.aai.vpn-bindingA.access-topology-id`' />\n",
+ "comments": "",
+ "x": 3835,
+ "y": 162,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "c84632a9.494938",
+ "type": "execute",
+ "name": "execute RestApiCallNode Create OTN tunnel with token",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.ts-otn-src-domain-creation.templatefile`\" />\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.url + '/restconf/data/ietf-te:te'`\" />\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"post\"/>\n<parameter name=\"responsePrefix\" value=\"otn-oof\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n<parameter name='customHttpHeaders' value=\"`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`\" />",
+ "comments": "",
+ "outputs": 1,
+ "x": 3916,
+ "y": 477,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "f012f442.27b7b8",
+ "961e7c8c.e8988"
+ ]
+ ]
+ },
+ {
+ "id": "f012f442.27b7b8",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4225.5,
+ "y": 446,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "85de6f60.586588"
+ ]
+ ]
+ },
+ {
+ "id": "961e7c8c.e8988",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4230.5,
+ "y": 511,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "b3e28f35.f331c"
+ ]
+ ]
+ },
+ {
+ "id": "85de6f60.586588",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing Create vpn rest api\" />\n",
+ "comments": "",
+ "x": 4401.5,
+ "y": 446,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "b3e28f35.f331c",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "comments": "",
+ "outputs": 1,
+ "x": 4397,
+ "y": 511,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "9e9578a4.5a4df",
+ "type": "set",
+ "name": "set sotn_value",
+ "xml": "<set>\n<parameter name='eth-service-name' value='`$tmp.aai.connectivityA.connectivity-id`' />\n<parameter name='provider-id' value='`$tmp.aai.connectivityA.access-provider-id`' />\n<parameter name='client-id' value='`$tmp.aai.connectivityA.access-client-id`' />\n<parameter name='topology-id' value='`$tmp.aai.connectivityA.access-topology-id`' />\n<parameter name='otn-tunnel-name' value='`$tmp.aai.vpn-bindingA.vpn-name`' />\n<parameter name='ethernet-end-point-name' value='`$tmp.aai.connectivityA.connectivity-id`' />\n<parameter name='index-number' value='0' />\n<parameter name='eth-node-id' value='`$tmp.aai.connectivityA.access-node-id`' />\n<parameter name='eth-node-tp-id' value='`$tmp.aai.connectivityA.access-ltp-id`' />\n",
+ "comments": "",
+ "x": 3782.5,
+ "y": 665,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "8d5f5723.afac28",
+ "type": "execute",
+ "name": "execute RestApiCallNode Create ethernet Service without token",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.ts-ethernet-service.templatefile`\" />\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.url + '/restconf/data/ietf-eth-tran-service:etht-svc'`\" />\n<!--<parameter name=\"restapiUrl\" value=\"`$prop.restapi.connection-oof-url`\" />-->\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"post\"/>\n<parameter name='dirPath' value=\"/opt/onap/sdnc/restconfapi/yang\" />\n<parameter name=\"responsePrefix\" value=\"vpn-result\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3936.5,
+ "y": 713,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "7efa3090.e1e078",
+ "602bb58a.eb8054"
+ ]
+ ]
+ },
+ {
+ "id": "7efa3090.e1e078",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4282,
+ "y": 694,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "d892eebe.cdbb5"
+ ]
+ ]
+ },
+ {
+ "id": "602bb58a.eb8054",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4286,
+ "y": 734,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "34660646.412fea"
+ ]
+ ]
+ },
+ {
+ "id": "d892eebe.cdbb5",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing Create vpn rest api\" />\n",
+ "comments": "",
+ "x": 4440,
+ "y": 694,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "34660646.412fea",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "comments": "",
+ "outputs": 1,
+ "x": 4443.5,
+ "y": 734,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "63e48280.b2cb84",
+ "ffe3929d.a2fda"
+ ]
+ ]
+ },
+ {
+ "id": "bae980db.b9d408",
+ "type": "comment",
+ "name": "TODO: FIXME:",
+ "info": "put proper values based on connectivity resource retrieved from AAI",
+ "comments": "",
+ "x": 3780,
+ "y": 621,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "63e48280.b2cb84",
+ "type": "save",
+ "name": "update vpn-binding A resource (aka. OTN domainA) in AAI",
+ "xml": "<update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding' \n key='vpn-binding.vpn-id = $tmp.aai.vpn-bindingA.vpn-id' >\n<parameter name='vpn-id' value='`$tmp.aai.vpn-bindingA.vpn-id`' />\n<parameter name='vpn-name' value='`$tmp.aai.vpn-bindingA.vpn-id`' />\n\n<parameter name='operational-status' value='Activated' />\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4774,
+ "y": 699,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "2bc3079a.d7dde",
+ "type": "comment",
+ "name": "TODO: FIXME",
+ "info": "use proper vpn-binding id and connectivity id\n\nAlso, does CCSDK support \"update\" operation for vpn-binding and connectivity?",
+ "comments": "",
+ "x": 4638,
+ "y": 658,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "ffe3929d.a2fda",
+ "type": "save",
+ "name": "update connectivity resource in AAI",
+ "xml": "<update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='connectivity' \n key='connectivity.connectivity-id = $tmp.aai.connectivityA.connectivity-id'>\n<parameter name='connectivity-id' value='`$tmp.aai.connectivityA.connectivity-id`' />\n<parameter name='operational-status' value='Activated' />\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4701,
+ "y": 745,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "f01334b4.1d8928",
+ "type": "set",
+ "name": "set pnf-name",
+ "xml": "<set>\n<parameter name='tmp.src.domainA.pnf-name' value=\"`'networkId-providerId-' +\n $tmp.aai.vpn-bindingA.access-provider-id + '-clientId-' +\n $tmp.aai.vpn-bindingA.access-client-id + '-topologyId-' +\n $tmp.aai.vpn-bindingA.access-topology-id + '-nodeId-' +\n $tmp.aai.vpn-bindingA.src-access-node-id`\" />\n",
+ "comments": "",
+ "x": 3773,
+ "y": 210,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "dbf99a2b.67c71",
+ "type": "get-resource",
+ "name": "get-resource src pnf",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"pnf\" \n\t\tkey=\"pnf.pnf-name = $tmp.src.domainA.pnf-name\"\n pfx='tmp.aai.source-pnf' local-only='false' >\n\n <!--AND depth = '0'\"-->\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3799,
+ "y": 327,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "27a62f4.f17ab5",
+ "1aa65c21.28f974",
+ "a732e62d.9d3f9"
+ ]
+ ]
+ },
+ {
+ "id": "27a62f4.f17ab5",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3994.5001220703125,
+ "y": 279,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "b04b9242.14b66"
+ ]
+ ]
+ },
+ {
+ "id": "1aa65c21.28f974",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3986.5001220703125,
+ "y": 334,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "5b188d77.8ffc8c"
+ ]
+ ]
+ },
+ {
+ "id": "b04b9242.14b66",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 4138.8824462890625,
+ "y": 278.6556701660156,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "14763204.df94c6"
+ ]
+ ]
+ },
+ {
+ "id": "a517ec9b.cf8fc8",
+ "type": "outcome",
+ "name": "esr-thirdparty-sdnc",
+ "xml": "<outcome value='esr-thirdparty-sdnc'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4721,
+ "y": 281,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "37ce34d7.e5314c"
+ ]
+ ]
+ },
+ {
+ "id": "14763204.df94c6",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='spvidx' start='0' end='`$tmp.aai.source-pnf.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4323,
+ "y": 277,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "bbbe4e04.e26da"
+ ]
+ ]
+ },
+ {
+ "id": "bbbe4e04.e26da",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4518,
+ "y": 277,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "a517ec9b.cf8fc8"
+ ]
+ ]
+ },
+ {
+ "id": "a732e62d.9d3f9",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3991.5001220703125,
+ "y": 391,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "ebcd1e8f.a8cb18"
+ ]
+ ]
+ },
+ {
+ "id": "ebcd1e8f.a8cb18",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 4143.5001220703125,
+ "y": 392,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "5b188d77.8ffc8c",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 4154.5001220703125,
+ "y": 335,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "d99536cb.cbc39",
+ "type": "execute",
+ "name": "get esr-thirdparty-sdnc",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"esr-thirdparty-sdnc\" \n\t\tkey=\"esr-thirdparty-sdnc.thirdparty-sdnc-id = $tmp.domainA.esr-thirdparty-id AND \n\t\t depth = '1'\"\n pfx='tmp.aai.domainA.esr-thirdparty-sdnc' local-only='false' >",
+ "comments": "",
+ "outputs": 1,
+ "x": 5106,
+ "y": 294,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "5f8e12fe.363034",
+ "3e541a04.379ece",
+ "5e7e63a7.7acdcc"
+ ]
+ ]
+ },
+ {
+ "id": "37ce34d7.e5314c",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4900,
+ "y": 281,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "17ccdbf.84352a4",
+ "d99536cb.cbc39"
+ ]
+ ]
+ },
+ {
+ "id": "17ccdbf.84352a4",
+ "type": "set",
+ "name": "set esr-thirdparty-sdnc domainA id",
+ "xml": "<set>\n<parameter name='tmp.domainA.esr-thirdparty-id' value=\"`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 5136,
+ "y": 242,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "5f8e12fe.363034",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5316,
+ "y": 285,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "a674bdd4.cbe5f"
+ ]
+ ]
+ },
+ {
+ "id": "3e541a04.379ece",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5308,
+ "y": 340,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "b14ed6a2.e3874"
+ ]
+ ]
+ },
+ {
+ "id": "5e7e63a7.7acdcc",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5313,
+ "y": 397,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "1ce96021.1d8b"
+ ]
+ ]
+ },
+ {
+ "id": "1ce96021.1d8b",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 5465,
+ "y": 398,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "b14ed6a2.e3874",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 5476,
+ "y": 343,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "a674bdd4.cbe5f",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 5460.38232421875,
+ "y": 282.6556701660156,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "67e87cc0.72543c"
+ ]
+ ]
+ },
+ {
+ "id": "67e87cc0.72543c",
+ "type": "set",
+ "name": "set controller domainA data",
+ "xml": "<set>\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domainA.url' value=\"`$tmp.aai.domainA.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].service-url`\" />\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domainA.user' value=\"`$tmp.aai.domainA.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].user-name`\" />\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domainA.password' value=\"`$tmp.aai.domainA.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].password`\" />\n\n\n<!--<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >-->\n<!--<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`\" />-->\n<!--<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.user`\" />-->\n<!--<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.password`\" />-->\n<!--<parameter name=\"format\" value=\"json\"/>-->\n<!--<parameter name=\"httpMethod\" value=\"get\"/>-->\n<!--<parameter name=\"responsePrefix\" value=\"topology\"/>-->\n<!--<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>-->\n<!--<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>-->\n<!--<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>-->\n<!--<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>-->\n",
+ "comments": "",
+ "x": 5675,
+ "y": 279,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "9bca10ea.41532",
+ "type": "execute",
+ "name": "execute properties",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.prop.PropertiesNode' method='readProperties' >\n <parameter name='fileName' value='%SDNC_CONFIG_DIR%/generic-resource-api-dg.properties' />\n <parameter name='contextPrefix' value='prop' />",
+ "comments": "",
+ "outputs": 1,
+ "x": 700,
+ "y": 456,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "9469a92e.1082c",
+ "type": "set",
+ "name": "set attachment_param for OTN B",
+ "xml": "<set>\n<parameter name='src-node-id' value='`$tmp.aai.vpn-bindingB.src-access-node-id`' />\n<parameter name='dst-node-id' value='`$tmp.aai.vpn-bindingB.dst-access-node-id`' />\n<parameter name='src-tpn-id' value='1' />\n<parameter name='src-ttp-id' value='`$tmp.aai.vpn-bindingB.src-access-ltp-id`' />\n<parameter name='slice-instance-id' value='`$tmp.aai.service-instance.service-instance-id`' />\n<parameter name='otn-tunnel-name-src-domain' value='`$tmp.aai.vpn-bindingB.vpn-name`' />\n<parameter name='client-id' value='`$tmp.aai.vpn-bindingB.access-client-id`' />\n<parameter name='provider-id' value='`$tmp.aai.vpn-bindingB.access-provider-id`' />\n<parameter name='topology-id' value='`$tmp.aai.vpn-bindingB.access-topology-id`' />\n",
+ "comments": "",
+ "x": 3815,
+ "y": 966,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "8e72aaca.f223b8",
+ "type": "execute",
+ "name": "execute RestApiCallNode Create OTN tunnel with token",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.ts-otn-dst-domain-creation.templatefile`\" />\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainB.url + '/restconf/data/ietf-te:te'`\" />\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainB.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainB.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"post\"/>\n<parameter name=\"responsePrefix\" value=\"otn-oof\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n<parameter name='customHttpHeaders' value=\"`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`\" />",
+ "comments": "",
+ "outputs": 1,
+ "x": 3878,
+ "y": 1295,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "4967c60e.7eec88",
+ "d728c3b6.b72d4"
+ ]
+ ]
+ },
+ {
+ "id": "4967c60e.7eec88",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4173.5,
+ "y": 1262,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "957f3c62.36bab"
+ ]
+ ]
+ },
+ {
+ "id": "d728c3b6.b72d4",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4178.5,
+ "y": 1327,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "9b37bb11.43c248"
+ ]
+ ]
+ },
+ {
+ "id": "957f3c62.36bab",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing Create vpn rest api\" />\n",
+ "comments": "",
+ "x": 4341.5,
+ "y": 1262,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "9b37bb11.43c248",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "comments": "",
+ "outputs": 1,
+ "x": 4352,
+ "y": 1327,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "24fc86b.f179cfa",
+ "type": "set",
+ "name": "set pnf-name",
+ "xml": "<set>\n<parameter name='tmp.dst.domainB.pnf-name' value=\"`'networkId-providerId-' +\n $tmp.aai.vpn-bindingB.access-provider-id + '-clientId-' +\n $tmp.aai.vpn-bindingB.access-client-id + '-topologyId-' +\n $tmp.aai.vpn-bindingB.access-topology-id + '-nodeId-' +\n $tmp.aai.vpn-bindingB.dst-access-node-id`\" />\n",
+ "comments": "",
+ "x": 3754,
+ "y": 1023,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "a4e80e5.b17c0f",
+ "type": "get-resource",
+ "name": "get-resource dst pnf",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"pnf\" \n\t\tkey=\"pnf.pnf-name = $tmp.dst.domainB.pnf-name\"\n pfx='tmp.aai.destination-pnf' local-only='false' >\n\n <!--AND depth = '0'\"-->\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3774,
+ "y": 1120,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "d87e44a4.312df",
+ "c39adf70.78fbd",
+ "ae2b50d9.d9592"
+ ]
+ ]
+ },
+ {
+ "id": "d87e44a4.312df",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3976.5001220703125,
+ "y": 1073,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "1f01bb4d.6d662d"
+ ]
+ ]
+ },
+ {
+ "id": "c39adf70.78fbd",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3968.5001220703125,
+ "y": 1128,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "7e32fa48.cb95e4"
+ ]
+ ]
+ },
+ {
+ "id": "1f01bb4d.6d662d",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 4120.8824462890625,
+ "y": 1070.6556701660156,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "71c66ab3.44665c"
+ ]
+ ]
+ },
+ {
+ "id": "71c66ab3.44665c",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='dpvidx' start='0' end='`$tmp.aai.destination-pnf.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4305,
+ "y": 1085,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "7900c812.a2abd"
+ ]
+ ]
+ },
+ {
+ "id": "ae2b50d9.d9592",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3973.5001220703125,
+ "y": 1185,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "c7f28bc4.db74a"
+ ]
+ ]
+ },
+ {
+ "id": "c7f28bc4.db74a",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 4125.5001220703125,
+ "y": 1186,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "7e32fa48.cb95e4",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 4136.5001220703125,
+ "y": 1131,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "d3528946.ee7a88",
+ "type": "outcome",
+ "name": "esr-thirdparty-sdnc",
+ "xml": "<outcome value='esr-thirdparty-sdnc'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4703,
+ "y": 1089,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "746ece73.5c4d48"
+ ]
+ ]
+ },
+ {
+ "id": "7900c812.a2abd",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.destination-pnf.relationship-list.relationship[$dpvidx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4500,
+ "y": 1085,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "d3528946.ee7a88"
+ ]
+ ]
+ },
+ {
+ "id": "f8459d33.082c4",
+ "type": "execute",
+ "name": "get esr-thirdparty-sdnc",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"esr-thirdparty-sdnc\" \n\t\tkey=\"esr-thirdparty-sdnc.thirdparty-sdnc-id = $tmp.domainB.esr-thirdparty-id AND \n\t\t depth = '1'\"\n pfx='tmp.aai.domainB.esr-thirdparty-sdnc' local-only='false' >",
+ "comments": "",
+ "outputs": 1,
+ "x": 5088,
+ "y": 1088,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "652db70b.f69af",
+ "cd87b694.170a2",
+ "e10452ec.f851f"
+ ]
+ ]
+ },
+ {
+ "id": "746ece73.5c4d48",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4880,
+ "y": 1081,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "13e8c9be.60d2ee",
+ "f8459d33.082c4"
+ ]
+ ]
+ },
+ {
+ "id": "13e8c9be.60d2ee",
+ "type": "set",
+ "name": "set esr-thirdparty-sdnc domainB id",
+ "xml": "<set>\n<parameter name='tmp.domainB.esr-thirdparty-id' value=\"`$tmp.aai.destination-pnf.relationship-list.relationship[$dpvidx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 5118,
+ "y": 1036,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "64b1d1df.af4928",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 5447,
+ "y": 1192,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "afae5d5f.cf8cd8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 5458,
+ "y": 1137,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "fe8767e6.75d1",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 5442.38232421875,
+ "y": 1076.6556701660156,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "9e679808.748fd"
+ ]
+ ]
+ },
+ {
+ "id": "9e679808.748fd",
+ "type": "set",
+ "name": "set controller domainB data",
+ "xml": "<set>\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domainB.url' value=\"`$tmp.aai.domainB.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].service-url`\" />\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domainB.user' value=\"`$tmp.aai.domainB.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].user-name`\" />\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domainB.password' value=\"`$tmp.aai.domainB.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].password`\" />\n\n\n<!--<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >-->\n<!--<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`\" />-->\n<!--<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.user`\" />-->\n<!--<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.password`\" />-->\n<!--<parameter name=\"format\" value=\"json\"/>-->\n<!--<parameter name=\"httpMethod\" value=\"get\"/>-->\n<!--<parameter name=\"responsePrefix\" value=\"topology\"/>-->\n<!--<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>-->\n<!--<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>-->\n<!--<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>-->\n<!--<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>-->\n",
+ "comments": "",
+ "x": 5657,
+ "y": 1073,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "652db70b.f69af",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5298,
+ "y": 1079,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "fe8767e6.75d1"
+ ]
+ ]
+ },
+ {
+ "id": "cd87b694.170a2",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5290,
+ "y": 1134,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "afae5d5f.cf8cd8"
+ ]
+ ]
+ },
+ {
+ "id": "e10452ec.f851f",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5295,
+ "y": 1191,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "64b1d1df.af4928"
+ ]
+ ]
+ },
+ {
+ "id": "483259b4.af3e1",
+ "type": "save",
+ "name": "get connectivity from aai",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"connectivity\"\n\t key=\"connectivity.connectivity-id = $tmp.aai.service-instance.relationship-list.relationship[$rel-index].relationship-data[0].relationship-value\"\n\t\tlocal-only=\"false\" \n\t\tpfx=\"tmp.aai.connectivity\" >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1812,
+ "y": 445,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "deb24009.8fcaa8",
+ "f99db731.cec29",
+ "20c66e63.50491a"
+ ]
+ ]
+ },
+ {
+ "id": "deb24009.8fcaa8",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2020,
+ "y": 409,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "4730a3bd.f32424"
+ ]
+ ]
+ },
+ {
+ "id": "f99db731.cec29",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2020.490966796875,
+ "y": 454.57403564453125,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "5f621d7d.168d04"
+ ]
+ ]
+ },
+ {
+ "id": "20c66e63.50491a",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2018,
+ "y": 498,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "3d808fc9.409a"
+ ]
+ ]
+ },
+ {
+ "id": "5f621d7d.168d04",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 2183.0623779296875,
+ "y": 454.8597717285156,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "3d808fc9.409a",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 2187,
+ "y": 499,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "98bf7163.623b18",
+ "type": "save",
+ "name": "get vpn-binding from aai",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"vpn-binding\"\n\t key=\"vpn-binding.vpn-id = $tmp.aai.connectivity.relationship-list.relationship[$cridx].relationship-data[0].relationship-value\"\n\t\tlocal-only=\"false\" \n\t\tpfx=\"tmp.aai.vpn-binding\" >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2493,
+ "y": 498,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "4a10f363.97f04c",
+ "75240e64.8364b",
+ "7a8b2677.1e3f6"
+ ]
+ ]
+ },
+ {
+ "id": "262c25a6.ad70a2",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 2877,
+ "y": 498,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "471d55bd.ad492c"
+ ]
+ ]
+ },
+ {
+ "id": "4a10f363.97f04c",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2704,
+ "y": 500,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "262c25a6.ad70a2"
+ ]
+ ]
+ },
+ {
+ "id": "75240e64.8364b",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2704.490966796875,
+ "y": 545.5740356445312,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "1484cf74.c39e71"
+ ]
+ ]
+ },
+ {
+ "id": "7a8b2677.1e3f6",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2702,
+ "y": 589,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "d377f001.ff927"
+ ]
+ ]
+ },
+ {
+ "id": "d377f001.ff927",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 2869,
+ "y": 588,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "1484cf74.c39e71",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 2867.0623779296875,
+ "y": 545.8597717285156,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "4730a3bd.f32424",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='cridx' start='0' end='`$tmp.aai.connectivity.relationship-list.relationship_length`' >\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2221,
+ "y": 404,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "ed79cbad.42008"
+ ]
+ ]
+ },
+ {
+ "id": "ed79cbad.42008",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.connectivity.relationship-list.relationship[$cridx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2426,
+ "y": 404,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "87636f23.10a238"
+ ]
+ ]
+ },
+ {
+ "id": "87636f23.10a238",
+ "type": "outcome",
+ "name": "vpn-binding",
+ "xml": "<outcome value='vpn-binding'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2592,
+ "y": 404,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "f49319bb.999b88"
+ ]
+ ]
+ },
+ {
+ "id": "f49319bb.999b88",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 2755,
+ "y": 404,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "98bf7163.623b18"
+ ]
+ ]
+ },
+ {
+ "id": "471d55bd.ad492c",
+ "type": "switchNode",
+ "name": "switch vpn-binding has dst-access-ltp",
+ "xml": "<switch test='`$tmp.aai.vpn-binding.dst-access-ltp-id`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3131,
+ "y": 497,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "a6851b6e.131e78",
+ "f997812a.bb5bf"
+ ]
+ ]
+ },
+ {
+ "id": "a6851b6e.131e78",
+ "type": "outcome",
+ "name": "Null",
+ "xml": "<outcome value=''>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3384,
+ "y": 531,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "9ec23d9e.f5fd3"
+ ]
+ ]
+ },
+ {
+ "id": "f997812a.bb5bf",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3384,
+ "y": 475,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "a48cbe42.98bbb"
+ ]
+ ]
+ },
+ {
+ "id": "9ec23d9e.f5fd3",
+ "type": "switchNode",
+ "name": "switch vpn-binding has src-access-ltp",
+ "xml": "<switch test='`$tmp.aai.vpn-binding.src-access-ltp-id`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3123,
+ "y": 1317,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "12733247.02817e",
+ "457dfc0a.58968c"
+ ]
+ ]
+ },
+ {
+ "id": "12733247.02817e",
+ "type": "outcome",
+ "name": "Null",
+ "xml": "<outcome value=''>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3376,
+ "y": 1351,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "13d35870.d79cf8"
+ ]
+ ]
+ },
+ {
+ "id": "457dfc0a.58968c",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3376,
+ "y": 1295,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "b272db0a.663f1"
+ ]
+ ]
+ },
+ {
+ "id": "13d35870.d79cf8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 3527,
+ "y": 1351,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "d316857d.f41628",
+ "type": "set",
+ "name": "set vpn-bindingA and connectivityA",
+ "xml": "<set>\n<parameter name='tmp.aai.vpn-bindingA.' value=\"`$tmp.aai.vpn-binding.`\" />\n<parameter name='tmp.aai.connectivityA.' value=\"`$tmp.aai.connectivity.`\" />\n",
+ "comments": "",
+ "x": 3830,
+ "y": 102,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "3accaf74.7f8a68",
+ "type": "set",
+ "name": "set vpn-bindingB and connectivityB",
+ "xml": "<set>\n<parameter name='tmp.aai.vpn-bindingB.' value=\"`$tmp.aai.vpn-binding.`\" />\n<parameter name='tmp.aai.connectivityB.' value=\"`$tmp.aai.connectivity.`\" />\n\n",
+ "comments": "",
+ "x": 3811,
+ "y": 908,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "a48cbe42.98bbb",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "comments": "",
+ "outputs": 1,
+ "x": 3552,
+ "y": 477,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "d316857d.f41628",
+ "cba9b813.e1b22",
+ "f01334b4.1d8928",
+ "dbf99a2b.67c71",
+ "9e9578a4.5a4df",
+ "8d5f5723.afac28",
+ "c84632a9.494938"
+ ]
+ ]
+ },
+ {
+ "id": "b272db0a.663f1",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 3527,
+ "y": 1294,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "3accaf74.7f8a68",
+ "9469a92e.1082c",
+ "24fc86b.f179cfa",
+ "a4e80e5.b17c0f",
+ "8e72aaca.f223b8",
+ "6e17b735.11933",
+ "35d8443b.290754"
+ ]
+ ]
+ },
+ {
+ "id": "6e17b735.11933",
+ "type": "set",
+ "name": "set sotn_value",
+ "xml": "<set>\n<parameter name='eth-service-name' value='`$tmp.aai.connectivityB.connectivity-id`' />\n<parameter name='provider-id' value='`$tmp.aai.connectivityB.access-provider-id`' />\n<parameter name='client-id' value='`$tmp.aai.connectivityB.access-client-id`' />\n<parameter name='topology-id' value='`$tmp.aai.connectivityB.access-topology-id`' />\n<parameter name='otn-tunnel-name' value='`$tmp.aai.vpn-bindingB.vpn-name`' />\n<parameter name='ethernet-end-point-name' value='`$tmp.aai.connectivityB.connectivity-id`' />\n<parameter name='index-number' value='0' />\n<parameter name='eth-node-id' value='`$tmp.aai.connectivityB.access-node-id`' />\n<parameter name='eth-node-tp-id' value='`$tmp.aai.connectivityB.access-ltp-id`' />\n",
+ "comments": "",
+ "x": 3756,
+ "y": 1437,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "35d8443b.290754",
+ "type": "execute",
+ "name": "execute RestApiCallNode Create ethernet Service without token",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.ts-ethernet-service.templatefile`\" />\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainB.url + '/restconf/data/ietf-eth-tran-service:etht-svc'`\" />\n<!--<parameter name=\"restapiUrl\" value=\"`$prop.restapi.connection-oof-url`\" />-->\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainB.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainB.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"patch\"/>\n<parameter name='dirPath' value=\"/opt/onap/sdnc/restconfapi/yang\" />\n<parameter name=\"responsePrefix\" value=\"vpn-result\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3910,
+ "y": 1485,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "3ee71f70.cef2d8",
+ "ec28887e.13052"
+ ]
+ ]
+ },
+ {
+ "id": "3ee71f70.cef2d8",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4255.5,
+ "y": 1466,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "146e8cbe.f1427b"
+ ]
+ ]
+ },
+ {
+ "id": "ec28887e.13052",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4259.5,
+ "y": 1506,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "6938dd8d.725ce4"
+ ]
+ ]
+ },
+ {
+ "id": "146e8cbe.f1427b",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing Create vpn rest api\" />\n",
+ "comments": "",
+ "x": 4413.5,
+ "y": 1466,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "6938dd8d.725ce4",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "comments": "",
+ "outputs": 1,
+ "x": 4417,
+ "y": 1506,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ [
+ "3103adf.03ebdd2",
+ "abd5a958.8851"
+ ]
+ ]
+ },
+ {
+ "id": "b5e2d859.f89e48",
+ "type": "comment",
+ "name": "TODO: FIXME:",
+ "info": "put proper values based on connectivity resource retrieved from AAI",
+ "comments": "",
+ "x": 3753.5,
+ "y": 1393,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "3103adf.03ebdd2",
+ "type": "save",
+ "name": "update vpn-binding B resource (aka. OTN domainB) in AAI",
+ "xml": "<update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding' \n key='vpn-binding.vpn-id = $tmp.aai.vpn-bindingB.vpn-id' >\n<parameter name='vpn-id' value='`$tmp.aai.vpn-bindingB.vpn-id`' />\n<parameter name='vpn-name' value='`$tmp.aai.vpn-bindingB.vpn-id`' />\n\n<parameter name='operational-status' value='Activated' />\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4757,
+ "y": 1505,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "1ee5068c.50a041",
+ "type": "comment",
+ "name": "TODO: FIXME",
+ "info": "use proper vpn-binding id and connectivity\n\nAlso, does CCSDK support \"update\" operation for vpn-binding and connectivity?",
+ "comments": "",
+ "x": 4615,
+ "y": 1463,
+ "z": "bc9d969b.328b8",
+ "wires": []
+ },
+ {
+ "id": "abd5a958.8851",
+ "type": "save",
+ "name": "update connectivity resource in AAI",
+ "xml": "<update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='connectivity' \n key='connectivity.connectivity-id = $tmp.aai.connectivityB.connectivity-id'>\n<parameter name='connectivity-id' value='`$tmp.aai.connectivityB.connectivity-id`' />\n<parameter name='operational-status' value='Activated' />\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4686,
+ "y": 1554,
+ "z": "bc9d969b.328b8",
+ "wires": [
+ []
+ ]
+ }
+] \ No newline at end of file
diff --git a/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-allocate.json b/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-allocate.json
new file mode 100644
index 00000000..41f969b0
--- /dev/null
+++ b/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-allocate.json
@@ -0,0 +1,3497 @@
+[
+ {
+ "id": "a3297c66.2e7f5",
+ "type": "dgstart",
+ "name": "DGSTART",
+ "outputs": 1,
+ "x": 142,
+ "y": 86,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "48923819.f8ff98"
+ ]
+ ]
+ },
+ {
+ "id": "48923819.f8ff98",
+ "type": "service-logic",
+ "name": "GENERIC-RESOURCE-API ${project.version}",
+ "module": "GENERIC-RESOURCE-API",
+ "version": "${project.version}",
+ "comments": "",
+ "xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='GENERIC-RESOURCE-API' version='${project.version}'>",
+ "outputs": 1,
+ "x": 426.2856903076172,
+ "y": 147.23810863494873,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "e1ba1fcc.8dbf6"
+ ]
+ ]
+ },
+ {
+ "id": "e1ba1fcc.8dbf6",
+ "type": "method",
+ "name": "method tsli-vnf-topology-operation-trans-slice-allocate",
+ "xml": "<method rpc='tsli-vnf-topology-operation-trans-slice-allocate' mode='sync'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 432.42860412597656,
+ "y": 232.00003051757812,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "8bc33ebc.b214a8"
+ ]
+ ]
+ },
+ {
+ "id": "8bc33ebc.b214a8",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 802.238037109375,
+ "y": 256.66668701171875,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "e456a6e6.bd0f",
+ "de4cd097.718578",
+ "7ac4d896.f266b8"
+ ]
+ ]
+ },
+ {
+ "id": "e456a6e6.bd0f",
+ "type": "returnSuccess",
+ "name": "return success",
+ "xml": "<return status='success'>\n<parameter name=\"ack-final-indicator\" value=\"Y\" />\n<parameter name=\"error-code\" value=\"200\" />\n<parameter name=\"error-message\" value=\"`$error-message`\" />\n",
+ "comments": "",
+ "x": 1103.571533203125,
+ "y": 527.5969848632812,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "de4cd097.718578",
+ "type": "save",
+ "name": "get service-instance from aai",
+ "xml": "<!--<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" -->\n<!--\tresource=\"service-instance\"-->\n<!--\tkey='service-instance.service-instance-id = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.service-instance-id-->\n<!-- AND customer.global-customer-id = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.global-customer-id -->\n<!-- AND service-subscription.service-type = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.subscription-service-type'-->\n<!--\tlocal-only=\"false\"-->\n<!--\tforce=\"true\" pfx=\"tmp.aai.service-instance\">-->\n\n<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"service-instance\"\n\tkey='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id\n AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id \n AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type'\n\tlocal-only=\"false\"\n\tforce=\"true\" pfx=\"tmp.aai.service-instance\">\n\n\n<!--<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" -->\n<!--\tresource=\"service-instance\"-->\n<!--\tkey='service-instance.service-instance-id = $service-data.service-information.service-instance-id-->\n<!-- AND customer.global-customer-id = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.global-customer-id -->\n<!-- AND service-subscription.service-type = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.subscription-service-type'-->\n<!--\tlocal-only=\"false\"-->\n<!--\tforce=\"true\" pfx=\"tmp.aai.service-instance\">-->",
+ "comments": "",
+ "outputs": 1,
+ "x": 1125,
+ "y": 230,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "2bb44cf2.b576bc",
+ "23a4fd03.4dc0a2",
+ "7fe07366.1d3c84"
+ ]
+ ]
+ },
+ {
+ "id": "2bb44cf2.b576bc",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1350,
+ "y": 88,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "de3469e6.1a5318"
+ ]
+ ]
+ },
+ {
+ "id": "23a4fd03.4dc0a2",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1359.490966796875,
+ "y": 130.57403564453125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "abc9c45c.0486d"
+ ]
+ ]
+ },
+ {
+ "id": "7fe07366.1d3c84",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1348,
+ "y": 177,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "bf6c9630.da1718"
+ ]
+ ]
+ },
+ {
+ "id": "de3469e6.1a5318",
+ "type": "switchNode",
+ "name": "switch allotted-resources_length != 0",
+ "xml": "<switch test='`$tmp.aai.service-instance.allotted-resources_length != 0`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1589,
+ "y": 85,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "3fe961c5.f65bb6",
+ "9b0ccc32.5daa98"
+ ]
+ ]
+ },
+ {
+ "id": "abc9c45c.0486d",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 1513.0623779296875,
+ "y": 133.85977172851562,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "bf6c9630.da1718",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 1517,
+ "y": 178,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "e72a9478.9558f",
+ "type": "set",
+ "name": "set the 1st allotted-resource-id",
+ "xml": "<set>\n<parameter name='allotted-resource-id' value=\"`$tmp.aai.service-instance.allotted-resources.allotted-resource[0].id`\" />\n\n\n",
+ "comments": "",
+ "x": 1988,
+ "y": 152,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "3fe961c5.f65bb6",
+ "type": "outcomeTrue",
+ "name": "true",
+ "xml": "<outcome value='true'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1802,
+ "y": 109,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "7db53ef.cfaf2c"
+ ]
+ ]
+ },
+ {
+ "id": "9b0ccc32.5daa98",
+ "type": "outcomeFalse",
+ "name": "false",
+ "xml": "<outcome value='false'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1804,
+ "y": 49,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "3b9d4f7a.e5b418",
+ "type": "comment",
+ "name": "new for TransportSlicing",
+ "info": "",
+ "comments": "",
+ "x": 1104,
+ "y": 118,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "7db53ef.cfaf2c",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 1787,
+ "y": 197,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "e72a9478.9558f",
+ "f1da2bc3.8935b"
+ ]
+ ]
+ },
+ {
+ "id": "fd1e5e1b.83e83",
+ "type": "set",
+ "name": "set network-route-A",
+ "xml": "<set>\n<parameter name='network-route-A' value=\"`$tmp.aai.logical-link.link-name`\" />\n\n\n",
+ "comments": "",
+ "x": 2349,
+ "y": 795,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "ff342d97.b64c78",
+ "type": "set",
+ "name": "set network-route-B",
+ "xml": "<set>\n<parameter name='network-route-B' value=\"`$tmp.aai.logical-link.link-name2`\" />\n\n\n",
+ "comments": "",
+ "x": 2351,
+ "y": 846,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "f1da2bc3.8935b",
+ "type": "save",
+ "name": "get allotted-resource from aai",
+ "xml": "<!--<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" -->\n<!--\tresource=\"allotted-resource\"-->\n<!--\tkey='service-instance.service-instance-id = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.service-instance-id-->\n<!-- AND customer.global-customer-id = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.global-customer-id -->\n<!-- AND service-subscription.service-type = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.subscription-service-type-->\n<!-- AND allotted-resource.id = $allotted-resource-id'-->\n<!--\tlocal-only=\"false\"-->\n<!--\tforce=\"true\" pfx=\"tmp.aai.allotted-resource\">-->\n\n<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"allotted-resource\"\n\tkey='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id\n AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id \n AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type\n AND allotted-resource.id = $allotted-resource-id'\n\tlocal-only=\"false\"\n\tforce=\"true\" pfx=\"tmp.aai.allotted-resource\">\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1991,
+ "y": 227,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "24443c7d.51e17c",
+ "5466a6b1.99c71",
+ "6dbbe1dd.c8d2"
+ ]
+ ]
+ },
+ {
+ "id": "24443c7d.51e17c",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2207,
+ "y": 294,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "381969a5.e5019e"
+ ]
+ ]
+ },
+ {
+ "id": "5466a6b1.99c71",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2207.490966796875,
+ "y": 193.573974609375,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "5f41762b.9fae3"
+ ]
+ ]
+ },
+ {
+ "id": "6dbbe1dd.c8d2",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2203,
+ "y": 243,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "35df5bd.60d91a4"
+ ]
+ ]
+ },
+ {
+ "id": "5f41762b.9fae3",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 2385.0625,
+ "y": 193.8597412109375,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "35df5bd.60d91a4",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 2385,
+ "y": 243,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "8c284458.c08ae8",
+ "type": "save",
+ "name": "get logical-link from aai",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"logical-link\"\n\tkey='logical-link.link-name = $logical-link-name'\n\tlocal-only=\"false\"\n\tforce=\"true\" pfx=\"tmp.aai.logical-link\">",
+ "comments": "",
+ "outputs": 1,
+ "x": 1726,
+ "y": 716,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "2b62ab10.ff50ec",
+ "a72426b1.68469",
+ "f1a9c962.2a68a8"
+ ]
+ ]
+ },
+ {
+ "id": "a72426b1.68469",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2017.490966796875,
+ "y": 694.573974609375,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "b15724ee.fb934"
+ ]
+ ]
+ },
+ {
+ "id": "f1a9c962.2a68a8",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2006,
+ "y": 739,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "71027f5f.6dfd2"
+ ]
+ ]
+ },
+ {
+ "id": "b15724ee.fb934",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 2166.0625,
+ "y": 694.8597412109375,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "71027f5f.6dfd2",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 2165,
+ "y": 739,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "2b62ab10.ff50ec",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2013,
+ "y": 818,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "68ca5242.42eadc"
+ ]
+ ]
+ },
+ {
+ "id": "68ca5242.42eadc",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 2152,
+ "y": 818,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "fd1e5e1b.83e83",
+ "ff342d97.b64c78",
+ "c6e4c4bb.cde228",
+ "beeca149.096358",
+ "b3a21500.4dc258",
+ "4a385582.c0497c",
+ "8ecd4f21.958f3",
+ "87e71c84.c17b98",
+ "b0430b3.4eee0f8",
+ "9e9e0741.eed478",
+ "41475eff.deafd",
+ "171af565.db9233",
+ "a0a45fd6.c31fe",
+ "fdbb72c5.61c228",
+ "62bd6081.059d7",
+ "3f4df906.b67d7e",
+ "fad5035b.7ee3a8",
+ "d037b0c3.f093c"
+ ]
+ ]
+ },
+ {
+ "id": "c6e4c4bb.cde228",
+ "type": "save",
+ "name": "get network-route-A from aai",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"network-route\"\n\tkey='network-route.route-id = $network-route-A'\n\tlocal-only=\"false\"\n\tforce=\"true\" pfx=\"tmp.aai.network-route-A\">",
+ "comments": "",
+ "outputs": 1,
+ "x": 2381,
+ "y": 899,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "99527920.d104f",
+ "471613.ac9f61ec",
+ "d7106a2a.e2e008"
+ ]
+ ]
+ },
+ {
+ "id": "beeca149.096358",
+ "type": "save",
+ "name": "get network-route-B from aai",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"network-route\"\n\tkey='network-route.route-id = $network-route-B'\n\tlocal-only=\"false\"\n\tforce=\"true\" pfx=\"tmp.aai.network-route-B\">",
+ "comments": "",
+ "outputs": 1,
+ "x": 2360,
+ "y": 1500.9998779296875,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "f5b57d2.711fb8",
+ "ee69c7ed.d244a",
+ "b86b9154.d8271"
+ ]
+ ]
+ },
+ {
+ "id": "99527920.d104f",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2582,
+ "y": 783,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "dee03a78.25dd08"
+ ]
+ ]
+ },
+ {
+ "id": "471613.ac9f61ec",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2577.509033203125,
+ "y": 832.426025390625,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "afb5fd1c.14f968"
+ ]
+ ]
+ },
+ {
+ "id": "d7106a2a.e2e008",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2581.509033203125,
+ "y": 883.426025390625,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "b1e48bbc.9418f8"
+ ]
+ ]
+ },
+ {
+ "id": "dee03a78.25dd08",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 2730.571533203125,
+ "y": 782.2857666015625,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "afb5fd1c.14f968",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 2720.509033203125,
+ "y": 832.426025390625,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "f5b57d2.711fb8",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2583,
+ "y": 1470.9998779296875,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "e4bc5398.587c9"
+ ]
+ ]
+ },
+ {
+ "id": "ee69c7ed.d244a",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2578.509033203125,
+ "y": 1520.4259033203125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "7a22de95.f8d34"
+ ]
+ ]
+ },
+ {
+ "id": "b86b9154.d8271",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2582.509033203125,
+ "y": 1571.4259033203125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "706786f4.1c86"
+ ]
+ ]
+ },
+ {
+ "id": "e4bc5398.587c9",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 2731.571533203125,
+ "y": 1470.28564453125,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "7a22de95.f8d34",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 2721.509033203125,
+ "y": 1520.4259033203125,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "6a5608a5.7646c8",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 3395.66650390625,
+ "y": 927,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "e59ae0d9.0b3bb8",
+ "b65b8a91.4e15",
+ "600bf3e5.b14284",
+ "af7a5358.49a49",
+ "a8e7dd16.944608"
+ ]
+ ]
+ },
+ {
+ "id": "b8369203.6c1e7",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3223,
+ "y": 928,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "6a5608a5.7646c8"
+ ]
+ ]
+ },
+ {
+ "id": "9feeef15.8800c",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3232.490966796875,
+ "y": 970.5740356445312,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "cbf27e14.644ef8"
+ ]
+ ]
+ },
+ {
+ "id": "e8e1bd1d.029dd",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3221,
+ "y": 1017,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "7478805e.d0dee8"
+ ]
+ ]
+ },
+ {
+ "id": "cbf27e14.644ef8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 3386.0623779296875,
+ "y": 973.8597717285156,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "7478805e.d0dee8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 3390,
+ "y": 1018,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "b1e48bbc.9418f8",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 2743,
+ "y": 885,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "b8e4ab1b.5f9428",
+ "7b409cff.da197c"
+ ]
+ ]
+ },
+ {
+ "id": "706786f4.1c86",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 2733,
+ "y": 1572.9998779296875,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "6545b277.ec5df4",
+ "e04c02f4.2f63f8"
+ ]
+ ]
+ },
+ {
+ "id": "a1cc2eec.aa7708",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 3363.66650390625,
+ "y": 1763,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "69afc187.c0c28",
+ "9c8c62ca.8659",
+ "72280e7f.000388",
+ "5d487f8.16a5d",
+ "34f70001.b13958"
+ ]
+ ]
+ },
+ {
+ "id": "a9223749.8519e8",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3191,
+ "y": 1764,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "a1cc2eec.aa7708"
+ ]
+ ]
+ },
+ {
+ "id": "8aac19ac.984638",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3200.490966796875,
+ "y": 1806.5740356445312,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "e01c6b8b.6173d8"
+ ]
+ ]
+ },
+ {
+ "id": "15568030.09492",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3189,
+ "y": 1853,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "f17ea401.42a54"
+ ]
+ ]
+ },
+ {
+ "id": "e01c6b8b.6173d8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 3354.0623779296875,
+ "y": 1809.8597717285156,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "f17ea401.42a54",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 3358,
+ "y": 1854,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "e59ae0d9.0b3bb8",
+ "type": "execute",
+ "name": "execute split tp-id to get pnf-name",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='split' >\n<parameter name=\"original_string\" value='`$tmp.aai.network-route-A.p-interface-src.interface-name`'/>\n<!--<parameter name=\"regex\" value=\"[^-]+$\"/>-->\n<parameter name=\"regex\" value=\"[-]+\"/>\n<parameter name=\"ctx_memory_result_key\" value=\"param-prefix-domainA\"/>\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3660,
+ "y": 911,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "b90f8b2c.3443f8",
+ "f2af84b7.f19e7"
+ ]
+ ]
+ },
+ {
+ "id": "f2af84b7.f19e7",
+ "type": "failure",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3883,
+ "y": 866,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "af749f90.aea73"
+ ]
+ ]
+ },
+ {
+ "id": "b90f8b2c.3443f8",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3885,
+ "y": 930,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "37b87470.480804"
+ ]
+ ]
+ },
+ {
+ "id": "58adc121.da62b8",
+ "type": "set",
+ "name": "set ltpId",
+ "xml": "<set>\n<parameter name='tmp.src.ltpId' value='`$param-prefix-domainA[$param-prefix-domainA_length -1]`' />\n",
+ "comments": "",
+ "x": 4218,
+ "y": 824,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "37b87470.480804",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value=\"An error occured while splitting sna1_route\" />\n",
+ "comments": "",
+ "x": 4047,
+ "y": 926,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "af749f90.aea73",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4048,
+ "y": 863,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "a0d3646d.84d22",
+ "58adc121.da62b8"
+ ]
+ ]
+ },
+ {
+ "id": "a0d3646d.84d22",
+ "type": "set",
+ "name": "set pnf-name",
+ "xml": "<set>\n<parameter name='tmp.src.pnf-name' value='`$param-prefix-domainA[$param-prefix-domainA_length -3]`' />\n",
+ "comments": "",
+ "x": 4219,
+ "y": 929,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "b948285d.fc6638",
+ "type": "comment",
+ "name": "TODO: FIXME",
+ "info": "using the output of regex string arrays,\nconcatinate index 0 to index[length-2] all together\nin order to assemble the correct pnf-name",
+ "comments": "",
+ "x": 4220,
+ "y": 878,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "600bf3e5.b14284",
+ "type": "save",
+ "name": "save connectivity resource in AAI",
+ "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='connectivity' \n key='connectivity.connectivity-id = $uuid.connectivity-domainA-uuid'>\n<parameter name='connectivity-id' value='`$uuid.connectivity-domainA-uuid`' />\n<parameter name='operational-status' value='Created' />\n<parameter name='access-provider-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -9]`' />\n<parameter name='access-client-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -7]`' />\n<parameter name='access-topology-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -5]`' />\n<parameter name='access-node-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -3]`' />\n<parameter name='access-ltp-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -1]`' />\n<parameter name='cvlan' value='' />\n\n<parameter name='bandwidth-profile-name' value='`$prop.sotn.etht-svc-name`' />\n<parameter name='vpn-type' value='`$prop.sotn.vpnType`' />\n<parameter name='CIR' value='`$prop.sotn.cir`' />\n<parameter name='EIR' value='`$prop.sotn.eir`' />\n<parameter name='CBS' value='`$prop.sotn.cbs`' />\n<parameter name='EBS' value='`$prop.sotn.ebs`' />\n<!--<parameter name='color-aware' value='`$prop.sotn.colorAware`' />-->\n<!--<parameter name='coupling-flag' value='`$prop.sotn.couplingFlag`' />-->\n<!--<parameter name='etht-svc-name' value='`$prop.sotn.etht-svc-name`' />-->\n<parameter name='model-customization-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-customization-uuid`' />\n<parameter name='model-invariant-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-invariant-uuid`' />\n<parameter name='model-version-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-uuid`' />\n<parameter name='connectivity-selflink' value=\"`'restconf/config/GENERIC-RESOURCE-API:services/service/' + $network-topology-operation-input.service-information.service-instance-id + '/service-data/networks/network/' + $prop.sotn.network-id + '/network-data/'` \" />\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3662,
+ "y": 1070,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "b65b8a91.4e15",
+ "type": "execute",
+ "name": "execute UUID generator for connectivity domainA",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='generateUUID' >\n<parameter name=\"ctx-destination\" value=\"uuid.connectivity-domainA-uuid\"/>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3707,
+ "y": 980,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "584061d2.7f676",
+ "type": "comment",
+ "name": "TODO: FIXME",
+ "info": "using the output of regex string arrays,\nconcatinate index 0 to index[?] all together\nin order to assemble the correct values for provider-id, \ntopology-id, node-id, etc.",
+ "comments": "",
+ "x": 3596,
+ "y": 1021,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "69afc187.c0c28",
+ "type": "execute",
+ "name": "execute split tp-id to get pnf-name",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='split' >\n<parameter name=\"original_string\" value='`$tmp.aai.network-route-B.p-interface-dst.interface-name`'/>\n<!--<parameter name=\"regex\" value=\"[^-]+$\"/>-->\n<parameter name=\"regex\" value=\"[-]+\"/>\n<parameter name=\"ctx_memory_result_key\" value=\"param-prefix-domainB\"/>\n\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3650,
+ "y": 1767.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "73786f45.91fbd",
+ "a8286fc.413fb9"
+ ]
+ ]
+ },
+ {
+ "id": "a8286fc.413fb9",
+ "type": "failure",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3873,
+ "y": 1722.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "6edaf2ce.ba97ac"
+ ]
+ ]
+ },
+ {
+ "id": "73786f45.91fbd",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3875,
+ "y": 1786.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "fcba834.c469f8"
+ ]
+ ]
+ },
+ {
+ "id": "e5ecf778.a4711",
+ "type": "set",
+ "name": "set ltpId",
+ "xml": "<set>\n<parameter name='tmp.dst.ltpId' value='`$param-prefix-domainB[$param-prefix-domainB_length -1]`' />\n",
+ "comments": "",
+ "x": 4208,
+ "y": 1680.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "fcba834.c469f8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value=\"An error occured while splitting sna1_route\" />\n",
+ "comments": "",
+ "x": 4034,
+ "y": 1805.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "6edaf2ce.ba97ac",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4038,
+ "y": 1719.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "e5ecf778.a4711",
+ "865f8e50.82a5c"
+ ]
+ ]
+ },
+ {
+ "id": "865f8e50.82a5c",
+ "type": "set",
+ "name": "set pnf-name",
+ "xml": "<set>\n<parameter name='tmp.dst.pnf-name' value='`$param-prefix-domainB[$param-prefix-domainB_length -3]`' />\n",
+ "comments": "",
+ "x": 4209,
+ "y": 1785.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "9e10e06d.c116e8",
+ "type": "comment",
+ "name": "TODO: FIXME",
+ "info": "using the output of regex string arrays,\nconcatinate index 0 to index[length-2] all together\nin order to assemble the correct pnf-name",
+ "comments": "",
+ "x": 4204,
+ "y": 1734.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "72280e7f.000388",
+ "type": "save",
+ "name": "save connectivity resource in AAI",
+ "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='connectivity' \n key='connectivity.connectivity-id = $prop.connectivity-domainB-uuid'>\n<parameter name='connectivity-id' value='`$prop.connectivity-domainB-uuid`' />\n<parameter name='operational-status' value='Created' />\n<parameter name='access-provider-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -9]`' />\n<parameter name='access-client-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -7]`' />\n<parameter name='access-topology-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -5]`' />\n<parameter name='access-node-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -3]`' />\n<parameter name='access-ltp-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -1]`' />\n<parameter name='cvlan' value='' />\n\n\n<parameter name='bandwidth-profile-name' value='`$prop.sotn.etht-svc-name`' />\n<parameter name='vpn-type' value='`$prop.sotn.vpnType`' />\n<parameter name='CIR' value='`$prop.sotn.cir`' />\n<parameter name='EIR' value='`$prop.sotn.eir`' />\n<parameter name='CBS' value='`$prop.sotn.cbs`' />\n<parameter name='EBS' value='`$prop.sotn.ebs`' />\n<!--<parameter name='color-aware' value='`$prop.sotn.colorAware`' />-->\n<!--<parameter name='coupling-flag' value='`$prop.sotn.couplingFlag`' />-->\n<!--<parameter name='etht-svc-name' value='`$prop.sotn.etht-svc-name`' />-->\n<parameter name='model-customization-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-customization-uuid`' />\n<parameter name='model-invariant-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-invariant-uuid`' />\n<parameter name='model-version-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-uuid`' />\n<parameter name='connectivity-selflink' value=\"`'restconf/config/GENERIC-RESOURCE-API:services/service/' + $network-topology-operation-input.service-information.service-instance-id + '/service-data/networks/network/' + $prop.sotn.network-id + '/network-data/'` \" />\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3652,
+ "y": 1926.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "9c8c62ca.8659",
+ "type": "execute",
+ "name": "execute UUID generator for connectivity domainB",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='generateUUID' >\n<parameter name=\"ctx-destination\" value=\"prop.connectivity-domainB-uuid\"/>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3697,
+ "y": 1836.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "eb2e4b08.8488e",
+ "type": "comment",
+ "name": "TODO: FIXME",
+ "info": "using the output of regex string arrays,\nconcatinate index 0 to index[?] all together\nin order to assemble the correct values for provider-id, \ntopology-id, node-id, etc.",
+ "comments": "",
+ "x": 3586,
+ "y": 1874.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "b3a21500.4dc258",
+ "type": "call",
+ "name": "call GENERIC-RESOURCE-API:tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof",
+ "xml": "<call module='GENERIC-RESOURCE-API' rpc='tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof' mode='sync' >\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2561,
+ "y": 2001,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "4a385582.c0497c",
+ "type": "set",
+ "name": "set attachment_param",
+ "xml": "<set>\n<parameter name='prop.connection-attachment.access-provider-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -9]`' />\n<parameter name='prop.connection-attachment.access-client-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -7]`' />\n<parameter name='prop.connection-attachment.access-topology-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -5]`' />\n<parameter name='prop.connection-attachment.access-node-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -3]`' />\n<parameter name='prop.connection-attachment.access-ltp-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -1]`' />\n\n<parameter name='prop.remote.connection-attachment.access-provider-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -9]`' />\n<parameter name='prop.remote.connection-attachment.access-client-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -7]`' />\n<parameter name='prop.remote.connection-attachment.access-topology-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -5]`' />\n<parameter name='prop.remote.connection-attachment.access-node-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -3]`' />\n<parameter name='prop.remote.connection-attachment.access-ltp-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -1]`' />\n\n<!--<parameter name='prop.remote.connection-attachment.access-provider-id' value='`$oof.vpn.access-provider-id`' />-->\n<!--<parameter name='prop.remote.connection-attachment.access-client-id' value='`$oof.vpn.access-client-id`' />-->\n<!--<parameter name='prop.remote.connection-attachment.access-topology-id' value='`$oof.vpn.access-topology-id`' />-->\n<!--<parameter name='prop.remote.connection-attachment.access-node-id' value='`$oof.vpn.access-node-id`' />-->\n<!--<parameter name='prop.remote.connection-attachment.access-ltp-id' value='`$oof.vpn.src-access-ltp-id`' />-->\n",
+ "comments": "",
+ "x": 2355,
+ "y": 1941,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "1846dda4.ce84b2",
+ "type": "comment",
+ "name": "TODO: FIXME",
+ "info": "put proper values for src topology-id, node-id, ltp-id, etc (in domain A)\nand dst topology-id, node-id, ltp-id, etc (in domain B)",
+ "comments": "",
+ "x": 2329,
+ "y": 1894,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "8ecd4f21.958f3",
+ "type": "save",
+ "name": "save vpn-binding A resource (aka. OTN domainA) in AAI",
+ "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding' \n key='vpn-binding.vpn-id = $prop.vpn-binding-domainA-uuid' >\n<parameter name='vpn-id' value='`$prop.vpn-binding-domainA-uuid`' />\n<parameter name='vpn-name' value='`$prop.vpn-binding-domainA-uuid`' />\n<parameter name='access-provider-id' value='`$domain-A.provider-id`' />\n<!--<parameter name='access-provider-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -9]`' />-->\n<parameter name='access-client-id' value='`$domain-A.client-id`' />\n<!--<parameter name='access-client-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -7]`' />-->\n<parameter name='access-topology-id' value='`$domain-A.te-topo-id`' />\n<!--<parameter name='access-topology-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -5]`' />-->\n<parameter name='src-access-node-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -3]`' />\n<!--<parameter name='src-access-ltp-id' value='`$source.tunnel-tp-id`' />-->\n<parameter name='src-access-ltp-id' value='' />\n<parameter name='dst-access-node-id' value='`$domain-A.node-id`' />\n<parameter name='dst-access-ltp-id' value='`$domain-A.tunnel-tp-id`' />\n<parameter name='vpn-type' value='`$prop.global.sotn.vpnType`' />\n<parameter name='operational-status' value='Created' />\n<parameter name='model-customization-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-customization-uuid`' />\n<parameter name='model-invariant-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-invariant-uuid`' />\n<parameter name='model-version-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-uuid`' />\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2437,
+ "y": 2160,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "9a891a89.705e9"
+ ]
+ ]
+ },
+ {
+ "id": "87e71c84.c17b98",
+ "type": "save",
+ "name": "save connectivity-A relationship to vpn-binding-A, in AAI",
+ "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding:relationship-list' \n key='vpn-binding.vpn-id = $prop.vpn-binding-domainA-uuid' \n force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"connectivity\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/connectivities/connectivity/' + $uuid.connectivity-domainA-uuid`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"connectivity.connectivity-id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$uuid.connectivity-domainA-uuid`\" />",
+ "comments": "",
+ "outputs": 1,
+ "x": 2440.5,
+ "y": 2230,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "65814f19.31d048",
+ "type": "save",
+ "name": "save srcLTP relationship in AAI",
+ "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding:relationship-list' \n key='vpn-binding.vpn-id = $tmp.vpnName' \n force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $oof.vpn.access-node-id + '/p-interfaces/p-interface/' + $src-ltpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$src-ltpId`\" />\n\n\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3088.5,
+ "y": 2149,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "9a488056.fd463",
+ "type": "save",
+ "name": "save dstLTP relationship in AAI",
+ "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding:relationship-list' \n key='vpn-binding.vpn-id = $tmp.vpnName' \n force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $oof.vpn.access-node-id + '/p-interfaces/p-interface/' + $dst-ltpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$dst-ltpId`\" />",
+ "comments": "",
+ "outputs": 1,
+ "x": 3090.5,
+ "y": 2188,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "af7a5358.49a49",
+ "type": "save",
+ "name": "save TNNSSI (transport service instance) relationship to connectivity in AAI",
+ "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='service-instance:relationship-list' \n key='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id\n AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id \n AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type' \n force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"connectivity\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/connectivities/connectivity/' + $uuid.connectivity-domainA-uuid`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"connectivity.connectivity-id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$uuid.connectivity-domainA-uuid`\" />\n\n\n<!--<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='service-instance:relationship-list' -->\n<!-- key='service-instance.service-instance-id = $service-data.service-information.service-instance-id -->\n<!-- AND customer.global-customer-id = $service-data.networks.network[$nidx].network-data.service-information.global-customer-id -->\n<!-- AND service-subscription.service-type = $service-data.networks.network[$nidx].network-data.service-information.subscription-service-type' -->\n<!-- force=\"true\" pfx=\"tmp.AnAI-data\">-->\n<!--<parameter name=\"relationship-list.relationship[0].related-to\" value=\"connectivity\" />-->\n<!--<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/connectivities/connectivity/' + $prop.sotn.network-id`\" />-->\n<!--<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"connectivity.connectivity-id\" />-->\n<!--<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$prop.sotn.network-id`\" />-->",
+ "comments": "",
+ "outputs": 1,
+ "x": 3790,
+ "y": 1118,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "5d487f8.16a5d",
+ "type": "save",
+ "name": "save TNNSSI (transport service instance) relationship to connectivity in AAI",
+ "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='service-instance:relationship-list' \n key='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id\n AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id \n AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type' \n force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"connectivity\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/connectivities/connectivity/' + $prop.connectivity-domainB-uuid`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"connectivity.connectivity-id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$prop.connectivity-domainB-uuid`\" />\n\n\n<!--<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='service-instance:relationship-list' -->\n<!-- key='service-instance.service-instance-id = $service-data.service-information.service-instance-id -->\n<!-- AND customer.global-customer-id = $service-data.networks.network[$nidx].network-data.service-information.global-customer-id -->\n<!-- AND service-subscription.service-type = $service-data.networks.network[$nidx].network-data.service-information.subscription-service-type' -->\n<!-- force=\"true\" pfx=\"tmp.AnAI-data\">-->\n<!--<parameter name=\"relationship-list.relationship[0].related-to\" value=\"connectivity\" />-->\n<!--<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/connectivities/connectivity/' + $prop.sotn.network-id`\" />-->\n<!--<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"connectivity.connectivity-id\" />-->\n<!--<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$prop.sotn.network-id`\" />-->",
+ "comments": "",
+ "outputs": 1,
+ "x": 3779,
+ "y": 1991.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "9a891a89.705e9",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2737,
+ "y": 2167,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "a2095f6a.84829"
+ ]
+ ]
+ },
+ {
+ "id": "a2095f6a.84829",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 2877.500244140625,
+ "y": 2168.25390625,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "421e8d3c.2d000c",
+ "type": "comment",
+ "name": "TODO: FIXME: do we need this relationship?",
+ "info": "",
+ "comments": "",
+ "x": 3125,
+ "y": 2108,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "ec5e7e31.de7c9",
+ "type": "comment",
+ "name": "TODO: FIXME: put proper values",
+ "info": "",
+ "comments": "",
+ "x": 2404,
+ "y": 2120,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "b0430b3.4eee0f8",
+ "type": "save",
+ "name": "save vpn-binding B resource (aka. OTN domainB) in AAI",
+ "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding' \n key='vpn-binding.vpn-id = $prop.vpn-binding-domainB-uuid' >\n<parameter name='vpn-id' value='`$prop.vpn-binding-domainB-uuid`' />\n<parameter name='vpn-name' value='`$prop.vpn-binding-domainB-uuid`' />\n<parameter name='access-provider-id' value='`$domain-B.provider-id`' />\n<!--<parameter name='access-provider-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -9]`' />-->\n<parameter name='access-client-id' value='`$domain-B.client-id`' />\n<!--<parameter name='access-client-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -7]`' />-->\n<parameter name='access-topology-id' value='`$domain-B.te-topo-id`' />\n<!--<parameter name='access-topology-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -5]`' />-->\n<parameter name='src-access-node-id' value='`$domain-B.node-id`' />\n<parameter name='src-access-ltp-id' value='`$domain-B.tunnel-tp-id`' />\n<parameter name='dst-access-node-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -3]`' />\n<!--<parameter name='dst-access-ltp-id' value='`$destination.tunnel-tp-id`' />-->\n<parameter name='dst-access-ltp-id' value='' />\n<parameter name='vpn-type' value='`$prop.global.sotn.vpnType`' />\n<parameter name='operational-status' value='Created' />\n<parameter name='model-customization-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-customization-uuid`' />\n<parameter name='model-invariant-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-invariant-uuid`' />\n<parameter name='model-version-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-uuid`' />\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2440,
+ "y": 2448,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "ceffa653.90d39"
+ ]
+ ]
+ },
+ {
+ "id": "3a1d826b.1f953e",
+ "type": "comment",
+ "name": "TODO: FIXME: do we need this relationship?",
+ "info": "",
+ "comments": "",
+ "x": 3128,
+ "y": 2388,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "4a53aeab.a2778",
+ "type": "save",
+ "name": "save srcLTP relationship in AAI",
+ "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding:relationship-list' \n key='vpn-binding.vpn-id = $tmp.vpnName' \n force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $oof.vpn.access-node-id + '/p-interfaces/p-interface/' + $src-ltpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$src-ltpId`\" />\n\n\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3091.5,
+ "y": 2429,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "36a3debe.6aad72",
+ "type": "save",
+ "name": "save dstLTP relationship in AAI",
+ "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding:relationship-list' \n key='vpn-binding.vpn-id = $tmp.vpnName' \n force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"p-interface\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/pnfs/pnf/' + $oof.vpn.access-node-id + '/p-interfaces/p-interface/' + $dst-ltpId`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"p-interface.interface-name\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$dst-ltpId`\" />",
+ "comments": "",
+ "outputs": 1,
+ "x": 3093.5,
+ "y": 2468,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "a45d9658.764968",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 2880.500244140625,
+ "y": 2448.25390625,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "ceffa653.90d39",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2740,
+ "y": 2447,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "a45d9658.764968"
+ ]
+ ]
+ },
+ {
+ "id": "7449a31b.49a87c",
+ "type": "comment",
+ "name": "TODO: FIXME: put proper values",
+ "info": "",
+ "comments": "",
+ "x": 2420,
+ "y": 2408,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "9e9e0741.eed478",
+ "type": "save",
+ "name": "save connectivity-B relationship to vpn-binding-B, in AAI",
+ "xml": "<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding:relationship-list' \n key='vpn-binding.vpn-id = $prop.vpn-binding-domainB-uuid' \n force=\"true\" pfx=\"tmp.AnAI-data\">\n<parameter name=\"relationship-list.relationship[0].related-to\" value=\"connectivity\" />\n<parameter name=\"relationship-list.relationship[0].related-link\" value=\"`'/network/connectivities/connectivity/' + $prop.connectivity-domainB-uuid`\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-key\" value=\"connectivity.connectivity-id\" />\n<parameter name=\"relationship-list.relationship[0].relationship-data[0].relationship-value\" value=\"`$prop.connectivity-domainB-uuid`\" />",
+ "comments": "",
+ "outputs": 1,
+ "x": 2438.5,
+ "y": 2488,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "a04f201b.1fb08",
+ "type": "comment",
+ "name": "TODO: FIXME:",
+ "info": "set attachment param and send request to NCE-T\nfor bandwidth matrix\nmay require a new template for JSON body",
+ "comments": "",
+ "x": 2312,
+ "y": 2571,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "a0a45fd6.c31fe",
+ "type": "set",
+ "name": "set attachment_param domain A",
+ "xml": "<set>\n<parameter name='request-id' value='`$prop.vpn-binding-domainA-uuid`' />\n<parameter name='otn-source-node' value='`$param-prefix-domainA[$param-prefix-domainA_length -3]`' />\n<parameter name='otn-dest-node' value='`$domain-A.node-id`' />\n<parameter name='bw-odu' value=\"`'0,' + $maximum-bandwidth /1000 *2 /3 `\" />\n<!--<parameter name='src-ttp-id' value='`$source.tunnel-tp-id`' />-->\n<parameter name='dst-ttp-id' value='`$domain-A.tunnel-tp-id`' />\n<parameter name='slice-instance-id' value='`$tmp.aai.service-instance.service-instance-id`' />\n\n",
+ "comments": "",
+ "x": 2377,
+ "y": 2616,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "32eb8024.15dcc8",
+ "type": "execute",
+ "name": "get esr-thirdparty-sdnc",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"esr-thirdparty-sdnc\" \n\t\tkey=\"esr-thirdparty-sdnc.thirdparty-sdnc-id = $tmp.domainA.esr-thirdparty-id AND \n\t\t depth = '1'\"\n pfx='tmp.aai.domainA.esr-thirdparty-sdnc' local-only='false' >",
+ "comments": "",
+ "outputs": 1,
+ "x": 4834,
+ "y": 638,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "73d2c0a6.ca0098",
+ "2f388561.aeb472",
+ "c9248b9c.994ac"
+ ]
+ ]
+ },
+ {
+ "id": "381969a5.e5019e",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 2387,
+ "y": 294,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "2fa39853.fd6f7"
+ ]
+ ]
+ },
+ {
+ "id": "93b21596.ec10e8",
+ "type": "outcome",
+ "name": "logical-link",
+ "xml": "<outcome value='logical-link'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1317.0001220703125,
+ "y": 711.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "993cc770.3c90b"
+ ]
+ ]
+ },
+ {
+ "id": "8fdb5adc.4040d",
+ "type": "switchNode",
+ "name": "switch allotted-resource.relationship-list not empty",
+ "xml": "<switch test='`$tmp.aai.allotted-resource.relationship-list.relationship_length != 0`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2055,
+ "y": 417,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "332b207c.0fec28",
+ "310fb819.3e915"
+ ]
+ ]
+ },
+ {
+ "id": "310fb819.3e915",
+ "type": "outcomeFalse",
+ "name": "false",
+ "xml": "<outcome value='false'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2365,
+ "y": 424,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "332b207c.0fec28",
+ "type": "outcomeTrue",
+ "name": "true",
+ "xml": "<outcome value='true'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2364,
+ "y": 478,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "b6e0228b.bc6398"
+ ]
+ ]
+ },
+ {
+ "id": "d9c8107.cbe1d7",
+ "type": "set",
+ "name": "set the 1st logical-link-name",
+ "xml": "<set>\n<parameter name='logical-link-name' value=\"`$tmp.aai.allotted-resource.relationship-list.relationship[$idx].relationship-data[0].relationship-value`\" />\n\n\n",
+ "comments": "",
+ "x": 1737,
+ "y": 661,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "993cc770.3c90b",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 1494,
+ "y": 704,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "d9c8107.cbe1d7",
+ "8c284458.c08ae8"
+ ]
+ ]
+ },
+ {
+ "id": "d4f8497.5d30938",
+ "type": "comment",
+ "name": "Question?",
+ "info": "How to know if DG would send this get request\nin \"nodes\" namespace instead of \"network\" namespace?",
+ "comments": "",
+ "x": 2923,
+ "y": 890,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "b8e4ab1b.5f9428",
+ "type": "save",
+ "name": "get p-interface-src from aai",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"p-interface\"\n\t key=\"pnf.pnf-name = $tmp.src.domainA.pnf-name\n\t AND p-interface.interface-name = $tmp.aai.network-route-A.next-hop\"\n\t\tlocal-only=\"false\" \n\t\tpfx=\"tmp.aai.network-route-A.p-interface-src\" >\n\n<!--<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" -->\n<!--\tresource=\"p-interface\"-->\n<!--\t key=\"pnf.pnf-name = $unique-src-node-Id-->\n<!--\t and p-interface.interface-name = $tmp.aai.endpointA.relationship-list.relationship[$rel-index].relationship-data[0].relationship-value\"-->\n<!--\t\tlocal-only=\"false\" -->\n<!--\t\tpfx=\"tmp.aai.endpointA.p-interface-src\" >-->\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2966,
+ "y": 955,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "b8369203.6c1e7",
+ "9feeef15.8800c",
+ "e8e1bd1d.029dd"
+ ]
+ ]
+ },
+ {
+ "id": "6545b277.ec5df4",
+ "type": "save",
+ "name": "get p-interface-dst from aai",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"p-interface\"\n\t key=\"pnf.pnf-name = $tmp.dst.domainB.pnf-name\n\t AND p-interface.interface-name = $tmp.aai.network-route-B.next-hop\"\n\t\tlocal-only=\"false\" \n\t\tpfx=\"tmp.aai.network-route-B.p-interface-dst\" >\n\n<!--<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" -->\n<!--\tresource=\"p-interface\"-->\n<!--\t key=\"pnf.pnf-name = $unique-src-node-Id-->\n<!--\t and p-interface.interface-name = $tmp.aai.endpointA.relationship-list.relationship[$rel-index].relationship-data[0].relationship-value\"-->\n<!--\t\tlocal-only=\"false\" -->\n<!--\t\tpfx=\"tmp.aai.endpointA.p-interface-src\" >-->\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2963,
+ "y": 1799,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "a9223749.8519e8",
+ "8aac19ac.984638",
+ "15568030.09492"
+ ]
+ ]
+ },
+ {
+ "id": "4f7449aa.1cee1",
+ "type": "comment",
+ "name": "Question?",
+ "info": "How to know if DG would send this get request\nin \"nodes\" namespace instead of \"network\" namespace?",
+ "comments": "",
+ "x": 2924,
+ "y": 1743,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "2fa39853.fd6f7",
+ "type": "save",
+ "name": "get allotted-resource relationship from aai",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"allotted-resource:relationship-list\"\n\tkey='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id\n AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id \n AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type\n AND allotted-resource.id = $allotted-resource-id'\n\tlocal-only=\"false\"\n\tforce=\"true\" pfx=\"tmp.aai.allotted-resource.relationship-list\">\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2680,
+ "y": 241,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "e187deec.568f28",
+ "ca2e6451.404f78",
+ "42b58dd4.7191cc"
+ ]
+ ]
+ },
+ {
+ "id": "ca2e6451.404f78",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2953.490966796875,
+ "y": 133.573974609375,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "e5b0a6e5.509578"
+ ]
+ ]
+ },
+ {
+ "id": "e5b0a6e5.509578",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 3131.0625,
+ "y": 133.8597412109375,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "42b58dd4.7191cc",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2949,
+ "y": 183,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "ecd1ffcd.8fafe8"
+ ]
+ ]
+ },
+ {
+ "id": "ecd1ffcd.8fafe8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 3131,
+ "y": 183,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "e187deec.568f28",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2953,
+ "y": 234,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "d246d860.a6b138"
+ ]
+ ]
+ },
+ {
+ "id": "d246d860.a6b138",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 3133,
+ "y": 234,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "8fdb5adc.4040d"
+ ]
+ ]
+ },
+ {
+ "id": "65e46dcd.9c5144",
+ "type": "for",
+ "name": "for each allotted-resource relationship",
+ "xml": "<for index='idx' start='0' end='`$tmp.aai.allotted-resource.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2624,
+ "y": 458,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "dd606d5c.9d70f"
+ ]
+ ]
+ },
+ {
+ "id": "dd606d5c.9d70f",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.allotted-resource.relationship-list.relationship[$idx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2904,
+ "y": 458,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "93b21596.ec10e8"
+ ]
+ ]
+ },
+ {
+ "id": "da58235b.ecd51",
+ "type": "outcome",
+ "name": "network-policy",
+ "xml": "<outcome value='network-policy'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3109,
+ "y": 432,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "bae40be2.1a0898"
+ ]
+ ]
+ },
+ {
+ "id": "bae40be2.1a0898",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 3285.9998779296875,
+ "y": 424.9998779296875,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "26610962.4550fe",
+ "1b905535.187f13"
+ ]
+ ]
+ },
+ {
+ "id": "26610962.4550fe",
+ "type": "set",
+ "name": "set the 1st network-policy-id",
+ "xml": "<set>\n<parameter name='network-policy-id' value=\"`$tmp.aai.allotted-resource.relationship-list.relationship[$idx].relationship-data[0].relationship-value`\" />\n\n\n",
+ "comments": "",
+ "x": 3528.9998779296875,
+ "y": 381.9998779296875,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "1b905535.187f13",
+ "type": "save",
+ "name": "get network-policy from aai",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"network-policy\"\n\tkey='network-policy.network-policy-id = $network-policy-id'\n\tlocal-only=\"false\"\n\tforce=\"true\" pfx=\"tmp.aai.network-policy\">",
+ "comments": "",
+ "outputs": 1,
+ "x": 3517.9998779296875,
+ "y": 436.9998779296875,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "690d79a7.ec256",
+ "33a9cbc4.26d4ec",
+ "93a52247.c17dd8"
+ ]
+ ]
+ },
+ {
+ "id": "93a52247.c17dd8",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3771,
+ "y": 323,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "2900fde3.f79c7a"
+ ]
+ ]
+ },
+ {
+ "id": "2900fde3.f79c7a",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 3919.571533203125,
+ "y": 323.2857666015625,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "6f314ac7.786434",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 3918.509033203125,
+ "y": 367.426025390625,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "33a9cbc4.26d4ec",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3759.509033203125,
+ "y": 367.426025390625,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "6f314ac7.786434"
+ ]
+ ]
+ },
+ {
+ "id": "690d79a7.ec256",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3766.509033203125,
+ "y": 446.426025390625,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "13407089.aa8267"
+ ]
+ ]
+ },
+ {
+ "id": "13407089.aa8267",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 3905.509033203125,
+ "y": 446.426025390625,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "d0bc6aa5.e1fca8"
+ ]
+ ]
+ },
+ {
+ "id": "d0bc6aa5.e1fca8",
+ "type": "set",
+ "name": "set the max bandwidth",
+ "xml": "<set>\n<parameter name='maximum-bandwidth' value=\"`$tmp.aai.network-policy.max-bandwidth`\" />\n\n\n",
+ "comments": "",
+ "x": 4111,
+ "y": 444,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "7b409cff.da197c",
+ "type": "execute",
+ "name": "execute split tp-id to get pnf-name",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='split' >\n<parameter name=\"original_string\" value='`$tmp.aai.network-route-A.next-hop`'/>\n<!--<parameter name=\"regex\" value=\"[^-]+$\"/>-->\n<parameter name=\"regex\" value=\"[-]+\"/>\n<parameter name=\"ctx_memory_result_key\" value=\"param-prefix-domainA-pnfName\"/>\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2967,
+ "y": 625,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "6c1cd175.73bac",
+ "685f5c8c.4102b4"
+ ]
+ ]
+ },
+ {
+ "id": "685f5c8c.4102b4",
+ "type": "failure",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3190,
+ "y": 611,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "1331c07a.407898"
+ ]
+ ]
+ },
+ {
+ "id": "6c1cd175.73bac",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3192,
+ "y": 644,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "c779d61e.1b8528"
+ ]
+ ]
+ },
+ {
+ "id": "c779d61e.1b8528",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value=\"An error occured while splitting sna1_route\" />\n",
+ "comments": "",
+ "x": 3335,
+ "y": 641,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "1331c07a.407898",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 3338,
+ "y": 604,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "59393385.2a7954",
+ "5055791b.75c5d"
+ ]
+ ]
+ },
+ {
+ "id": "59393385.2a7954",
+ "type": "set",
+ "name": "set pnf-name",
+ "xml": "<set>\n<parameter name='tmp.src.domainA.pnf-name' value=\"`$param-prefix-domainA-pnfName[0] + '-' +\n $param-prefix-domainA-pnfName[1] + '-' +\n $param-prefix-domainA-pnfName[2] + '-' +\n $param-prefix-domainA-pnfName[3] + '-' +\n $param-prefix-domainA-pnfName[4] + '-' +\n $param-prefix-domainA-pnfName[5] + '-' +\n $param-prefix-domainA-pnfName[6] + '-' +\n $param-prefix-domainA-pnfName[7] + '-' +\n $param-prefix-domainA-pnfName[8]`\" />\n",
+ "comments": "",
+ "x": 3500,
+ "y": 599,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "e04c02f4.2f63f8",
+ "type": "execute",
+ "name": "execute split tp-id to get pnf-name",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='split' >\n<parameter name=\"original_string\" value='`$tmp.aai.network-route-B.next-hop`'/>\n<!--<parameter name=\"regex\" value=\"[^-]+$\"/>-->\n<parameter name=\"regex\" value=\"[-]+\"/>\n<parameter name=\"ctx_memory_result_key\" value=\"param-prefix-domainB-pnfName\"/>\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2981,
+ "y": 1461.9998779296875,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "250eb2ce.721286",
+ "7ff4092b.9f4c3"
+ ]
+ ]
+ },
+ {
+ "id": "7ff4092b.9f4c3",
+ "type": "failure",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3204,
+ "y": 1447.9998779296875,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "4e15b8c4.ecfe8"
+ ]
+ ]
+ },
+ {
+ "id": "250eb2ce.721286",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3206,
+ "y": 1480.9998779296875,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "d740a9b4.496fa"
+ ]
+ ]
+ },
+ {
+ "id": "d740a9b4.496fa",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value=\"An error occured while splitting sna1_route\" />\n",
+ "comments": "",
+ "x": 3349,
+ "y": 1477.9998779296875,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "4e15b8c4.ecfe8",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 3352,
+ "y": 1440.9998779296875,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "a09d9728.0836a8",
+ "a9ef3bf.dca6748"
+ ]
+ ]
+ },
+ {
+ "id": "a09d9728.0836a8",
+ "type": "set",
+ "name": "set pnf-name",
+ "xml": "<set>\n<parameter name='tmp.dst.domainB.pnf-name' value=\"`$param-prefix-domainB-pnfName[0] + '-' +\n $param-prefix-domainB-pnfName[1] + '-' +\n $param-prefix-domainB-pnfName[2] + '-' +\n $param-prefix-domainB-pnfName[3] + '-' +\n $param-prefix-domainB-pnfName[4] + '-' +\n $param-prefix-domainB-pnfName[5] + '-' +\n $param-prefix-domainB-pnfName[6] + '-' +\n $param-prefix-domainB-pnfName[7] + '-' +\n $param-prefix-domainB-pnfName[8]`\" />\n",
+ "comments": "",
+ "x": 3546,
+ "y": 1444,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "7ac4d896.f266b8",
+ "type": "execute",
+ "name": "execute properties",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.prop.PropertiesNode' method='readProperties' >\n <parameter name='fileName' value='%SDNC_CONFIG_DIR%/generic-resource-api-dg.properties' />\n <parameter name='contextPrefix' value='prop' />",
+ "comments": "",
+ "outputs": 1,
+ "x": 1092,
+ "y": 170,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "41475eff.deafd",
+ "type": "execute",
+ "name": "execute UUID generator for vpn-binding domainA",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='generateUUID' >\n<parameter name=\"ctx-destination\" value=\"prop.vpn-binding-domainA-uuid\"/>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2443,
+ "y": 2082,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "171af565.db9233",
+ "type": "execute",
+ "name": "execute UUID generator for vpn-binding domainB",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='generateUUID' >\n<parameter name=\"ctx-destination\" value=\"prop.vpn-binding-domainB-uuid\"/>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2441,
+ "y": 2370,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "a8e7dd16.944608",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='pividx' start='0' end='`$tmp.aai.network-route-A.p-interface-src.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3614,
+ "y": 1195,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "58871d7.533a164"
+ ]
+ ]
+ },
+ {
+ "id": "58871d7.533a164",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.network-route-A.p-interface-src.relationship-list.relationship[$pividx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3820,
+ "y": 1195,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "e6111c32.d5195"
+ ]
+ ]
+ },
+ {
+ "id": "e6111c32.d5195",
+ "type": "outcome",
+ "name": "tunnel-termination-point",
+ "xml": "<outcome value='tunnel-termination-point'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4035.28564453125,
+ "y": 1194.82177734375,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "4a0a1881.22b0b"
+ ]
+ ]
+ },
+ {
+ "id": "4a0a1881.22b0b",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4242.1171875,
+ "y": 1195.34033203125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "5e5dd832.1a8688",
+ "54bc0e63.9b6c2",
+ "21213693.b01ef2"
+ ]
+ ]
+ },
+ {
+ "id": "5e5dd832.1a8688",
+ "type": "set",
+ "name": "set source ttp-id",
+ "xml": "<set>\n<parameter name='tmp.source.ttp-id' value=\"`$tmp.aai.network-route-A.p-interface-src.relationship-list.relationship[$pividx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 4457.1171875,
+ "y": 1157.34033203125,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "54bc0e63.9b6c2",
+ "type": "get-resource",
+ "name": "get-resource src TTP",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"tunnel-termination-point\" \n\t\tkey=\"tunnel-termination-point.ttp-id = $tmp.source.ttp-id \n\t\tAND depth = '0'\"\n pfx='tmp.aai.source-ttp' local-only='false' >\n\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4454.1171875,
+ "y": 1196.34033203125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "de5f8f91.d806"
+ ]
+ ]
+ },
+ {
+ "id": "21213693.b01ef2",
+ "type": "break",
+ "name": "break",
+ "xml": "<break>\n",
+ "comments": "",
+ "x": 4409.6171875,
+ "y": 1238.34033203125,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "de5f8f91.d806",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4634.6171875,
+ "y": 1195.34033203125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "f282b1a5.b5514"
+ ]
+ ]
+ },
+ {
+ "id": "f282b1a5.b5514",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4792.6171875,
+ "y": 1195.34033203125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "5cf873ba.a6923c"
+ ]
+ ]
+ },
+ {
+ "id": "5cf873ba.a6923c",
+ "type": "set",
+ "name": "set source tunnel tp ip",
+ "xml": "<set>\n<parameter name='source.tunnel-tp-id' value=\"`$tmp.aai.source-ttp.tunnel-tp-id`\" />\n",
+ "comments": "",
+ "x": 4999.6171875,
+ "y": 1195.34033203125,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "34f70001.b13958",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='dividx' start='0' end='`$tmp.aai.network-route-B.p-interface-dst.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3611,
+ "y": 2064.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "a071673c.fc9a28"
+ ]
+ ]
+ },
+ {
+ "id": "a071673c.fc9a28",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.network-route-B.p-interface-dst.relationship-list.relationship[$dividx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3817,
+ "y": 2064.0001220703125,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "6adf0421.fc4f54"
+ ]
+ ]
+ },
+ {
+ "id": "6adf0421.fc4f54",
+ "type": "outcome",
+ "name": "tunnel-termination-point",
+ "xml": "<outcome value='tunnel-termination-point'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4032.28564453125,
+ "y": 2063.8218994140625,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "2bb1f1c3.65f2c6"
+ ]
+ ]
+ },
+ {
+ "id": "2bb1f1c3.65f2c6",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4239.1171875,
+ "y": 2064.3404541015625,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "11642463.fe6e2c",
+ "c588c96b.efcac",
+ "4df609a.395b578"
+ ]
+ ]
+ },
+ {
+ "id": "11642463.fe6e2c",
+ "type": "set",
+ "name": "set destination ttp-id",
+ "xml": "<set>\n<parameter name='tmp.destination.ttp-id' value=\"`$tmp.aai.network-route-B.p-interface-dst.relationship-list.relationship[$dividx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 4454.1171875,
+ "y": 2026.3404541015625,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "c588c96b.efcac",
+ "type": "get-resource",
+ "name": "get-resource src TTP",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"tunnel-termination-point\" \n\t\tkey=\"tunnel-termination-point.ttp-id = $tmp.destination.ttp-id \n\t\tAND depth = '0'\"\n pfx='tmp.aai.destination-ttp' local-only='false' >\n\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4451.1171875,
+ "y": 2065.3404541015625,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "946398a2.3fdd3"
+ ]
+ ]
+ },
+ {
+ "id": "4df609a.395b578",
+ "type": "break",
+ "name": "break",
+ "xml": "<break>\n",
+ "comments": "",
+ "x": 4406.6171875,
+ "y": 2107.3404541015625,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "946398a2.3fdd3",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4631.6171875,
+ "y": 2064.3404541015625,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "4ada9462.92f41c"
+ ]
+ ]
+ },
+ {
+ "id": "4ada9462.92f41c",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4789.6171875,
+ "y": 2064.3404541015625,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "85bbe5c.988a398"
+ ]
+ ]
+ },
+ {
+ "id": "85bbe5c.988a398",
+ "type": "set",
+ "name": "set destination tunnel tp ip",
+ "xml": "<set>\n<parameter name='destination.tunnel-tp-id' value=\"`$tmp.aai.destination-ttp.tunnel-tp-id`\" />\n",
+ "comments": "",
+ "x": 4996.6171875,
+ "y": 2064.3404541015625,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "62bd6081.059d7",
+ "type": "set",
+ "name": "set attachment_param domain B",
+ "xml": "<set>\n<parameter name='request-id' value='`$prop.vpn-binding-domainB-uuid`' />\n<parameter name='otn-source-node' value='`$domain-B.node-id`' />\n<parameter name='otn-dest-node' value='`$param-prefix-domainB[$param-prefix-domainB_length -3]`' />\n<!--<parameter name='bw-odu' value='`$maximum-bandwidth /10`' />-->\n<parameter name='bw-odu' value=\"`'0,' + $maximum-bandwidth /1000 *2 /3 `\" />\n<parameter name='src-ttp-id' value='`$domain-B.tunnel-tp-id`' />\n<!--<parameter name='dst-ttp-id' value='`$destination.tunnel-tp-id`' />-->\n<parameter name='dst-ttp-id' value='' />\n<parameter name='slice-instance-id' value='`$tmp.aai.service-instance.service-instance-id`' />\n\n",
+ "comments": "",
+ "x": 2372,
+ "y": 2991,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "5055791b.75c5d",
+ "type": "get-resource",
+ "name": "get-resource src pnf",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"pnf\" \n\t\tkey=\"pnf.pnf-name = $tmp.src.domainA.pnf-name\"\n pfx='tmp.aai.source-pnf' local-only='false' >\n\n <!--AND depth = '0'\"-->\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3527,
+ "y": 671,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "b37ffca0.5536d8",
+ "f29e8ee3.6f68c8",
+ "12ff2066.526398"
+ ]
+ ]
+ },
+ {
+ "id": "b37ffca0.5536d8",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3722.5001220703125,
+ "y": 623,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "8d70b5c4.7732f8"
+ ]
+ ]
+ },
+ {
+ "id": "f29e8ee3.6f68c8",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3714.5001220703125,
+ "y": 678,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "aea102ae.c04f58"
+ ]
+ ]
+ },
+ {
+ "id": "12ff2066.526398",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3719.5001220703125,
+ "y": 735,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "d2755963.27f41"
+ ]
+ ]
+ },
+ {
+ "id": "d2755963.27f41",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 3871.5001220703125,
+ "y": 736,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "aea102ae.c04f58",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 3882.5001220703125,
+ "y": 681,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "8d70b5c4.7732f8",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 3866.8824462890625,
+ "y": 620.6556701660156,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "bbf0aa7e.e2119"
+ ]
+ ]
+ },
+ {
+ "id": "f4395a66.200ea",
+ "type": "outcome",
+ "name": "esr-thirdparty-sdnc",
+ "xml": "<outcome value='esr-thirdparty-sdnc'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4449,
+ "y": 639,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "89965e9d.5bf73"
+ ]
+ ]
+ },
+ {
+ "id": "89965e9d.5bf73",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4626,
+ "y": 631,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "cf2b04e9.c7ece",
+ "32eb8024.15dcc8"
+ ]
+ ]
+ },
+ {
+ "id": "bbf0aa7e.e2119",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='spvidx' start='0' end='`$tmp.aai.source-pnf.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4051,
+ "y": 635,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "5e8a47e5.344b2"
+ ]
+ ]
+ },
+ {
+ "id": "5e8a47e5.344b2",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4246,
+ "y": 635,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "f4395a66.200ea",
+ "cfe936cc.62cbd8"
+ ]
+ ]
+ },
+ {
+ "id": "cf2b04e9.c7ece",
+ "type": "set",
+ "name": "set esr-thirdparty-sdnc domainA id",
+ "xml": "<set>\n<parameter name='tmp.domainA.esr-thirdparty-id' value=\"`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 4864,
+ "y": 586,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "73d2c0a6.ca0098",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5044,
+ "y": 629,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "c43ff31d.81e548"
+ ]
+ ]
+ },
+ {
+ "id": "2f388561.aeb472",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5036,
+ "y": 684,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "d2cf9090.58e4c8"
+ ]
+ ]
+ },
+ {
+ "id": "c9248b9c.994ac",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5041,
+ "y": 741,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "c9c36e85.c10ae8"
+ ]
+ ]
+ },
+ {
+ "id": "c9c36e85.c10ae8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 5193,
+ "y": 742,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "d2cf9090.58e4c8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 5204,
+ "y": 687,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "c43ff31d.81e548",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 5188.38232421875,
+ "y": 626.6556701660156,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "2aa1f89d.d99288"
+ ]
+ ]
+ },
+ {
+ "id": "2aa1f89d.d99288",
+ "type": "set",
+ "name": "set controller domainA data",
+ "xml": "<set>\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domainA.url' value=\"`$tmp.aai.domainA.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].service-url`\" />\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domainA.user' value=\"`$tmp.aai.domainA.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].user-name`\" />\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domainA.password' value=\"`$tmp.aai.domainA.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].password`\" />\n\n\n<!--<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >-->\n<!--<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`\" />-->\n<!--<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.user`\" />-->\n<!--<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.password`\" />-->\n<!--<parameter name=\"format\" value=\"json\"/>-->\n<!--<parameter name=\"httpMethod\" value=\"get\"/>-->\n<!--<parameter name=\"responsePrefix\" value=\"topology\"/>-->\n<!--<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>-->\n<!--<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>-->\n<!--<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>-->\n<!--<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>-->\n",
+ "comments": "",
+ "x": 5403,
+ "y": 623,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "a9ef3bf.dca6748",
+ "type": "get-resource",
+ "name": "get-resource src pnf",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"pnf\" \n\t\tkey=\"pnf.pnf-name = $tmp.dst.domainB.pnf-name\"\n pfx='tmp.aai.destination-pnf' local-only='false' >\n\n <!--AND depth = '0'\"-->\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3568,
+ "y": 1512,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "4ce90a1d.60092c",
+ "60723c85.f84054",
+ "343ac8c.8b51638"
+ ]
+ ]
+ },
+ {
+ "id": "4ce90a1d.60092c",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3763.5001220703125,
+ "y": 1464,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "ce24a29a.e4d57"
+ ]
+ ]
+ },
+ {
+ "id": "60723c85.f84054",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3755.5001220703125,
+ "y": 1519,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "e9f57737.1a79b8"
+ ]
+ ]
+ },
+ {
+ "id": "343ac8c.8b51638",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3760.5001220703125,
+ "y": 1576,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "67449715.5406e8"
+ ]
+ ]
+ },
+ {
+ "id": "67449715.5406e8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 3912.5001220703125,
+ "y": 1577,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "e9f57737.1a79b8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 3923.5001220703125,
+ "y": 1522,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "ce24a29a.e4d57",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 3907.8824462890625,
+ "y": 1461.6556701660156,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "ed40a410.dc6fe8"
+ ]
+ ]
+ },
+ {
+ "id": "857c3216.12f558",
+ "type": "outcome",
+ "name": "esr-thirdparty-sdnc",
+ "xml": "<outcome value='esr-thirdparty-sdnc'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4490,
+ "y": 1480,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "6bbf97a7.ebebb8"
+ ]
+ ]
+ },
+ {
+ "id": "6bbf97a7.ebebb8",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4667,
+ "y": 1472,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "ee554955.44691",
+ "1c8432c4.e13b6d"
+ ]
+ ]
+ },
+ {
+ "id": "ed40a410.dc6fe8",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='dpvidx' start='0' end='`$tmp.aai.destination-pnf.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4092,
+ "y": 1476,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "70b35483.a830f4"
+ ]
+ ]
+ },
+ {
+ "id": "70b35483.a830f4",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.destination-pnf.relationship-list.relationship[$dpvidx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4287,
+ "y": 1476,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "857c3216.12f558",
+ "dc8e8812.fdd648"
+ ]
+ ]
+ },
+ {
+ "id": "1c8432c4.e13b6d",
+ "type": "execute",
+ "name": "get esr-thirdparty-sdnc",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"esr-thirdparty-sdnc\" \n\t\tkey=\"esr-thirdparty-sdnc.thirdparty-sdnc-id = $tmp.domainB.esr-thirdparty-id AND \n\t\t depth = '1'\"\n pfx='tmp.aai.domainB.esr-thirdparty-sdnc' local-only='false' >",
+ "comments": "",
+ "outputs": 1,
+ "x": 4875,
+ "y": 1479,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "6cc22b96.ba67f4",
+ "b08dfdd6.0852f8",
+ "4f7e6e24.1a4"
+ ]
+ ]
+ },
+ {
+ "id": "ee554955.44691",
+ "type": "set",
+ "name": "set esr-thirdparty-sdnc domainB id",
+ "xml": "<set>\n<parameter name='tmp.domainB.esr-thirdparty-id' value=\"`$tmp.aai.destination-pnf.relationship-list.relationship[$dpvidx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 4905,
+ "y": 1427,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "6cc22b96.ba67f4",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5085,
+ "y": 1470,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "19f4c2b.fd2d63d"
+ ]
+ ]
+ },
+ {
+ "id": "b08dfdd6.0852f8",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5077,
+ "y": 1525,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "4d7c2f7b.855e48"
+ ]
+ ]
+ },
+ {
+ "id": "4f7e6e24.1a4",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 5082,
+ "y": 1582,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "92c87883.16eab"
+ ]
+ ]
+ },
+ {
+ "id": "92c87883.16eab",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 5234,
+ "y": 1583,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "4d7c2f7b.855e48",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 5245,
+ "y": 1528,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "19f4c2b.fd2d63d",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 5229.38232421875,
+ "y": 1467.6556701660156,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "f5fd6d7b.ccf568"
+ ]
+ ]
+ },
+ {
+ "id": "f5fd6d7b.ccf568",
+ "type": "set",
+ "name": "set controller domainB data",
+ "xml": "<set>\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domainB.url' value=\"`$tmp.aai.domainB.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].service-url`\" />\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domainB.user' value=\"`$tmp.aai.domainB.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].user-name`\" />\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domainB.password' value=\"`$tmp.aai.domainB.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].password`\" />\n\n\n<!--<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >-->\n<!--<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`\" />-->\n<!--<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.user`\" />-->\n<!--<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.password`\" />-->\n<!--<parameter name=\"format\" value=\"json\"/>-->\n<!--<parameter name=\"httpMethod\" value=\"get\"/>-->\n<!--<parameter name=\"responsePrefix\" value=\"topology\"/>-->\n<!--<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>-->\n<!--<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>-->\n<!--<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>-->\n<!--<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>-->\n",
+ "comments": "",
+ "x": 5444,
+ "y": 1464,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "fdbb72c5.61c228",
+ "type": "execute",
+ "name": "execute RestApiCallNode slice creation domainA",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.transport-slice-creation.templatefile`\" />\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.url + '/restconf/operations/ietf-optical-slice:create-optical-slice'`\" />\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"post\"/>\n<parameter name=\"responsePrefix\" value=\"otn-oof\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n<parameter name='customHttpHeaders' value=\"`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`\" />",
+ "comments": "",
+ "outputs": 1,
+ "x": 2423,
+ "y": 2674,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "b62b791e.5db38",
+ "47c9af20.002648"
+ ]
+ ]
+ },
+ {
+ "id": "47c9af20.002648",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2689,
+ "y": 2654,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "e173211c.50ca1"
+ ]
+ ]
+ },
+ {
+ "id": "b62b791e.5db38",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2690.000213623047,
+ "y": 2704.99990940094,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "9a481111.191d4"
+ ]
+ ]
+ },
+ {
+ "id": "e173211c.50ca1",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing OOF api\" />\n",
+ "comments": "",
+ "x": 2829.0002479553223,
+ "y": 2654.0000009536743,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "9a481111.191d4",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 2835.02725982666,
+ "y": 2702.745394706726,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "3f4df906.b67d7e",
+ "type": "execute",
+ "name": "execute RestApiCallNode slice creation domainB",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.transport-slice-creation.templatefile`\" />\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainB.url + '/restconf/operations/ietf-optical-slice:create-optical-slice'`\" />\n<!--<parameter name=\"restapiUrl\" value=\"`$prop.restapi.connection-oof-url`\" />-->\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainB.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainB.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"post\"/>\n<parameter name=\"responsePrefix\" value=\"otn-oof\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n<parameter name='customHttpHeaders' value=\"`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`\" />",
+ "comments": "",
+ "outputs": 1,
+ "x": 2423,
+ "y": 3046,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "e8fdf08e.e8b0f8",
+ "a8718b8a.f404c8"
+ ]
+ ]
+ },
+ {
+ "id": "a8718b8a.f404c8",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2689,
+ "y": 3026,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "fcecbd56.8e1ac"
+ ]
+ ]
+ },
+ {
+ "id": "e8fdf08e.e8b0f8",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2690.000213623047,
+ "y": 3076.99990940094,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "ccb1984d.b4313"
+ ]
+ ]
+ },
+ {
+ "id": "fcecbd56.8e1ac",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing OOF api\" />\n",
+ "comments": "",
+ "x": 2829.0002479553223,
+ "y": 3026.0000009536743,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "ccb1984d.b4313",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 2835.02725982666,
+ "y": 3074.745394706726,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "b6e0228b.bc6398",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 2528,
+ "y": 404,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "65e46dcd.9c5144",
+ "bb6c8a2e.a61878"
+ ]
+ ]
+ },
+ {
+ "id": "bb6c8a2e.a61878",
+ "type": "for",
+ "name": "for each allotted-resource relationship",
+ "xml": "<for index='idx' start='0' end='`$tmp.aai.allotted-resource.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2809,
+ "y": 360,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "475f2872.5fafd"
+ ]
+ ]
+ },
+ {
+ "id": "475f2872.5fafd",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.allotted-resource.relationship-list.relationship[$idx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3071,
+ "y": 360,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "da58235b.ecd51"
+ ]
+ ]
+ },
+ {
+ "id": "cfe936cc.62cbd8",
+ "type": "outcome",
+ "name": "network-resource",
+ "xml": "<outcome value='network-resource'>",
+ "comments": "",
+ "outputs": 1,
+ "x": 4452,
+ "y": 713,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "29038cb1.b59084"
+ ]
+ ]
+ },
+ {
+ "id": "29038cb1.b59084",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4629,
+ "y": 705,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "c25692cd.684ce8"
+ ]
+ ]
+ },
+ {
+ "id": "c25692cd.684ce8",
+ "type": "set",
+ "name": "set domainA ethernet layer network-id",
+ "xml": "<set>\n<parameter name='tmp.domainA.eth-network-id' value=\"`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 4864,
+ "y": 829,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "68f808b3.66b5",
+ "type": "set",
+ "name": "set domainB ethernet layer network-id",
+ "xml": "<set>\n<parameter name='tmp.domainB.eth-network-id' value=\"`$tmp.aai.destination-pnf.relationship-list.relationship[$dpvidx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 4904,
+ "y": 1669,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "ad76d9b4.88b908",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4669,
+ "y": 1545,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "68f808b3.66b5"
+ ]
+ ]
+ },
+ {
+ "id": "dc8e8812.fdd648",
+ "type": "outcome",
+ "name": "network-resource",
+ "xml": "<outcome value='network-resource'>",
+ "comments": "",
+ "outputs": 1,
+ "x": 4492,
+ "y": 1553,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "ad76d9b4.88b908"
+ ]
+ ]
+ },
+ {
+ "id": "fad5035b.7ee3a8",
+ "type": "execute",
+ "name": "execute RestApiCallNode domainA UNI Coloring",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.ts-coloring-uni-port.templatefile`\" />\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.url + '/restconf/data/ietf-network:networks/network=' + $tmp.domainA.eth-network-id + '/node=' + $tmp.src.pnf-name + '/ietf-network-topology:termination-point=' + $tmp.src.ltpId + '/ietf-te-topology:te/ietf-optical-slice:tp-slice-id' `\" />\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"post\"/>\n<parameter name=\"responsePrefix\" value=\"otn-oof\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n<parameter name='customHttpHeaders' value=\"`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`\" />",
+ "comments": "",
+ "outputs": 1,
+ "x": 2425,
+ "y": 2807,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "bc31fb8e.e87f08",
+ "8c5d2dc9.bdb42"
+ ]
+ ]
+ },
+ {
+ "id": "8c5d2dc9.bdb42",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2691,
+ "y": 2787,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "536d6d82.f4f124"
+ ]
+ ]
+ },
+ {
+ "id": "bc31fb8e.e87f08",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2692.000213623047,
+ "y": 2837.99990940094,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "509489f1.58fe18"
+ ]
+ ]
+ },
+ {
+ "id": "536d6d82.f4f124",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing OOF api\" />\n",
+ "comments": "",
+ "x": 2831.0002479553223,
+ "y": 2787.0000009536743,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "509489f1.58fe18",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 2837.02725982666,
+ "y": 2835.745394706726,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "d037b0c3.f093c",
+ "type": "execute",
+ "name": "execute RestApiCallNode domainB UNI Coloring",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.ts-coloring-uni-port.templatefile`\" />\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainB.url + '/restconf/data/ietf-network:networks/network=' + $tmp.domainB.eth-network-id + '/node=' + $tmp.dst.pnf-name + '/ietf-network-topology:termination-point=' + $tmp.dst.ltpId + '/ietf-te-topology:te/ietf-optical-slice:tp-slice-id' `\" />\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainB.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainB.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"post\"/>\n<parameter name=\"responsePrefix\" value=\"otn-oof\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n<parameter name='customHttpHeaders' value=\"`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`\" />",
+ "comments": "",
+ "outputs": 1,
+ "x": 2425,
+ "y": 3173,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "8c8a801.d7272",
+ "b835a972.f48b7"
+ ]
+ ]
+ },
+ {
+ "id": "b835a972.f48b7",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2691,
+ "y": 3153,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "88a6a85e.9ed23"
+ ]
+ ]
+ },
+ {
+ "id": "8c8a801.d7272",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2692.000213623047,
+ "y": 3203.99990940094,
+ "z": "a52db008.999ba",
+ "wires": [
+ [
+ "7de5bd62.f4f62c"
+ ]
+ ]
+ },
+ {
+ "id": "88a6a85e.9ed23",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing OOF api\" />\n",
+ "comments": "",
+ "x": 2831.0002479553223,
+ "y": 3153.0000009536743,
+ "z": "a52db008.999ba",
+ "wires": []
+ },
+ {
+ "id": "7de5bd62.f4f62c",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 2837.02725982666,
+ "y": 3201.745394706726,
+ "z": "a52db008.999ba",
+ "wires": [
+ []
+ ]
+ }
+] \ No newline at end of file
diff --git a/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-deactivate.json b/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-deactivate.json
new file mode 100644
index 00000000..3584527b
--- /dev/null
+++ b/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-deactivate.json
@@ -0,0 +1,1000 @@
+[
+ {
+ "id": "fed3eb51.781ac8",
+ "type": "dgstart",
+ "name": "DGSTART",
+ "outputs": 1,
+ "x": 131,
+ "y": 81,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "d2a4ea36.881b68"
+ ]
+ ]
+ },
+ {
+ "id": "d2a4ea36.881b68",
+ "type": "service-logic",
+ "name": "GENERIC-RESOURCE-API ${project.version}",
+ "module": "GENERIC-RESOURCE-API",
+ "version": "${project.version}",
+ "comments": "",
+ "xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='GENERIC-RESOURCE-API' version='${project.version}'>",
+ "outputs": 1,
+ "x": 262.2856903076172,
+ "y": 130.23810863494873,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "7b1236d6.83c2c"
+ ]
+ ]
+ },
+ {
+ "id": "7b1236d6.83c2c",
+ "type": "method",
+ "name": "method tsli-vnf-topology-operation-trans-slice-deactivate",
+ "xml": "<method rpc='tsli-vnf-topology-operation-trans-slice-deactivate' mode='sync'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 265.4286193847656,
+ "y": 215.00003242492676,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "8228a949.234f38"
+ ]
+ ]
+ },
+ {
+ "id": "8228a949.234f38",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 415.238037109375,
+ "y": 344.6666564941406,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "341b32a3.25428e",
+ "1a6e5da0.98eb02",
+ "e5c8285b.2b695"
+ ]
+ ]
+ },
+ {
+ "id": "341b32a3.25428e",
+ "type": "returnSuccess",
+ "name": "return success",
+ "xml": "<return status='success'>\n<parameter name=\"ack-final-indicator\" value=\"Y\" />\n<parameter name=\"error-code\" value=\"200\" />\n<parameter name=\"error-message\" value=\"`$error-message`\" />\n",
+ "comments": "",
+ "x": 689.5716552734375,
+ "y": 611.59716796875,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "f743b3f1.72f9f",
+ "type": "comment",
+ "name": "new for TransportSlicing",
+ "info": "",
+ "comments": "",
+ "x": 721,
+ "y": 286,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "1a6e5da0.98eb02",
+ "type": "save",
+ "name": "get service-instance from aai",
+ "xml": "<!--<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" -->\n<!--\tresource=\"service-instance\"-->\n<!--\tkey='service-instance.service-instance-id = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.service-instance-id-->\n<!-- AND customer.global-customer-id = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.global-customer-id -->\n<!-- AND service-subscription.service-type = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.subscription-service-type'-->\n<!--\tlocal-only=\"false\"-->\n<!--\tforce=\"true\" pfx=\"tmp.aai.service-instance\">-->\n\n<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"service-instance\"\n\tkey='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id\n AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id \n AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type'\n\tlocal-only=\"false\"\n\tforce=\"true\" pfx=\"tmp.aai.service-instance\">\n\n\n<!--vnf-topology-operation-input.service-information.service-instance-id-->",
+ "comments": "",
+ "outputs": 1,
+ "x": 741,
+ "y": 382,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "2976ce78.f07a42",
+ "de3912b8.6d67e",
+ "77b5fc18.2082a4"
+ ]
+ ]
+ },
+ {
+ "id": "2976ce78.f07a42",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 960,
+ "y": 320,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "7ee13e19.7c1348"
+ ]
+ ]
+ },
+ {
+ "id": "de3912b8.6d67e",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 969.490966796875,
+ "y": 362.57403564453125,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "4a305009.90c32"
+ ]
+ ]
+ },
+ {
+ "id": "77b5fc18.2082a4",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 958,
+ "y": 409,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "cd4775e4.2da96"
+ ]
+ ]
+ },
+ {
+ "id": "4a305009.90c32",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 1123.0623779296875,
+ "y": 365.8597717285156,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "cd4775e4.2da96",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 1127,
+ "y": 410,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "7ee13e19.7c1348",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for index='rel-index' start='0' end='`$tmp.aai.service-instance.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1157,
+ "y": 316,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "bc03982b.15ba78"
+ ]
+ ]
+ },
+ {
+ "id": "bc03982b.15ba78",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.service-instance.relationship-list.relationship[$rel-index].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1380.33349609375,
+ "y": 315.99993896484375,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "aca4b74a.cb3118"
+ ]
+ ]
+ },
+ {
+ "id": "aca4b74a.cb3118",
+ "type": "outcome",
+ "name": "connectivity",
+ "xml": "<outcome value='connectivity'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1581.0001335144043,
+ "y": 317.00002098083496,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "2544f612.eeddca"
+ ]
+ ]
+ },
+ {
+ "id": "e5c8285b.2b695",
+ "type": "execute",
+ "name": "execute properties",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.prop.PropertiesNode' method='readProperties' >\n <parameter name='fileName' value='%SDNC_CONFIG_DIR%/generic-resource-api-dg.properties' />\n <parameter name='contextPrefix' value='prop' />",
+ "comments": "",
+ "outputs": 1,
+ "x": 707,
+ "y": 330,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "2544f612.eeddca",
+ "type": "save",
+ "name": "get connectivity from aai",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"connectivity\"\n\t key=\"connectivity.connectivity-id = $tmp.aai.service-instance.relationship-list.relationship[$rel-index].relationship-data[0].relationship-value\"\n\t\tlocal-only=\"false\" \n\t\tpfx=\"tmp.aai.connectivity\" >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1819,
+ "y": 319,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "75c7fde8.1d4a84",
+ "563ee44e.bd096c",
+ "bc425b5.1b1fba8"
+ ]
+ ]
+ },
+ {
+ "id": "75c7fde8.1d4a84",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2027,
+ "y": 283,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "e6a3b8f2.9e7b38"
+ ]
+ ]
+ },
+ {
+ "id": "563ee44e.bd096c",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2027.490966796875,
+ "y": 328.57403564453125,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "ad15182e.154a8"
+ ]
+ ]
+ },
+ {
+ "id": "bc425b5.1b1fba8",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2025,
+ "y": 372,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "8719a717.3cd9f8"
+ ]
+ ]
+ },
+ {
+ "id": "ad15182e.154a8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 2190.0623779296875,
+ "y": 328.8597717285156,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "8719a717.3cd9f8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 2194,
+ "y": 373,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "c776a79f.7f2db",
+ "type": "save",
+ "name": "get vpn-binding from aai",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"vpn-binding\"\n\t key=\"vpn-binding.vpn-id = $tmp.aai.connectivity.relationship-list.relationship[$cridx].relationship-data[0].relationship-value\"\n\t\tlocal-only=\"false\" \n\t\tpfx=\"tmp.aai.vpn-binding\" >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2500,
+ "y": 372,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "b403a898.9fbc18",
+ "5d1a47a8.0dfe7",
+ "f3733135.d8a078"
+ ]
+ ]
+ },
+ {
+ "id": "c765be65.0f488",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 2884,
+ "y": 372,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "e9922fb9.764098",
+ "eef29d57.4c4228",
+ "952ea8f1.7bda",
+ "14a01812.a7d138"
+ ]
+ ]
+ },
+ {
+ "id": "b403a898.9fbc18",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2711,
+ "y": 374,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "c765be65.0f488"
+ ]
+ ]
+ },
+ {
+ "id": "5d1a47a8.0dfe7",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2711.490966796875,
+ "y": 419.57403564453125,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "1295f1fa.69cac6"
+ ]
+ ]
+ },
+ {
+ "id": "f3733135.d8a078",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2709,
+ "y": 463,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "6ac7a77b.f5232"
+ ]
+ ]
+ },
+ {
+ "id": "6ac7a77b.f5232",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 2876,
+ "y": 462,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "1295f1fa.69cac6",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 2874.0623779296875,
+ "y": 419.8597717285156,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "e6a3b8f2.9e7b38",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='cridx' start='0' end='`$tmp.aai.connectivity.relationship-list.relationship_length`' >\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2228,
+ "y": 278,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "d8c7aa6c.9474d"
+ ]
+ ]
+ },
+ {
+ "id": "d8c7aa6c.9474d",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.connectivity.relationship-list.relationship[$cridx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2433,
+ "y": 278,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "6afd9b1f.24ad3c"
+ ]
+ ]
+ },
+ {
+ "id": "6afd9b1f.24ad3c",
+ "type": "outcome",
+ "name": "vpn-binding",
+ "xml": "<outcome value='vpn-binding'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2599,
+ "y": 278,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "489d615f.74d2b8"
+ ]
+ ]
+ },
+ {
+ "id": "489d615f.74d2b8",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 2762,
+ "y": 278,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "c776a79f.7f2db"
+ ]
+ ]
+ },
+ {
+ "id": "e9922fb9.764098",
+ "type": "set",
+ "name": "set pnf-name",
+ "xml": "<set>\n<parameter name='tmp.domain.pnf-name' value=\"`'networkId-providerId-' +\n $tmp.aai.vpn-binding.access-provider-id + '-clientId-' +\n $tmp.aai.vpn-binding.access-client-id + '-topologyId-' +\n $tmp.aai.vpn-binding.access-topology-id + '-nodeId-' +\n $tmp.aai.vpn-binding.src-access-node-id`\" />\n",
+ "comments": "",
+ "x": 3099,
+ "y": 82,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "eef29d57.4c4228",
+ "type": "get-resource",
+ "name": "get-resource src pnf",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"pnf\" \n\t\tkey=\"pnf.pnf-name = $tmp.domain.pnf-name\"\n pfx='tmp.aai.source-pnf' local-only='false' >\n\n <!--AND depth = '0'\"-->\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3125,
+ "y": 199,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "e1caf9b0.f16ef",
+ "8ba822ff.3c855",
+ "3e54396e.89bb66"
+ ]
+ ]
+ },
+ {
+ "id": "e1caf9b0.f16ef",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3320.5001220703125,
+ "y": 151,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "12b4a6a1.bdd529"
+ ]
+ ]
+ },
+ {
+ "id": "8ba822ff.3c855",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3312.5001220703125,
+ "y": 206,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "6aa3fcb.c3a6c84"
+ ]
+ ]
+ },
+ {
+ "id": "12b4a6a1.bdd529",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 3464.8824462890625,
+ "y": 150.65567016601562,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "8559d2a.befa2b"
+ ]
+ ]
+ },
+ {
+ "id": "8559d2a.befa2b",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='spvidx' start='0' end='`$tmp.aai.source-pnf.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3649,
+ "y": 149,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "a2c1ad39.50b17"
+ ]
+ ]
+ },
+ {
+ "id": "a2c1ad39.50b17",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3844,
+ "y": 149,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "f7ee255a.8640e"
+ ]
+ ]
+ },
+ {
+ "id": "3e54396e.89bb66",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3317.5001220703125,
+ "y": 263,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "ff13ab9d.2deb7"
+ ]
+ ]
+ },
+ {
+ "id": "ff13ab9d.2deb7",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 3469.5001220703125,
+ "y": 264,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "6aa3fcb.c3a6c84",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 3480.5001220703125,
+ "y": 207,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "d85cad49.e7fe3",
+ "type": "execute",
+ "name": "get esr-thirdparty-sdnc",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"esr-thirdparty-sdnc\" \n\t\tkey=\"esr-thirdparty-sdnc.thirdparty-sdnc-id = $tmp.domain.esr-thirdparty-id AND \n\t\t depth = '1'\"\n pfx='tmp.aai.domain.esr-thirdparty-sdnc' local-only='false' >",
+ "comments": "",
+ "outputs": 1,
+ "x": 4432,
+ "y": 166,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "5b32aba.7fc39d4",
+ "43d71291.c727fc",
+ "6b05861c.156668"
+ ]
+ ]
+ },
+ {
+ "id": "98badb93.a08c9",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4226,
+ "y": 153,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "48966cee.55dba4",
+ "d85cad49.e7fe3",
+ "ee878ee.4f8847"
+ ]
+ ]
+ },
+ {
+ "id": "48966cee.55dba4",
+ "type": "set",
+ "name": "set esr-thirdparty-sdnc domain id",
+ "xml": "<set>\n<parameter name='tmp.domain.esr-thirdparty-id' value=\"`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 4462,
+ "y": 114,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "5b32aba.7fc39d4",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4642,
+ "y": 157,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "20fc8e76.a69222"
+ ]
+ ]
+ },
+ {
+ "id": "43d71291.c727fc",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4634,
+ "y": 212,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "51e97aab.2d7044"
+ ]
+ ]
+ },
+ {
+ "id": "6b05861c.156668",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4639,
+ "y": 269,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "ef0b1a78.fffea8"
+ ]
+ ]
+ },
+ {
+ "id": "ef0b1a78.fffea8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 4791,
+ "y": 270,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "51e97aab.2d7044",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 4802,
+ "y": 215,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "20fc8e76.a69222",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 4786.38232421875,
+ "y": 154.65567016601562,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "a8dfc05f.e2f018"
+ ]
+ ]
+ },
+ {
+ "id": "f7ee255a.8640e",
+ "type": "outcome",
+ "name": "esr-thirdparty-sdnc",
+ "xml": "<outcome value='esr-thirdparty-sdnc'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4047,
+ "y": 153,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "98badb93.a08c9"
+ ]
+ ]
+ },
+ {
+ "id": "a8dfc05f.e2f018",
+ "type": "set",
+ "name": "set controller domain data",
+ "xml": "<set>\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domain.url' value=\"`$tmp.aai.domain.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].service-url`\" />\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domain.user' value=\"`$tmp.aai.domain.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].user-name`\" />\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domain.password' value=\"`$tmp.aai.domain.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].password`\" />\n\n\n<!--<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >-->\n<!--<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`\" />-->\n<!--<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.user`\" />-->\n<!--<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.password`\" />-->\n<!--<parameter name=\"format\" value=\"json\"/>-->\n<!--<parameter name=\"httpMethod\" value=\"get\"/>-->\n<!--<parameter name=\"responsePrefix\" value=\"topology\"/>-->\n<!--<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>-->\n<!--<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>-->\n<!--<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>-->\n<!--<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>-->\n",
+ "comments": "",
+ "x": 5001,
+ "y": 151,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "ee878ee.4f8847",
+ "type": "break",
+ "name": "break",
+ "xml": "<break>\n",
+ "comments": "",
+ "x": 4382,
+ "y": 230,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "952ea8f1.7bda",
+ "type": "execute",
+ "name": "execute RestApiCallNode Delete ethernet Service without token",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domain.url + '/restconf/data/ietf-eth-tran-service:etht-svc/eth-svc-instances=' + $tmp.aai.connectivity.connectivity-id`\" />\n<!--<parameter name=\"restapiUrl\" value=\"`$prop.restapi.connection-oof-url`\" />-->\n<!--<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/sotn-ethernet-service.json'`\" />-->\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domain.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domain.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"delete\"/>\n<parameter name='dirPath' value=\"/opt/onap/sdnc/restconfapi/yang\" />\n<parameter name=\"responsePrefix\" value=\"vpn-result\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3255,
+ "y": 594,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "d9dc02b.5b9308",
+ "f01b6c55.209f38"
+ ]
+ ]
+ },
+ {
+ "id": "d9dc02b.5b9308",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3601.5,
+ "y": 587,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "174c3f65.a9f0e1"
+ ]
+ ]
+ },
+ {
+ "id": "f01b6c55.209f38",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3605.5,
+ "y": 627,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "de16161.028de68"
+ ]
+ ]
+ },
+ {
+ "id": "de16161.028de68",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "comments": "",
+ "outputs": 1,
+ "x": 3763,
+ "y": 627,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "1a3ebd6b.2a7953",
+ "30c3e280.4d41f6"
+ ]
+ ]
+ },
+ {
+ "id": "174c3f65.a9f0e1",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing Create vpn rest api\" />\n",
+ "comments": "",
+ "x": 3759.5,
+ "y": 587,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "1a3ebd6b.2a7953",
+ "type": "save",
+ "name": "update vpn-binding A resource (aka. OTN domainA) in AAI",
+ "xml": "<update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding' \n key='vpn-binding.vpn-id = $tmp.aai.vpn-binding.vpn-id' >\n<parameter name='vpn-id' value='`$tmp.aai.vpn-binding.vpn-id`' />\n<parameter name='vpn-name' value='`$tmp.aai.vpn-binding.vpn-id`' />\n\n<parameter name='operational-status' value='Deactivated' />\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4091.5,
+ "y": 627,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "30c3e280.4d41f6",
+ "type": "save",
+ "name": "update connectivity resource in AAI",
+ "xml": "<update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='connectivity' \n key='connectivity.connectivity-id = $tmp.aai.connectivity.connectivity-id'>\n<parameter name='connectivity-id' value='`$tmp.aai.connectivity.connectivity-id`' />\n<parameter name='operational-status' value='Deactivated' />\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4018.5,
+ "y": 673,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "14a01812.a7d138",
+ "type": "execute",
+ "name": "execute RestApiCallNode Create OTN tunnel with token",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<!--<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.ts-otn-src-domain-creation.templatefile`\" />-->\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.url + '/restconf/data/ietf-te:te/tunnels/tunnel=' + $tmp.aai.vpn-binding.vpn-id`\" />\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domainA.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"delete\"/>\n<parameter name=\"responsePrefix\" value=\"otn-oof\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n<parameter name='customHttpHeaders' value=\"`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`\" />",
+ "comments": "",
+ "outputs": 1,
+ "x": 3228,
+ "y": 466,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "8e721e50.020db",
+ "8f6c71d1.f7e258"
+ ]
+ ]
+ },
+ {
+ "id": "8e721e50.020db",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3560.5,
+ "y": 436,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "b94a74e8.509ec"
+ ]
+ ]
+ },
+ {
+ "id": "8f6c71d1.f7e258",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3565.5,
+ "y": 501,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ [
+ "e36acb2.364b538"
+ ]
+ ]
+ },
+ {
+ "id": "b94a74e8.509ec",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing Create vpn rest api\" />\n",
+ "comments": "",
+ "x": 3736.5,
+ "y": 436,
+ "z": "fdc94a5e.7c86f8",
+ "wires": []
+ },
+ {
+ "id": "e36acb2.364b538",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "comments": "",
+ "outputs": 1,
+ "x": 3732,
+ "y": 501,
+ "z": "fdc94a5e.7c86f8",
+ "wires": [
+ []
+ ]
+ }
+] \ No newline at end of file
diff --git a/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-delete.json b/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-delete.json
new file mode 100644
index 00000000..4e31cf5d
--- /dev/null
+++ b/platform-logic/generic-resource-api/src/main/json/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-delete.json
@@ -0,0 +1,1011 @@
+[
+ {
+ "id": "9067dc50.e26888",
+ "type": "dgstart",
+ "name": "DGSTART",
+ "outputs": 1,
+ "x": 130,
+ "y": 78,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "51326c57.b5118c"
+ ]
+ ]
+ },
+ {
+ "id": "51326c57.b5118c",
+ "type": "service-logic",
+ "name": "GENERIC-RESOURCE-API ${project.version}",
+ "module": "GENERIC-RESOURCE-API",
+ "version": "${project.version}",
+ "comments": "",
+ "xml": "<service-logic xmlns='http://www.onap.org/sdnc/svclogic' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='GENERIC-RESOURCE-API' version='${project.version}'>",
+ "outputs": 1,
+ "x": 261.2856903076172,
+ "y": 127.23810863494873,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "1a80b7c8.5e20d"
+ ]
+ ]
+ },
+ {
+ "id": "1a80b7c8.5e20d",
+ "type": "method",
+ "name": "method tsli-vnf-topology-operation-trans-slice-delete",
+ "xml": "<method rpc='tsli-vnf-topology-operation-trans-slice-delete' mode='sync'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 264.4286193847656,
+ "y": 212.00003242492676,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "727ca303.e92f14"
+ ]
+ ]
+ },
+ {
+ "id": "727ca303.e92f14",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 414.238037109375,
+ "y": 341.6666564941406,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "89ce3405.afdad8",
+ "f34628af.971e58",
+ "662b7b8b.c02da4"
+ ]
+ ]
+ },
+ {
+ "id": "89ce3405.afdad8",
+ "type": "returnSuccess",
+ "name": "return success",
+ "xml": "<return status='success'>\n<parameter name=\"ack-final-indicator\" value=\"Y\" />\n<parameter name=\"error-code\" value=\"200\" />\n<parameter name=\"error-message\" value=\"`$error-message`\" />\n",
+ "comments": "",
+ "x": 710.5716552734375,
+ "y": 618.59716796875,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "7661af19.3745a8",
+ "type": "comment",
+ "name": "new for TransportSlicing",
+ "info": "",
+ "comments": "",
+ "x": 742,
+ "y": 293,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "f34628af.971e58",
+ "type": "save",
+ "name": "get service-instance from aai",
+ "xml": "<!--<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" -->\n<!--\tresource=\"service-instance\"-->\n<!--\tkey='service-instance.service-instance-id = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.service-instance-id-->\n<!-- AND customer.global-customer-id = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.global-customer-id -->\n<!-- AND service-subscription.service-type = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.subscription-service-type'-->\n<!--\tlocal-only=\"false\"-->\n<!--\tforce=\"true\" pfx=\"tmp.aai.service-instance\">-->\n \n\n<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"service-instance\"\n\tkey='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id\n AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id \n AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type'\n\tlocal-only=\"false\"\n\tforce=\"true\" pfx=\"tmp.aai.service-instance\">\n\n\n<!--vnf-topology-operation-input.service-information.service-instance-id-->",
+ "comments": "",
+ "outputs": 1,
+ "x": 762,
+ "y": 389,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "f2d7e1a3.9c55b8",
+ "893eca26.41fe2",
+ "67ceb9a8.a14aa8"
+ ]
+ ]
+ },
+ {
+ "id": "f2d7e1a3.9c55b8",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 981,
+ "y": 327,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "6a81e2af.afefb4"
+ ]
+ ]
+ },
+ {
+ "id": "893eca26.41fe2",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 990.490966796875,
+ "y": 369.57403564453125,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "adcdedad.e4cfa8"
+ ]
+ ]
+ },
+ {
+ "id": "67ceb9a8.a14aa8",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 979,
+ "y": 416,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "51f8ebc0.b96fdc"
+ ]
+ ]
+ },
+ {
+ "id": "adcdedad.e4cfa8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 1144.0623779296875,
+ "y": 372.8597717285156,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "51f8ebc0.b96fdc",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 1148,
+ "y": 417,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "6a81e2af.afefb4",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for index='rel-index' start='0' end='`$tmp.aai.service-instance.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1178,
+ "y": 323,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "37d91278.b2e28e"
+ ]
+ ]
+ },
+ {
+ "id": "37d91278.b2e28e",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.service-instance.relationship-list.relationship[$rel-index].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1401.33349609375,
+ "y": 322.99993896484375,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "63dc2a73.eea004"
+ ]
+ ]
+ },
+ {
+ "id": "63dc2a73.eea004",
+ "type": "outcome",
+ "name": "connectivity",
+ "xml": "<outcome value='connectivity'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1602.0001335144043,
+ "y": 324.00002098083496,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "3bc5d31f.4eff1c"
+ ]
+ ]
+ },
+ {
+ "id": "662b7b8b.c02da4",
+ "type": "execute",
+ "name": "execute properties",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.prop.PropertiesNode' method='readProperties' >\n <parameter name='fileName' value='%SDNC_CONFIG_DIR%/generic-resource-api-dg.properties' />\n <parameter name='contextPrefix' value='prop' />",
+ "comments": "",
+ "outputs": 1,
+ "x": 728,
+ "y": 337,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "3bc5d31f.4eff1c",
+ "type": "save",
+ "name": "get connectivity from aai",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"connectivity\"\n\t key=\"connectivity.connectivity-id = $tmp.aai.service-instance.relationship-list.relationship[$rel-index].relationship-data[0].relationship-value\"\n\t\tlocal-only=\"false\" \n\t\tpfx=\"tmp.aai.connectivity\" >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 1840,
+ "y": 326,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "f9ddca30.13fc18",
+ "2e83e20a.a4c64e",
+ "bbb85f3b.347968"
+ ]
+ ]
+ },
+ {
+ "id": "f9ddca30.13fc18",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2048,
+ "y": 290,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "7f6304c6.68b434"
+ ]
+ ]
+ },
+ {
+ "id": "2e83e20a.a4c64e",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2048.490966796875,
+ "y": 335.57403564453125,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "848ced52.aed45"
+ ]
+ ]
+ },
+ {
+ "id": "bbb85f3b.347968",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2046,
+ "y": 379,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "67746d9a.bb8fac"
+ ]
+ ]
+ },
+ {
+ "id": "848ced52.aed45",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 2211.0623779296875,
+ "y": 335.8597717285156,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "67746d9a.bb8fac",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 2215,
+ "y": 380,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "a1788c2.5cbcc7",
+ "type": "save",
+ "name": "get vpn-binding from aai",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\tresource=\"vpn-binding\"\n\t key=\"vpn-binding.vpn-id = $tmp.aai.connectivity.relationship-list.relationship[$cridx].relationship-data[0].relationship-value\"\n\t\tlocal-only=\"false\" \n\t\tpfx=\"tmp.aai.vpn-binding\" >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2521,
+ "y": 379,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "ff5b5708.803718",
+ "2b7ab4e7.4996c4",
+ "8f3a9f9c.feba08"
+ ]
+ ]
+ },
+ {
+ "id": "66c494d6.d131ec",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 2905,
+ "y": 379,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "4df4ccfd.828a9c",
+ "cc810976.1e78e",
+ "6804b3fb.447a5c",
+ "1114cd30.8fbe33",
+ "77014142.ee291",
+ "eea604e.273be78",
+ "c7f4c6b5.89c68"
+ ]
+ ]
+ },
+ {
+ "id": "ff5b5708.803718",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2732,
+ "y": 381,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "66c494d6.d131ec"
+ ]
+ ]
+ },
+ {
+ "id": "2b7ab4e7.4996c4",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2732.490966796875,
+ "y": 426.57403564453125,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "71b7f260.a02afc"
+ ]
+ ]
+ },
+ {
+ "id": "8f3a9f9c.feba08",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2730,
+ "y": 470,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "f1455dfe.4b515"
+ ]
+ ]
+ },
+ {
+ "id": "f1455dfe.4b515",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n<parameter name='error-code' value='' />\n<parameter name='error-message' value='' />\n",
+ "comments": "",
+ "x": 2897,
+ "y": 469,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "71b7f260.a02afc",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`\" />\n\n",
+ "comments": "",
+ "x": 2895.0623779296875,
+ "y": 426.8597717285156,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "7f6304c6.68b434",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='cridx' start='0' end='`$tmp.aai.connectivity.relationship-list.relationship_length`' >\n\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2249,
+ "y": 285,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "df01a5ae.6dc3e8"
+ ]
+ ]
+ },
+ {
+ "id": "df01a5ae.6dc3e8",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.connectivity.relationship-list.relationship[$cridx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2454,
+ "y": 285,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "3c18e8d0.67c0b"
+ ]
+ ]
+ },
+ {
+ "id": "3c18e8d0.67c0b",
+ "type": "outcome",
+ "name": "vpn-binding",
+ "xml": "<outcome value='vpn-binding'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 2620,
+ "y": 285,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "2564f00.0bbdd9"
+ ]
+ ]
+ },
+ {
+ "id": "2564f00.0bbdd9",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 2783,
+ "y": 285,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "a1788c2.5cbcc7"
+ ]
+ ]
+ },
+ {
+ "id": "4df4ccfd.828a9c",
+ "type": "set",
+ "name": "set pnf-name",
+ "xml": "<set>\n<parameter name='tmp.domain.pnf-name' value=\"`'networkId-providerId-' +\n $tmp.aai.vpn-binding.access-provider-id + '-clientId-' +\n $tmp.aai.vpn-binding.access-client-id + '-topologyId-' +\n $tmp.aai.vpn-binding.access-topology-id + '-nodeId-' +\n $tmp.aai.vpn-binding.src-access-node-id`\" />\n",
+ "comments": "",
+ "x": 3120,
+ "y": 89,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "cc810976.1e78e",
+ "type": "get-resource",
+ "name": "get-resource src pnf",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"pnf\" \n\t\tkey=\"pnf.pnf-name = $tmp.domain.pnf-name\"\n pfx='tmp.aai.source-pnf' local-only='false' >\n\n <!--AND depth = '0'\"-->\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3146,
+ "y": 206,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "fbb5125b.955718",
+ "693af83c.f3ea18",
+ "2473f4a.835008c"
+ ]
+ ]
+ },
+ {
+ "id": "fbb5125b.955718",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3341.5001220703125,
+ "y": 158,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "9a9b433a.0ee84"
+ ]
+ ]
+ },
+ {
+ "id": "693af83c.f3ea18",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3333.5001220703125,
+ "y": 213,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "3249d5d1.aac972"
+ ]
+ ]
+ },
+ {
+ "id": "9a9b433a.0ee84",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 3485.8824462890625,
+ "y": 157.65567016601562,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "4c1ac004.69f11"
+ ]
+ ]
+ },
+ {
+ "id": "4c1ac004.69f11",
+ "type": "for",
+ "name": "for each relationship",
+ "xml": "<for silentFailure='true' index='spvidx' start='0' end='`$tmp.aai.source-pnf.relationship-list.relationship_length`' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3670,
+ "y": 156,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "4cdbe422.34f9d4"
+ ]
+ ]
+ },
+ {
+ "id": "4cdbe422.34f9d4",
+ "type": "switchNode",
+ "name": "switch related-to",
+ "xml": "<switch test='`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].related-to`'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3865,
+ "y": 156,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "9761202f.b6a0b"
+ ]
+ ]
+ },
+ {
+ "id": "2473f4a.835008c",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3338.5001220703125,
+ "y": 270,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "aacead6d.fefcb8"
+ ]
+ ]
+ },
+ {
+ "id": "aacead6d.fefcb8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 3490.5001220703125,
+ "y": 271,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "3249d5d1.aac972",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 3501.5001220703125,
+ "y": 214,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "4c67262e.3701a8",
+ "type": "execute",
+ "name": "get esr-thirdparty-sdnc",
+ "xml": "<get-resource plugin=\"org.onap.ccsdk.sli.adaptors.aai.AAIService\" \n\t\tresource=\"esr-thirdparty-sdnc\" \n\t\tkey=\"esr-thirdparty-sdnc.thirdparty-sdnc-id = $tmp.domain.esr-thirdparty-id AND \n\t\t depth = '1'\"\n pfx='tmp.aai.domain.esr-thirdparty-sdnc' local-only='false' >",
+ "comments": "",
+ "outputs": 1,
+ "x": 4453,
+ "y": 173,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "906ef06e.7739a8",
+ "cb4dc0cc.5ae2c",
+ "8ceaa5d5.dc9b88"
+ ]
+ ]
+ },
+ {
+ "id": "12825971.5566ff",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "outputs": 1,
+ "x": 4247,
+ "y": 160,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "dddd5795.4cbcd",
+ "4c67262e.3701a8",
+ "459c85bd.d88044"
+ ]
+ ]
+ },
+ {
+ "id": "dddd5795.4cbcd",
+ "type": "set",
+ "name": "set esr-thirdparty-sdnc domain id",
+ "xml": "<set>\n<parameter name='tmp.domain.esr-thirdparty-id' value=\"`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].relationship-data[0].relationship-value`\" />\n",
+ "comments": "",
+ "x": 4483,
+ "y": 121,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "906ef06e.7739a8",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4663,
+ "y": 164,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "97b50ccf.b69cd8"
+ ]
+ ]
+ },
+ {
+ "id": "cb4dc0cc.5ae2c",
+ "type": "not-found",
+ "name": "not-found",
+ "xml": "<outcome value='not-found'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4655,
+ "y": 219,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "34cf9d59.f69aea"
+ ]
+ ]
+ },
+ {
+ "id": "8ceaa5d5.dc9b88",
+ "type": "other",
+ "name": "other",
+ "xml": "<outcome value='Other'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4660,
+ "y": 276,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "6573a76f.8f9128"
+ ]
+ ]
+ },
+ {
+ "id": "6573a76f.8f9128",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 4812,
+ "y": 277,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "34cf9d59.f69aea",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`\" />\n\n",
+ "comments": "",
+ "x": 4823,
+ "y": 222,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "97b50ccf.b69cd8",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 4807.38232421875,
+ "y": 161.65567016601562,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "e66f9d95.0b353"
+ ]
+ ]
+ },
+ {
+ "id": "9761202f.b6a0b",
+ "type": "outcome",
+ "name": "esr-thirdparty-sdnc",
+ "xml": "<outcome value='esr-thirdparty-sdnc'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 4068,
+ "y": 160,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "12825971.5566ff"
+ ]
+ ]
+ },
+ {
+ "id": "e66f9d95.0b353",
+ "type": "set",
+ "name": "set controller domain data",
+ "xml": "<set>\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domain.url' value=\"`$tmp.aai.domain.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].service-url`\" />\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domain.user' value=\"`$tmp.aai.domain.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].user-name`\" />\n<parameter name='prop.sdncRestApi.thirdpartySdnc.domain.password' value=\"`$tmp.aai.domain.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].password`\" />\n\n\n<!--<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >-->\n<!--<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`\" />-->\n<!--<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.user`\" />-->\n<!--<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.password`\" />-->\n<!--<parameter name=\"format\" value=\"json\"/>-->\n<!--<parameter name=\"httpMethod\" value=\"get\"/>-->\n<!--<parameter name=\"responsePrefix\" value=\"topology\"/>-->\n<!--<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>-->\n<!--<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>-->\n<!--<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>-->\n<!--<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>-->\n",
+ "comments": "",
+ "x": 5022,
+ "y": 158,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "459c85bd.d88044",
+ "type": "break",
+ "name": "break",
+ "xml": "<break>\n",
+ "comments": "",
+ "x": 4403,
+ "y": 237,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "1114cd30.8fbe33",
+ "type": "execute",
+ "name": "execute RestApiCallNode Delete transport slice without token",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.transport-slice-creation.templatefile`\" />\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domain.url + '/restconf/operations/ietf-optical-slice:deallocate-optical-slice'`\" />\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domain.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domain.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"delete\"/>\n<parameter name=\"responsePrefix\" value=\"otn-oof\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n<parameter name='customHttpHeaders' value=\"`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`\" />\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3270,
+ "y": 504,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "aa415b48.c51fe8",
+ "f0d3a65b.427ad8"
+ ]
+ ]
+ },
+ {
+ "id": "aa415b48.c51fe8",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3613.5,
+ "y": 499,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "c60de7c9.d4f7f8"
+ ]
+ ]
+ },
+ {
+ "id": "f0d3a65b.427ad8",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3617.5,
+ "y": 539,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "a329dc5b.ef894"
+ ]
+ ]
+ },
+ {
+ "id": "a329dc5b.ef894",
+ "type": "block",
+ "name": "block : atomic",
+ "xml": "<block atomic=\"true\">",
+ "atomic": "true",
+ "comments": "",
+ "outputs": 1,
+ "x": 3775,
+ "y": 539,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "c60de7c9.d4f7f8",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing Create vpn rest api\" />\n",
+ "comments": "",
+ "x": 3771.5,
+ "y": 499,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "6804b3fb.447a5c",
+ "type": "set",
+ "name": "set attachment_param for TN NSSSI deleteion in PNC",
+ "xml": "<set>\n<parameter name='slice-instance-id' value='`$tmp.aai.service-instance.service-instance-id`' />\n\n",
+ "comments": "",
+ "x": 3246,
+ "y": 379,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "77014142.ee291",
+ "type": "save",
+ "name": "delete connectivity resource in AAI",
+ "xml": "<delete plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='connectivity' \n key='connectivity.connectivity-id = $tmp.aai.connectivity.connectivity-id'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3176,
+ "y": 814,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "eea604e.273be78",
+ "type": "save",
+ "name": "delete vpn-binding resource in AAI",
+ "xml": "<delete plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding' \n key='vpn-binding.vpn-id = $tmp.aai.vpn-binding.vpn-id' >\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3172,
+ "y": 858,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ []
+ ]
+ },
+ {
+ "id": "c7f4c6b5.89c68",
+ "type": "execute",
+ "name": "execute RestApiCallNode domain UNI deColoring",
+ "xml": "<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >\n<!--<parameter name=\"templateFileName\" value=\"`$prop.restapi.templateDir + '/' + $prop.restapi.ts-coloring-uni-port.templatefile`\" />-->\n<parameter name=\"restapiUrl\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domain.url + '/restconf/data/ietf-network:networks/network=networkId-providerId-' + $tmp.aai.connectivity.access-provider-id + '-clientId-' + $tmp.aai.connectivity.access-client-id + '-topologyId-' + $tmp.aai.connectivity.access-topology-id + '/node=' + $tmp.aai.connectivity.access-node-id + '/ietf-network-topology:termination-point=' + $tmp.aai.connectivity.access-ltp-id + '/ietf-te-topology:te/ietf-optical-slice:tp-slice-id' `\" />\n<parameter name=\"restapiUser\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domain.user`\" />\n<parameter name=\"restapiPassword\" value=\"`$prop.sdncRestApi.thirdpartySdnc.domain.password`\" />\n<parameter name=\"format\" value=\"json\"/>\n<parameter name=\"httpMethod\" value=\"delete\"/>\n<parameter name=\"responsePrefix\" value=\"otn-oof\"/>\n<parameter name=\"trustStoreFileName\" value=\"/opt/onap/sdnc/data/stores/truststore.onap.client.jks\"/>\n<parameter name=\"trustStorePassword\" value=\"adminadmin\"/>\n<parameter name=\"keyStoreFileName\" value=\"/opt/onap/sdnc/data/stores/sdnc.p12\"/>\n<parameter name=\"keyStorePassword\" value=\"adminadmin\"/>\n<parameter name='customHttpHeaders' value=\"`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`\" />\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3233,
+ "y": 677,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "e6edfa38.71c268",
+ "137ffb3e.b1daa5"
+ ]
+ ]
+ },
+ {
+ "id": "137ffb3e.b1daa5",
+ "type": "failure",
+ "name": "failure",
+ "xml": "<outcome value='failure'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3499,
+ "y": 657,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "7548726d.c6844c"
+ ]
+ ]
+ },
+ {
+ "id": "e6edfa38.71c268",
+ "type": "success",
+ "name": "success",
+ "xml": "<outcome value='success'>\n",
+ "comments": "",
+ "outputs": 1,
+ "x": 3500.000213623047,
+ "y": 707.9999094009399,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ [
+ "67229e1a.f4d798"
+ ]
+ ]
+ },
+ {
+ "id": "7548726d.c6844c",
+ "type": "returnFailure",
+ "name": "return failure",
+ "xml": "<return status='failure'>\n\t<parameter name='ack-final' value='Y'/>\n\t<parameter name=\"error-code\" value=\"500\" />\n <parameter name=\"error-message\" value=\"Error executing OOF api\" />\n",
+ "comments": "",
+ "x": 3639.0002479553223,
+ "y": 657.0000009536743,
+ "z": "65374df1.8a48d4",
+ "wires": []
+ },
+ {
+ "id": "67229e1a.f4d798",
+ "type": "block",
+ "name": "block",
+ "xml": "<block>\n",
+ "atomic": "false",
+ "comments": "",
+ "outputs": 1,
+ "x": 3645.02725982666,
+ "y": 705.7453947067261,
+ "z": "65374df1.8a48d4",
+ "wires": [
+ []
+ ]
+ }
+] \ No newline at end of file
diff --git a/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof.xml b/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof.xml
new file mode 100644
index 00000000..e1b76faf
--- /dev/null
+++ b/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof.xml
@@ -0,0 +1,333 @@
+<service-logic
+ xmlns='http://www.onap.org/sdnc/svclogic'
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='GENERIC-RESOURCE-API' version='${project.version}'>
+ <method rpc='tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof' mode='sync'>
+ <block atomic="true">
+ <execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >
+ <parameter name="templateFileName" value="`$prop.restapi.templateDir + '/' + $prop.restapi.oof-getpath.templatefile`" />
+ <parameter name="restapiUrl" value="`$prop.restapi.connection-oof-url`" />
+ <parameter name="restapiUser" value="`$prop.oof.user`" />
+ <parameter name="restapiPassword" value="`$prop.oof.password`" />
+ <parameter name="format" value="json"/>
+ <parameter name="httpMethod" value="post"/>
+ <parameter name="responsePrefix" value="otn-oof"/>
+ <parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>
+ <parameter name="trustStorePassword" value="adminadmin"/>
+ <parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>
+ <parameter name="keyStorePassword" value="adminadmin"/>
+ <parameter name='customHttpHeaders' value="`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`" />
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="Error executing OOF api" />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block></block>
+ </outcome>
+ </execute>
+ <for index='vidx' start='0' end='`$otn-oof.solutions_length`' >
+ <block atomic="true">
+ <set>
+ <parameter name='otn-oof.link-name' value='`$otn-oof.solutions[$vidx].link`' />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="logical-link"
+ key="logical-link.link-name = $otn-oof.link-name"
+ pfx='tmp.aai.cross-link' local-only='false' >
+ <!--AND depth = '0'"-->
+ <outcome value='success'>
+ <block>
+ <switch test='`$tmp.aai.cross-link.link-role`'>
+ <outcome value='cross-domain'>
+ <block atomic="true">
+ <for index='lridx' start='0' end='`$tmp.aai.cross-link.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.cross-link.relationship-list.relationship[$lridx].related-to`'>
+ <outcome value='p-interface'>
+ <block>
+ <set>
+ <parameter name='tmp.cross-link.src-ltpId' value="`$tmp.aai.cross-link.relationship-list.relationship[$lridx].relationship-data[1].relationship-value`" />
+ <parameter name='tmp.cross-link.dst-ltpId' value="`$tmp.aai.cross-link.relationship-list.relationship[$lridx + 1].relationship-data[1].relationship-value`" />
+ <parameter name='tmp.src-pnf-name' value="`$tmp.aai.cross-link.relationship-list.relationship[$lridx].relationship-data[0].relationship-value`" />
+ <parameter name='tmp.dst-pnf-name' value="`$tmp.aai.cross-link.relationship-list.relationship[$lridx + 1].relationship-data[0].relationship-value`" />
+ </set>
+ <break/>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="p-interface"
+ key="pnf.pnf-name = $tmp.src-pnf-name
+ AND p-interface.interface-name = $tmp.cross-link.src-ltpId"
+ pfx='tmp.aai.src-tp' local-only='false' >
+ <!--AND depth = '0'"-->
+ <outcome value='success'>
+ <block>
+ <for silentFailure='true' index='vidx' start='0' end='`$tmp.aai.src-tp.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.src-tp.relationship-list.relationship[$vidx].related-to`'>
+ <outcome value='tunnel-termination-point'>
+ <block atomic="true">
+ <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='split' >
+ <parameter name="original_string" value='`$tmp.aai.src-tp`'/>
+ <!--<parameter name="regex" value="[^-]+$"/>-->
+ <parameter name="regex" value="[-]+"/>
+ <parameter name="ctx_memory_result_key" value="param-prefix-src-tp"/>
+ <outcome value='success'>
+ <block atomic="true">
+ <set>
+ <parameter name='domain-A.ltpId' value='`$param-prefix-src-tp[$param-prefix-src-tp_length -1]`' />
+ </set>
+ </block>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value="An error occured while splitting sna1_route" />
+ </return>
+ </outcome>
+ </execute>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="pnf"
+ key="pnf.pnf-name = $tmp.src-pnf-name"
+ pfx='tmp.aai.src-pnf' local-only='false' >
+ <!--AND depth = '0'"-->
+ <outcome value='success'>
+ <block>
+ <set>
+ <parameter name='domain-A.node-id' value="`$tmp.aai.src-pnf.pnf-id`" />
+ <parameter name='domain-A.tpn' value='1' />
+ </set>
+ <for silentFailure='true' index='pvidx' start='0' end='`$tmp.aai.src-pnf.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.src-pnf.relationship-list.relationship[$pvidx].related-to`'>
+ <outcome value='network-resource'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.domain-A.network-id' value="`$tmp.aai.src-pnf.relationship-list.relationship[$pvidx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="network-resource"
+ key="network-resource.network-id = $tmp.domain-A.network-id
+ AND depth = '0'"
+ pfx='tmp.aai.src-network-resource' local-only='false' >
+ <outcome value='success'>
+ <set>
+ <parameter name='domain-A.network-id' value="`$tmp.aai.src-network-resource.network-id`" />
+ <parameter name='domain-A.provider-id' value="`$tmp.aai.src-network-resource.provider-id`" />
+ <parameter name='domain-A.client-id' value="`$tmp.aai.src-network-resource.client-id`" />
+ <parameter name='domain-A.te-topo-id' value="`$tmp.aai.src-network-resource.te-topo-id`" />
+ <parameter name='domain-A.network-type' value="`$tmp.aai.src-network-resource.network-type`" />
+ </set>
+ </outcome>
+ </get-resource>
+ <break/>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ <set>
+ <parameter name='tmp.domain-A.ttp-id' value="`$tmp.aai.src-tp.relationship-list.relationship[$vidx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="tunnel-termination-point"
+ key="tunnel-termination-point.ttp-id = $tmp.domain-A.ttp-id
+ AND depth = '0'"
+ pfx='tmp.aai.src-ttp' local-only='false' >
+ <outcome value='success'>
+ <block atomic="true">
+ <set>
+ <parameter name='domain-A.tunnel-tp-id' value="`$tmp.aai.src-ttp.tunnel-tp-id`" />
+ </set>
+ </block>
+ </outcome>
+ </get-resource>
+ <break/>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="p-interface"
+ key="pnf.pnf-name = $tmp.dst-pnf-name
+ AND p-interface.interface-name = $tmp.cross-link.dst-ltpId"
+ pfx='tmp.aai.dst-tp' local-only='false' >
+ <!--AND depth = '0'"-->
+ <outcome value='success'>
+ <block>
+ <for silentFailure='true' index='vidx' start='0' end='`$tmp.aai.dst-tp.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.dst-tp.relationship-list.relationship[$vidx].related-to`'>
+ <outcome value='tunnel-termination-point'>
+ <block atomic="true">
+ <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='split' >
+ <parameter name="original_string" value='`$tmp.aai.dst-tp`'/>
+ <!--<parameter name="regex" value="[^-]+$"/>-->
+ <parameter name="regex" value="[-]+"/>
+ <parameter name="ctx_memory_result_key" value="param-prefix-dst-tp"/>
+ <outcome value='success'>
+ <block atomic="true">
+ <set>
+ <parameter name='domain-B.ltpId' value='`$param-prefix-dst-tp[$param-prefix-dst-tp_length -1]`' />
+ </set>
+ </block>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value="An error occured while splitting sna1_route" />
+ </return>
+ </outcome>
+ </execute>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="pnf"
+ key="pnf.pnf-name = $tmp.dst-pnf-name"
+ pfx='tmp.aai.dst-pnf' local-only='false' >
+ <!--AND depth = '0'"-->
+ <outcome value='success'>
+ <block>
+ <set>
+ <parameter name='domain-B.node-id' value="`$tmp.aai.dst-pnf.pnf-id`" />
+ <parameter name='domain-B.tpn' value='1' />
+ </set>
+ <for silentFailure='true' index='mvidx' start='0' end='`$tmp.aai.dst-pnf.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.dst-pnf.relationship-list.relationship[$mvidx].related-to`'>
+ <outcome value='network-resource'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.domain-B.network-id' value="`$tmp.aai.dst-pnf.relationship-list.relationship[$mvidx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="network-resource"
+ key="network-resource.network-id = $tmp.domain-B.network-id
+ AND depth = '0'"
+ pfx='tmp.aai.dst-network-resource' local-only='false' >
+ <outcome value='success'>
+ <set>
+ <parameter name='domain-B.network-id' value="`$tmp.aai.dst-network-resource.network-id`" />
+ <parameter name='domain-B.provider-id' value="`$tmp.aai.dst-network-resource.provider-id`" />
+ <parameter name='domain-B.client-id' value="`$tmp.aai.dst-network-resource.client-id`" />
+ <parameter name='domain-B.te-topo-id' value="`$tmp.aai.dst-network-resource.te-topo-id`" />
+ <parameter name='domain-B.network-type' value="`$tmp.aai.dst-network-resource.network-type`" />
+ </set>
+ </outcome>
+ </get-resource>
+ <break/>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ <set>
+ <parameter name='tmp.domain-B.ttp-id' value="`$tmp.aai.dst-tp.relationship-list.relationship[$vidx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="tunnel-termination-point"
+ key="tunnel-termination-point.ttp-id = $tmp.domain-B.ttp-id
+ AND depth = '0'"
+ pfx='tmp.aai.dst-ttp' local-only='false' >
+ <outcome value='success'>
+ <block atomic="true">
+ <set>
+ <parameter name='domain-B.tunnel-tp-id' value="`$tmp.aai.dst-ttp.tunnel-tp-id`" />
+ </set>
+ </block>
+ </outcome>
+ </get-resource>
+ <break/>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ <break/>
+ </block>
+ </outcome>
+ </switch>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ </block>
+ </for>
+ </block>
+ </method>
+</service-logic> \ No newline at end of file
diff --git a/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-activate.xml b/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-activate.xml
new file mode 100644
index 00000000..c3b48106
--- /dev/null
+++ b/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-activate.xml
@@ -0,0 +1,464 @@
+<service-logic
+ xmlns='http://www.onap.org/sdnc/svclogic'
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='GENERIC-RESOURCE-API' version='${project.version}'>
+ <method rpc='tsli-vnf-topology-operation-trans-slice-activate' mode='sync'>
+ <block atomic="true">
+ <execute plugin='org.onap.ccsdk.sli.plugins.prop.PropertiesNode' method='readProperties' >
+ <parameter name='fileName' value='%SDNC_CONFIG_DIR%/generic-resource-api-dg.properties' />
+ <parameter name='contextPrefix' value='prop' />
+ </execute>
+ <!--<get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService" -->
+ <!-- resource="service-instance"-->
+ <!-- key='service-instance.service-instance-id = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.service-instance-id-->
+ <!-- AND customer.global-customer-id = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.global-customer-id -->
+ <!-- AND service-subscription.service-type = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.subscription-service-type'-->
+ <!-- local-only="false"-->
+ <!-- force="true" pfx="tmp.aai.service-instance">-->
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="service-instance"
+ key='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id
+ AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id
+ AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type'
+ local-only="false"
+ force="true" pfx="tmp.aai.service-instance">
+ <!--$vnf-topology-operation-input.service-information.service-instance-id-->
+ <outcome value='success'>
+ <for index='rel-index' start='0' end='`$tmp.aai.service-instance.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.service-instance.relationship-list.relationship[$rel-index].related-to`'>
+ <outcome value='connectivity'>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="connectivity"
+ key="connectivity.connectivity-id = $tmp.aai.service-instance.relationship-list.relationship[$rel-index].relationship-data[0].relationship-value"
+ local-only="false"
+ pfx="tmp.aai.connectivity" >
+ <outcome value='success'>
+ <for silentFailure='true' index='cridx' start='0' end='`$tmp.aai.connectivity.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.connectivity.relationship-list.relationship[$cridx].related-to`'>
+ <outcome value='vpn-binding'>
+ <block atomic="true">
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="vpn-binding"
+ key="vpn-binding.vpn-id = $tmp.aai.connectivity.relationship-list.relationship[$cridx].relationship-data[0].relationship-value"
+ local-only="false"
+ pfx="tmp.aai.vpn-binding" >
+ <outcome value='success'>
+ <block atomic="true">
+ <switch test='`$tmp.aai.vpn-binding.dst-access-ltp-id`'>
+ <outcome value='Other'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.aai.vpn-bindingA.' value="`$tmp.aai.vpn-binding.`" />
+ <parameter name='tmp.aai.connectivityA.' value="`$tmp.aai.connectivity.`" />
+ </set>
+ <set>
+ <parameter name='src-node-id' value='`$tmp.aai.vpn-bindingA.src-access-node-id`' />
+ <parameter name='dst-node-id' value='`$tmp.aai.vpn-bindingA.dst-access-node-id`' />
+ <parameter name='dst-tpn-id' value='1' />
+ <parameter name='dst-ttp-id' value='`$tmp.aai.vpn-bindingA.dst-access-ltp-id`' />
+ <parameter name='slice-instance-id' value='`$tmp.aai.service-instance.service-instance-id`' />
+ <parameter name='otn-tunnel-name-src-domain' value='`$tmp.aai.vpn-bindingA.vpn-name`' />
+ <parameter name='client-id' value='`$tmp.aai.vpn-bindingA.access-client-id`' />
+ <parameter name='provider-id' value='`$tmp.aai.vpn-bindingA.access-provider-id`' />
+ <parameter name='topology-id' value='`$tmp.aai.vpn-bindingA.access-topology-id`' />
+ </set>
+ <set>
+ <parameter name='tmp.src.domainA.pnf-name' value="`'networkId-providerId-' +
+ $tmp.aai.vpn-bindingA.access-provider-id + '-clientId-' +
+ $tmp.aai.vpn-bindingA.access-client-id + '-topologyId-' +
+ $tmp.aai.vpn-bindingA.access-topology-id + '-nodeId-' +
+ $tmp.aai.vpn-bindingA.src-access-node-id`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="pnf"
+ key="pnf.pnf-name = $tmp.src.domainA.pnf-name"
+ pfx='tmp.aai.source-pnf' local-only='false' >
+ <!--AND depth = '0'"-->
+ <outcome value='success'>
+ <block>
+ <for silentFailure='true' index='spvidx' start='0' end='`$tmp.aai.source-pnf.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].related-to`'>
+ <outcome value='esr-thirdparty-sdnc'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.domainA.esr-thirdparty-id' value="`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="esr-thirdparty-sdnc"
+ key="esr-thirdparty-sdnc.thirdparty-sdnc-id = $tmp.domainA.esr-thirdparty-id AND
+ depth = '1'"
+ pfx='tmp.aai.domainA.esr-thirdparty-sdnc' local-only='false' >
+ <outcome value='success'>
+ <block>
+ <set>
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domainA.url' value="`$tmp.aai.domainA.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].service-url`" />
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domainA.user' value="`$tmp.aai.domainA.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].user-name`" />
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domainA.password' value="`$tmp.aai.domainA.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].password`" />
+ <!--<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >-->
+ <!--<parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`" />-->
+ <!--<parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.user`" />-->
+ <!--<parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.password`" />-->
+ <!--<parameter name="format" value="json"/>-->
+ <!--<parameter name="httpMethod" value="get"/>-->
+ <!--<parameter name="responsePrefix" value="topology"/>-->
+ <!--<parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>-->
+ <!--<parameter name="trustStorePassword" value="adminadmin"/>-->
+ <!--<parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>-->
+ <!--<parameter name="keyStorePassword" value="adminadmin"/>-->
+ </set>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ <execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >
+ <parameter name="templateFileName" value="`$prop.restapi.templateDir + '/' + $prop.restapi.ts-otn-src-domain-creation.templatefile`" />
+ <parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.url + '/restconf/data/ietf-te:te'`" />
+ <parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.user`" />
+ <parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.password`" />
+ <parameter name="format" value="json"/>
+ <parameter name="httpMethod" value="post"/>
+ <parameter name="responsePrefix" value="otn-oof"/>
+ <parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>
+ <parameter name="trustStorePassword" value="adminadmin"/>
+ <parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>
+ <parameter name="keyStorePassword" value="adminadmin"/>
+ <parameter name='customHttpHeaders' value="`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`" />
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="Error executing Create vpn rest api" />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block atomic="true"></block>
+ </outcome>
+ </execute>
+ <set>
+ <parameter name='eth-service-name' value='`$tmp.aai.connectivityA.connectivity-id`' />
+ <parameter name='provider-id' value='`$tmp.aai.connectivityA.access-provider-id`' />
+ <parameter name='client-id' value='`$tmp.aai.connectivityA.access-client-id`' />
+ <parameter name='topology-id' value='`$tmp.aai.connectivityA.access-topology-id`' />
+ <parameter name='otn-tunnel-name' value='`$tmp.aai.vpn-bindingA.vpn-name`' />
+ <parameter name='ethernet-end-point-name' value='`$tmp.aai.connectivityA.connectivity-id`' />
+ <parameter name='index-number' value='0' />
+ <parameter name='eth-node-id' value='`$tmp.aai.connectivityA.access-node-id`' />
+ <parameter name='eth-node-tp-id' value='`$tmp.aai.connectivityA.access-ltp-id`' />
+ </set>
+ <execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >
+ <parameter name="templateFileName" value="`$prop.restapi.templateDir + '/' + $prop.restapi.ts-ethernet-service.templatefile`" />
+ <parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.url + '/restconf/data/ietf-eth-tran-service:etht-svc'`" />
+ <!--<parameter name="restapiUrl" value="`$prop.restapi.connection-oof-url`" />-->
+ <parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.user`" />
+ <parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.password`" />
+ <parameter name="format" value="json"/>
+ <parameter name="httpMethod" value="post"/>
+ <parameter name='dirPath' value="/opt/onap/sdnc/restconfapi/yang" />
+ <parameter name="responsePrefix" value="vpn-result"/>
+ <parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>
+ <parameter name="trustStorePassword" value="adminadmin"/>
+ <parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>
+ <parameter name="keyStorePassword" value="adminadmin"/>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="Error executing Create vpn rest api" />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block atomic="true">
+ <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding'
+ key='vpn-binding.vpn-id = $tmp.aai.vpn-bindingA.vpn-id' >
+ <parameter name='vpn-id' value='`$tmp.aai.vpn-bindingA.vpn-id`' />
+ <parameter name='vpn-name' value='`$tmp.aai.vpn-bindingA.vpn-id`' />
+ <parameter name='operational-status' value='Activated' />
+ </update>
+ <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='connectivity'
+ key='connectivity.connectivity-id = $tmp.aai.connectivityA.connectivity-id'>
+ <parameter name='connectivity-id' value='`$tmp.aai.connectivityA.connectivity-id`' />
+ <parameter name='operational-status' value='Activated' />
+ </update>
+ </block>
+ </outcome>
+ </execute>
+ </block>
+ </outcome>
+ <outcome value=''>
+ <switch test='`$tmp.aai.vpn-binding.src-access-ltp-id`'>
+ <outcome value='Other'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.aai.vpn-bindingB.' value="`$tmp.aai.vpn-binding.`" />
+ <parameter name='tmp.aai.connectivityB.' value="`$tmp.aai.connectivity.`" />
+ </set>
+ <set>
+ <parameter name='src-node-id' value='`$tmp.aai.vpn-bindingB.src-access-node-id`' />
+ <parameter name='dst-node-id' value='`$tmp.aai.vpn-bindingB.dst-access-node-id`' />
+ <parameter name='src-tpn-id' value='1' />
+ <parameter name='src-ttp-id' value='`$tmp.aai.vpn-bindingB.src-access-ltp-id`' />
+ <parameter name='slice-instance-id' value='`$tmp.aai.service-instance.service-instance-id`' />
+ <parameter name='otn-tunnel-name-src-domain' value='`$tmp.aai.vpn-bindingB.vpn-name`' />
+ <parameter name='client-id' value='`$tmp.aai.vpn-bindingB.access-client-id`' />
+ <parameter name='provider-id' value='`$tmp.aai.vpn-bindingB.access-provider-id`' />
+ <parameter name='topology-id' value='`$tmp.aai.vpn-bindingB.access-topology-id`' />
+ </set>
+ <set>
+ <parameter name='tmp.dst.domainB.pnf-name' value="`'networkId-providerId-' +
+ $tmp.aai.vpn-bindingB.access-provider-id + '-clientId-' +
+ $tmp.aai.vpn-bindingB.access-client-id + '-topologyId-' +
+ $tmp.aai.vpn-bindingB.access-topology-id + '-nodeId-' +
+ $tmp.aai.vpn-bindingB.dst-access-node-id`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="pnf"
+ key="pnf.pnf-name = $tmp.dst.domainB.pnf-name"
+ pfx='tmp.aai.destination-pnf' local-only='false' >
+ <!--AND depth = '0'"-->
+ <outcome value='success'>
+ <block>
+ <for silentFailure='true' index='dpvidx' start='0' end='`$tmp.aai.destination-pnf.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.destination-pnf.relationship-list.relationship[$dpvidx].related-to`'>
+ <outcome value='esr-thirdparty-sdnc'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.domainB.esr-thirdparty-id' value="`$tmp.aai.destination-pnf.relationship-list.relationship[$dpvidx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="esr-thirdparty-sdnc"
+ key="esr-thirdparty-sdnc.thirdparty-sdnc-id = $tmp.domainB.esr-thirdparty-id AND
+ depth = '1'"
+ pfx='tmp.aai.domainB.esr-thirdparty-sdnc' local-only='false' >
+ <outcome value='success'>
+ <block>
+ <set>
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domainB.url' value="`$tmp.aai.domainB.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].service-url`" />
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domainB.user' value="`$tmp.aai.domainB.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].user-name`" />
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domainB.password' value="`$tmp.aai.domainB.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].password`" />
+ <!--<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >-->
+ <!--<parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`" />-->
+ <!--<parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.user`" />-->
+ <!--<parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.password`" />-->
+ <!--<parameter name="format" value="json"/>-->
+ <!--<parameter name="httpMethod" value="get"/>-->
+ <!--<parameter name="responsePrefix" value="topology"/>-->
+ <!--<parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>-->
+ <!--<parameter name="trustStorePassword" value="adminadmin"/>-->
+ <!--<parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>-->
+ <!--<parameter name="keyStorePassword" value="adminadmin"/>-->
+ </set>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ <execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >
+ <parameter name="templateFileName" value="`$prop.restapi.templateDir + '/' + $prop.restapi.ts-otn-dst-domain-creation.templatefile`" />
+ <parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.domainB.url + '/restconf/data/ietf-te:te'`" />
+ <parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.domainB.user`" />
+ <parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.domainB.password`" />
+ <parameter name="format" value="json"/>
+ <parameter name="httpMethod" value="post"/>
+ <parameter name="responsePrefix" value="otn-oof"/>
+ <parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>
+ <parameter name="trustStorePassword" value="adminadmin"/>
+ <parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>
+ <parameter name="keyStorePassword" value="adminadmin"/>
+ <parameter name='customHttpHeaders' value="`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`" />
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="Error executing Create vpn rest api" />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block atomic="true"></block>
+ </outcome>
+ </execute>
+ <set>
+ <parameter name='eth-service-name' value='`$tmp.aai.connectivityB.connectivity-id`' />
+ <parameter name='provider-id' value='`$tmp.aai.connectivityB.access-provider-id`' />
+ <parameter name='client-id' value='`$tmp.aai.connectivityB.access-client-id`' />
+ <parameter name='topology-id' value='`$tmp.aai.connectivityB.access-topology-id`' />
+ <parameter name='otn-tunnel-name' value='`$tmp.aai.vpn-bindingB.vpn-name`' />
+ <parameter name='ethernet-end-point-name' value='`$tmp.aai.connectivityB.connectivity-id`' />
+ <parameter name='index-number' value='0' />
+ <parameter name='eth-node-id' value='`$tmp.aai.connectivityB.access-node-id`' />
+ <parameter name='eth-node-tp-id' value='`$tmp.aai.connectivityB.access-ltp-id`' />
+ </set>
+ <execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >
+ <parameter name="templateFileName" value="`$prop.restapi.templateDir + '/' + $prop.restapi.ts-ethernet-service.templatefile`" />
+ <parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.domainB.url + '/restconf/data/ietf-eth-tran-service:etht-svc'`" />
+ <!--<parameter name="restapiUrl" value="`$prop.restapi.connection-oof-url`" />-->
+ <parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.domainB.user`" />
+ <parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.domainB.password`" />
+ <parameter name="format" value="json"/>
+ <parameter name="httpMethod" value="patch"/>
+ <parameter name='dirPath' value="/opt/onap/sdnc/restconfapi/yang" />
+ <parameter name="responsePrefix" value="vpn-result"/>
+ <parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>
+ <parameter name="trustStorePassword" value="adminadmin"/>
+ <parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>
+ <parameter name="keyStorePassword" value="adminadmin"/>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="Error executing Create vpn rest api" />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block atomic="true">
+ <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding'
+ key='vpn-binding.vpn-id = $tmp.aai.vpn-bindingB.vpn-id' >
+ <parameter name='vpn-id' value='`$tmp.aai.vpn-bindingB.vpn-id`' />
+ <parameter name='vpn-name' value='`$tmp.aai.vpn-bindingB.vpn-id`' />
+ <parameter name='operational-status' value='Activated' />
+ </update>
+ <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='connectivity'
+ key='connectivity.connectivity-id = $tmp.aai.connectivityB.connectivity-id'>
+ <parameter name='connectivity-id' value='`$tmp.aai.connectivityB.connectivity-id`' />
+ <parameter name='operational-status' value='Activated' />
+ </update>
+ </block>
+ </outcome>
+ </execute>
+ </block>
+ </outcome>
+ <outcome value=''>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ </switch>
+ </outcome>
+ </switch>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ </get-resource>
+ </outcome>
+ </switch>
+ </for>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ </get-resource>
+ <return status='success'>
+ <parameter name="ack-final-indicator" value="Y" />
+ <parameter name="error-code" value="200" />
+ <parameter name="error-message" value="`$error-message`" />
+ </return>
+ </block>
+ </method>
+</service-logic> \ No newline at end of file
diff --git a/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-allocate.xml b/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-allocate.xml
new file mode 100644
index 00000000..33e7facb
--- /dev/null
+++ b/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-allocate.xml
@@ -0,0 +1,923 @@
+<service-logic
+ xmlns='http://www.onap.org/sdnc/svclogic'
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='GENERIC-RESOURCE-API' version='${project.version}'>
+ <method rpc='tsli-vnf-topology-operation-trans-slice-allocate' mode='sync'>
+ <block atomic="true">
+ <execute plugin='org.onap.ccsdk.sli.plugins.prop.PropertiesNode' method='readProperties' >
+ <parameter name='fileName' value='%SDNC_CONFIG_DIR%/generic-resource-api-dg.properties' />
+ <parameter name='contextPrefix' value='prop' />
+ </execute>
+ <!--<get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService" -->
+ <!-- resource="service-instance"-->
+ <!-- key='service-instance.service-instance-id = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.service-instance-id-->
+ <!-- AND customer.global-customer-id = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.global-customer-id -->
+ <!-- AND service-subscription.service-type = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.subscription-service-type'-->
+ <!-- local-only="false"-->
+ <!-- force="true" pfx="tmp.aai.service-instance">-->
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="service-instance"
+ key='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id
+ AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id
+ AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type'
+ local-only="false"
+ force="true" pfx="tmp.aai.service-instance">
+ <!--<get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService" -->
+ <!-- resource="service-instance"-->
+ <!-- key='service-instance.service-instance-id = $service-data.service-information.service-instance-id-->
+ <!-- AND customer.global-customer-id = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.global-customer-id -->
+ <!-- AND service-subscription.service-type = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.subscription-service-type'-->
+ <!-- local-only="false"-->
+ <!-- force="true" pfx="tmp.aai.service-instance">-->
+ <outcome value='success'>
+ <switch test='`$tmp.aai.service-instance.allotted-resources_length != 0`'>
+ <outcome value='false'></outcome>
+ <outcome value='true'>
+ <block>
+ <set>
+ <parameter name='allotted-resource-id' value="`$tmp.aai.service-instance.allotted-resources.allotted-resource[0].id`" />
+ </set>
+ <!--<get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService" -->
+ <!-- resource="allotted-resource"-->
+ <!-- key='service-instance.service-instance-id = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.service-instance-id-->
+ <!-- AND customer.global-customer-id = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.global-customer-id -->
+ <!-- AND service-subscription.service-type = $service-data.vnfs.vnf[$vnf-index].vnf-data.service-information.subscription-service-type-->
+ <!-- AND allotted-resource.id = $allotted-resource-id'-->
+ <!-- local-only="false"-->
+ <!-- force="true" pfx="tmp.aai.allotted-resource">-->
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="allotted-resource"
+ key='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id
+ AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id
+ AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type
+ AND allotted-resource.id = $allotted-resource-id'
+ local-only="false"
+ force="true" pfx="tmp.aai.allotted-resource">
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block atomic="true">
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="allotted-resource:relationship-list"
+ key='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id
+ AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id
+ AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type
+ AND allotted-resource.id = $allotted-resource-id'
+ local-only="false"
+ force="true" pfx="tmp.aai.allotted-resource.relationship-list">
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block atomic="true">
+ <switch test='`$tmp.aai.allotted-resource.relationship-list.relationship_length != 0`'>
+ <outcome value='false'></outcome>
+ <outcome value='true'>
+ <block atomic="true">
+ <for index='idx' start='0' end='`$tmp.aai.allotted-resource.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.allotted-resource.relationship-list.relationship[$idx].related-to`'>
+ <outcome value='network-policy'>
+ <block atomic="true">
+ <set>
+ <parameter name='network-policy-id' value="`$tmp.aai.allotted-resource.relationship-list.relationship[$idx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="network-policy"
+ key='network-policy.network-policy-id = $network-policy-id'
+ local-only="false"
+ force="true" pfx="tmp.aai.network-policy">
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block>
+ <set>
+ <parameter name='maximum-bandwidth' value="`$tmp.aai.network-policy.max-bandwidth`" />
+ </set>
+ </block>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ <for index='idx' start='0' end='`$tmp.aai.allotted-resource.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.allotted-resource.relationship-list.relationship[$idx].related-to`'>
+ <outcome value='logical-link'>
+ <block atomic="true">
+ <set>
+ <parameter name='logical-link-name' value="`$tmp.aai.allotted-resource.relationship-list.relationship[$idx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="logical-link"
+ key='logical-link.link-name = $logical-link-name'
+ local-only="false"
+ force="true" pfx="tmp.aai.logical-link">
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block>
+ <set>
+ <parameter name='network-route-A' value="`$tmp.aai.logical-link.link-name`" />
+ </set>
+ <set>
+ <parameter name='network-route-B' value="`$tmp.aai.logical-link.link-name2`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="network-route"
+ key='network-route.route-id = $network-route-A'
+ local-only="false"
+ force="true" pfx="tmp.aai.network-route-A">
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block atomic="true">
+ <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='split' >
+ <parameter name="original_string" value='`$tmp.aai.network-route-A.next-hop`'/>
+ <!--<parameter name="regex" value="[^-]+$"/>-->
+ <parameter name="regex" value="[-]+"/>
+ <parameter name="ctx_memory_result_key" value="param-prefix-domainA-pnfName"/>
+ <outcome value='success'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.src.domainA.pnf-name' value="`$param-prefix-domainA-pnfName[0] + '-' +
+ $param-prefix-domainA-pnfName[1] + '-' +
+ $param-prefix-domainA-pnfName[2] + '-' +
+ $param-prefix-domainA-pnfName[3] + '-' +
+ $param-prefix-domainA-pnfName[4] + '-' +
+ $param-prefix-domainA-pnfName[5] + '-' +
+ $param-prefix-domainA-pnfName[6] + '-' +
+ $param-prefix-domainA-pnfName[7] + '-' +
+ $param-prefix-domainA-pnfName[8]`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="pnf"
+ key="pnf.pnf-name = $tmp.src.domainA.pnf-name"
+ pfx='tmp.aai.source-pnf' local-only='false' >
+ <!--AND depth = '0'"-->
+ <outcome value='success'>
+ <block>
+ <for silentFailure='true' index='spvidx' start='0' end='`$tmp.aai.source-pnf.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].related-to`'>
+ <outcome value='esr-thirdparty-sdnc'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.domainA.esr-thirdparty-id' value="`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="esr-thirdparty-sdnc"
+ key="esr-thirdparty-sdnc.thirdparty-sdnc-id = $tmp.domainA.esr-thirdparty-id AND
+ depth = '1'"
+ pfx='tmp.aai.domainA.esr-thirdparty-sdnc' local-only='false' >
+ <outcome value='success'>
+ <block>
+ <set>
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domainA.url' value="`$tmp.aai.domainA.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].service-url`" />
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domainA.user' value="`$tmp.aai.domainA.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].user-name`" />
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domainA.password' value="`$tmp.aai.domainA.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].password`" />
+ <!--<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >-->
+ <!--<parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`" />-->
+ <!--<parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.user`" />-->
+ <!--<parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.password`" />-->
+ <!--<parameter name="format" value="json"/>-->
+ <!--<parameter name="httpMethod" value="get"/>-->
+ <!--<parameter name="responsePrefix" value="topology"/>-->
+ <!--<parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>-->
+ <!--<parameter name="trustStorePassword" value="adminadmin"/>-->
+ <!--<parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>-->
+ <!--<parameter name="keyStorePassword" value="adminadmin"/>-->
+ </set>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ <outcome value='network-resource'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.domainA.eth-network-id' value="`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].relationship-data[0].relationship-value`" />
+ </set>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value="An error occured while splitting sna1_route" />
+ </return>
+ </outcome>
+ </execute>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="p-interface"
+ key="pnf.pnf-name = $tmp.src.domainA.pnf-name
+ AND p-interface.interface-name = $tmp.aai.network-route-A.next-hop"
+ local-only="false"
+ pfx="tmp.aai.network-route-A.p-interface-src" >
+ <!--<get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService" -->
+ <!-- resource="p-interface"-->
+ <!-- key="pnf.pnf-name = $unique-src-node-Id-->
+ <!-- and p-interface.interface-name = $tmp.aai.endpointA.relationship-list.relationship[$rel-index].relationship-data[0].relationship-value"-->
+ <!-- local-only="false" -->
+ <!-- pfx="tmp.aai.endpointA.p-interface-src" >-->
+ <outcome value='success'>
+ <block atomic="true">
+ <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='split' >
+ <parameter name="original_string" value='`$tmp.aai.network-route-A.p-interface-src.interface-name`'/>
+ <!--<parameter name="regex" value="[^-]+$"/>-->
+ <parameter name="regex" value="[-]+"/>
+ <parameter name="ctx_memory_result_key" value="param-prefix-domainA"/>
+ <outcome value='success'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.src.ltpId' value='`$param-prefix-domainA[$param-prefix-domainA_length -1]`' />
+ </set>
+ <set>
+ <parameter name='tmp.src.pnf-name' value='`$param-prefix-domainA[$param-prefix-domainA_length -3]`' />
+ </set>
+ </block>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value="An error occured while splitting sna1_route" />
+ </return>
+ </outcome>
+ </execute>
+ <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='generateUUID' >
+ <parameter name="ctx-destination" value="uuid.connectivity-domainA-uuid"/>
+ </execute>
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='connectivity'
+ key='connectivity.connectivity-id = $uuid.connectivity-domainA-uuid'>
+ <parameter name='connectivity-id' value='`$uuid.connectivity-domainA-uuid`' />
+ <parameter name='operational-status' value='Created' />
+ <parameter name='access-provider-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -9]`' />
+ <parameter name='access-client-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -7]`' />
+ <parameter name='access-topology-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -5]`' />
+ <parameter name='access-node-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -3]`' />
+ <parameter name='access-ltp-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -1]`' />
+ <parameter name='cvlan' value='' />
+ <parameter name='bandwidth-profile-name' value='`$prop.sotn.etht-svc-name`' />
+ <parameter name='vpn-type' value='`$prop.sotn.vpnType`' />
+ <parameter name='CIR' value='`$prop.sotn.cir`' />
+ <parameter name='EIR' value='`$prop.sotn.eir`' />
+ <parameter name='CBS' value='`$prop.sotn.cbs`' />
+ <parameter name='EBS' value='`$prop.sotn.ebs`' />
+ <!--<parameter name='color-aware' value='`$prop.sotn.colorAware`' />-->
+ <!--<parameter name='coupling-flag' value='`$prop.sotn.couplingFlag`' />-->
+ <!--<parameter name='etht-svc-name' value='`$prop.sotn.etht-svc-name`' />-->
+ <parameter name='model-customization-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-customization-uuid`' />
+ <parameter name='model-invariant-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-invariant-uuid`' />
+ <parameter name='model-version-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-uuid`' />
+ <parameter name='connectivity-selflink' value="`'restconf/config/GENERIC-RESOURCE-API:services/service/' + $network-topology-operation-input.service-information.service-instance-id + '/service-data/networks/network/' + $prop.sotn.network-id + '/network-data/'` " />
+ </save>
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='service-instance:relationship-list'
+ key='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id
+ AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id
+ AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type'
+ force="true" pfx="tmp.AnAI-data">
+ <parameter name="relationship-list.relationship[0].related-to" value="connectivity" />
+ <parameter name="relationship-list.relationship[0].related-link" value="`'/network/connectivities/connectivity/' + $uuid.connectivity-domainA-uuid`" />
+ <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="connectivity.connectivity-id" />
+ <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$uuid.connectivity-domainA-uuid`" />
+ <!--<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='service-instance:relationship-list' -->
+ <!-- key='service-instance.service-instance-id = $service-data.service-information.service-instance-id -->
+ <!-- AND customer.global-customer-id = $service-data.networks.network[$nidx].network-data.service-information.global-customer-id -->
+ <!-- AND service-subscription.service-type = $service-data.networks.network[$nidx].network-data.service-information.subscription-service-type' -->
+ <!-- force="true" pfx="tmp.AnAI-data">-->
+ <!--<parameter name="relationship-list.relationship[0].related-to" value="connectivity" />-->
+ <!--<parameter name="relationship-list.relationship[0].related-link" value="`'/network/connectivities/connectivity/' + $prop.sotn.network-id`" />-->
+ <!--<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="connectivity.connectivity-id" />-->
+ <!--<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$prop.sotn.network-id`" />-->
+ </save>
+ <for silentFailure='true' index='pividx' start='0' end='`$tmp.aai.network-route-A.p-interface-src.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.network-route-A.p-interface-src.relationship-list.relationship[$pividx].related-to`'>
+ <outcome value='tunnel-termination-point'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.source.ttp-id' value="`$tmp.aai.network-route-A.p-interface-src.relationship-list.relationship[$pividx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="tunnel-termination-point"
+ key="tunnel-termination-point.ttp-id = $tmp.source.ttp-id
+ AND depth = '0'"
+ pfx='tmp.aai.source-ttp' local-only='false' >
+ <outcome value='success'>
+ <block atomic="true">
+ <set>
+ <parameter name='source.tunnel-tp-id' value="`$tmp.aai.source-ttp.tunnel-tp-id`" />
+ </set>
+ </block>
+ </outcome>
+ </get-resource>
+ <break/>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ </get-resource>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="network-route"
+ key='network-route.route-id = $network-route-B'
+ local-only="false"
+ force="true" pfx="tmp.aai.network-route-B">
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block atomic="true">
+ <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='split' >
+ <parameter name="original_string" value='`$tmp.aai.network-route-B.next-hop`'/>
+ <!--<parameter name="regex" value="[^-]+$"/>-->
+ <parameter name="regex" value="[-]+"/>
+ <parameter name="ctx_memory_result_key" value="param-prefix-domainB-pnfName"/>
+ <outcome value='success'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.dst.domainB.pnf-name' value="`$param-prefix-domainB-pnfName[0] + '-' +
+ $param-prefix-domainB-pnfName[1] + '-' +
+ $param-prefix-domainB-pnfName[2] + '-' +
+ $param-prefix-domainB-pnfName[3] + '-' +
+ $param-prefix-domainB-pnfName[4] + '-' +
+ $param-prefix-domainB-pnfName[5] + '-' +
+ $param-prefix-domainB-pnfName[6] + '-' +
+ $param-prefix-domainB-pnfName[7] + '-' +
+ $param-prefix-domainB-pnfName[8]`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="pnf"
+ key="pnf.pnf-name = $tmp.dst.domainB.pnf-name"
+ pfx='tmp.aai.destination-pnf' local-only='false' >
+ <!--AND depth = '0'"-->
+ <outcome value='success'>
+ <block>
+ <for silentFailure='true' index='dpvidx' start='0' end='`$tmp.aai.destination-pnf.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.destination-pnf.relationship-list.relationship[$dpvidx].related-to`'>
+ <outcome value='esr-thirdparty-sdnc'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.domainB.esr-thirdparty-id' value="`$tmp.aai.destination-pnf.relationship-list.relationship[$dpvidx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="esr-thirdparty-sdnc"
+ key="esr-thirdparty-sdnc.thirdparty-sdnc-id = $tmp.domainB.esr-thirdparty-id AND
+ depth = '1'"
+ pfx='tmp.aai.domainB.esr-thirdparty-sdnc' local-only='false' >
+ <outcome value='success'>
+ <block>
+ <set>
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domainB.url' value="`$tmp.aai.domainB.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].service-url`" />
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domainB.user' value="`$tmp.aai.domainB.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].user-name`" />
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domainB.password' value="`$tmp.aai.domainB.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].password`" />
+ <!--<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >-->
+ <!--<parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`" />-->
+ <!--<parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.user`" />-->
+ <!--<parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.password`" />-->
+ <!--<parameter name="format" value="json"/>-->
+ <!--<parameter name="httpMethod" value="get"/>-->
+ <!--<parameter name="responsePrefix" value="topology"/>-->
+ <!--<parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>-->
+ <!--<parameter name="trustStorePassword" value="adminadmin"/>-->
+ <!--<parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>-->
+ <!--<parameter name="keyStorePassword" value="adminadmin"/>-->
+ </set>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ <outcome value='network-resource'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.domainB.eth-network-id' value="`$tmp.aai.destination-pnf.relationship-list.relationship[$dpvidx].relationship-data[0].relationship-value`" />
+ </set>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value="An error occured while splitting sna1_route" />
+ </return>
+ </outcome>
+ </execute>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="p-interface"
+ key="pnf.pnf-name = $tmp.dst.domainB.pnf-name
+ AND p-interface.interface-name = $tmp.aai.network-route-B.next-hop"
+ local-only="false"
+ pfx="tmp.aai.network-route-B.p-interface-dst" >
+ <!--<get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService" -->
+ <!-- resource="p-interface"-->
+ <!-- key="pnf.pnf-name = $unique-src-node-Id-->
+ <!-- and p-interface.interface-name = $tmp.aai.endpointA.relationship-list.relationship[$rel-index].relationship-data[0].relationship-value"-->
+ <!-- local-only="false" -->
+ <!-- pfx="tmp.aai.endpointA.p-interface-src" >-->
+ <outcome value='success'>
+ <block atomic="true">
+ <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliStringUtils' method='split' >
+ <parameter name="original_string" value='`$tmp.aai.network-route-B.p-interface-dst.interface-name`'/>
+ <!--<parameter name="regex" value="[^-]+$"/>-->
+ <parameter name="regex" value="[-]+"/>
+ <parameter name="ctx_memory_result_key" value="param-prefix-domainB"/>
+ <outcome value='success'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.dst.ltpId' value='`$param-prefix-domainB[$param-prefix-domainB_length -1]`' />
+ </set>
+ <set>
+ <parameter name='tmp.dst.pnf-name' value='`$param-prefix-domainB[$param-prefix-domainB_length -3]`' />
+ </set>
+ </block>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value="An error occured while splitting sna1_route" />
+ </return>
+ </outcome>
+ </execute>
+ <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='generateUUID' >
+ <parameter name="ctx-destination" value="prop.connectivity-domainB-uuid"/>
+ </execute>
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='connectivity'
+ key='connectivity.connectivity-id = $prop.connectivity-domainB-uuid'>
+ <parameter name='connectivity-id' value='`$prop.connectivity-domainB-uuid`' />
+ <parameter name='operational-status' value='Created' />
+ <parameter name='access-provider-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -9]`' />
+ <parameter name='access-client-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -7]`' />
+ <parameter name='access-topology-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -5]`' />
+ <parameter name='access-node-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -3]`' />
+ <parameter name='access-ltp-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -1]`' />
+ <parameter name='cvlan' value='' />
+ <parameter name='bandwidth-profile-name' value='`$prop.sotn.etht-svc-name`' />
+ <parameter name='vpn-type' value='`$prop.sotn.vpnType`' />
+ <parameter name='CIR' value='`$prop.sotn.cir`' />
+ <parameter name='EIR' value='`$prop.sotn.eir`' />
+ <parameter name='CBS' value='`$prop.sotn.cbs`' />
+ <parameter name='EBS' value='`$prop.sotn.ebs`' />
+ <!--<parameter name='color-aware' value='`$prop.sotn.colorAware`' />-->
+ <!--<parameter name='coupling-flag' value='`$prop.sotn.couplingFlag`' />-->
+ <!--<parameter name='etht-svc-name' value='`$prop.sotn.etht-svc-name`' />-->
+ <parameter name='model-customization-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-customization-uuid`' />
+ <parameter name='model-invariant-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-invariant-uuid`' />
+ <parameter name='model-version-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-uuid`' />
+ <parameter name='connectivity-selflink' value="`'restconf/config/GENERIC-RESOURCE-API:services/service/' + $network-topology-operation-input.service-information.service-instance-id + '/service-data/networks/network/' + $prop.sotn.network-id + '/network-data/'` " />
+ </save>
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='service-instance:relationship-list'
+ key='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id
+ AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id
+ AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type'
+ force="true" pfx="tmp.AnAI-data">
+ <parameter name="relationship-list.relationship[0].related-to" value="connectivity" />
+ <parameter name="relationship-list.relationship[0].related-link" value="`'/network/connectivities/connectivity/' + $prop.connectivity-domainB-uuid`" />
+ <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="connectivity.connectivity-id" />
+ <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$prop.connectivity-domainB-uuid`" />
+ <!--<save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='service-instance:relationship-list' -->
+ <!-- key='service-instance.service-instance-id = $service-data.service-information.service-instance-id -->
+ <!-- AND customer.global-customer-id = $service-data.networks.network[$nidx].network-data.service-information.global-customer-id -->
+ <!-- AND service-subscription.service-type = $service-data.networks.network[$nidx].network-data.service-information.subscription-service-type' -->
+ <!-- force="true" pfx="tmp.AnAI-data">-->
+ <!--<parameter name="relationship-list.relationship[0].related-to" value="connectivity" />-->
+ <!--<parameter name="relationship-list.relationship[0].related-link" value="`'/network/connectivities/connectivity/' + $prop.sotn.network-id`" />-->
+ <!--<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="connectivity.connectivity-id" />-->
+ <!--<parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$prop.sotn.network-id`" />-->
+ </save>
+ <for silentFailure='true' index='dividx' start='0' end='`$tmp.aai.network-route-B.p-interface-dst.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.network-route-B.p-interface-dst.relationship-list.relationship[$dividx].related-to`'>
+ <outcome value='tunnel-termination-point'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.destination.ttp-id' value="`$tmp.aai.network-route-B.p-interface-dst.relationship-list.relationship[$dividx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="tunnel-termination-point"
+ key="tunnel-termination-point.ttp-id = $tmp.destination.ttp-id
+ AND depth = '0'"
+ pfx='tmp.aai.destination-ttp' local-only='false' >
+ <outcome value='success'>
+ <block atomic="true">
+ <set>
+ <parameter name='destination.tunnel-tp-id' value="`$tmp.aai.destination-ttp.tunnel-tp-id`" />
+ </set>
+ </block>
+ </outcome>
+ </get-resource>
+ <break/>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ </get-resource>
+ <set>
+ <parameter name='prop.connection-attachment.access-provider-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -9]`' />
+ <parameter name='prop.connection-attachment.access-client-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -7]`' />
+ <parameter name='prop.connection-attachment.access-topology-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -5]`' />
+ <parameter name='prop.connection-attachment.access-node-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -3]`' />
+ <parameter name='prop.connection-attachment.access-ltp-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -1]`' />
+ <parameter name='prop.remote.connection-attachment.access-provider-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -9]`' />
+ <parameter name='prop.remote.connection-attachment.access-client-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -7]`' />
+ <parameter name='prop.remote.connection-attachment.access-topology-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -5]`' />
+ <parameter name='prop.remote.connection-attachment.access-node-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -3]`' />
+ <parameter name='prop.remote.connection-attachment.access-ltp-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -1]`' />
+ <!--<parameter name='prop.remote.connection-attachment.access-provider-id' value='`$oof.vpn.access-provider-id`' />-->
+ <!--<parameter name='prop.remote.connection-attachment.access-client-id' value='`$oof.vpn.access-client-id`' />-->
+ <!--<parameter name='prop.remote.connection-attachment.access-topology-id' value='`$oof.vpn.access-topology-id`' />-->
+ <!--<parameter name='prop.remote.connection-attachment.access-node-id' value='`$oof.vpn.access-node-id`' />-->
+ <!--<parameter name='prop.remote.connection-attachment.access-ltp-id' value='`$oof.vpn.src-access-ltp-id`' />-->
+ </set>
+ <call module='GENERIC-RESOURCE-API' rpc='tsli-vnf-topology-operation-get-otn-tunnel-path-from-oof' mode='sync' ></call>
+ <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='generateUUID' >
+ <parameter name="ctx-destination" value="prop.vpn-binding-domainA-uuid"/>
+ </execute>
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding'
+ key='vpn-binding.vpn-id = $prop.vpn-binding-domainA-uuid' >
+ <parameter name='vpn-id' value='`$prop.vpn-binding-domainA-uuid`' />
+ <parameter name='vpn-name' value='`$prop.vpn-binding-domainA-uuid`' />
+ <parameter name='access-provider-id' value='`$domain-A.provider-id`' />
+ <!--<parameter name='access-provider-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -9]`' />-->
+ <parameter name='access-client-id' value='`$domain-A.client-id`' />
+ <!--<parameter name='access-client-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -7]`' />-->
+ <parameter name='access-topology-id' value='`$domain-A.te-topo-id`' />
+ <!--<parameter name='access-topology-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -5]`' />-->
+ <parameter name='src-access-node-id' value='`$param-prefix-domainA[$param-prefix-domainA_length -3]`' />
+ <!--<parameter name='src-access-ltp-id' value='`$source.tunnel-tp-id`' />-->
+ <parameter name='src-access-ltp-id' value='' />
+ <parameter name='dst-access-node-id' value='`$domain-A.node-id`' />
+ <parameter name='dst-access-ltp-id' value='`$domain-A.tunnel-tp-id`' />
+ <parameter name='vpn-type' value='`$prop.global.sotn.vpnType`' />
+ <parameter name='operational-status' value='Created' />
+ <parameter name='model-customization-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-customization-uuid`' />
+ <parameter name='model-invariant-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-invariant-uuid`' />
+ <parameter name='model-version-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-uuid`' />
+ <outcome value='success'>
+ <block></block>
+ </outcome>
+ </save>
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding:relationship-list'
+ key='vpn-binding.vpn-id = $prop.vpn-binding-domainA-uuid'
+ force="true" pfx="tmp.AnAI-data">
+ <parameter name="relationship-list.relationship[0].related-to" value="connectivity" />
+ <parameter name="relationship-list.relationship[0].related-link" value="`'/network/connectivities/connectivity/' + $uuid.connectivity-domainA-uuid`" />
+ <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="connectivity.connectivity-id" />
+ <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$uuid.connectivity-domainA-uuid`" />
+ </save>
+ <execute plugin='org.onap.ccsdk.sli.core.slipluginutils.SliPluginUtils' method='generateUUID' >
+ <parameter name="ctx-destination" value="prop.vpn-binding-domainB-uuid"/>
+ </execute>
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding'
+ key='vpn-binding.vpn-id = $prop.vpn-binding-domainB-uuid' >
+ <parameter name='vpn-id' value='`$prop.vpn-binding-domainB-uuid`' />
+ <parameter name='vpn-name' value='`$prop.vpn-binding-domainB-uuid`' />
+ <parameter name='access-provider-id' value='`$domain-B.provider-id`' />
+ <!--<parameter name='access-provider-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -9]`' />-->
+ <parameter name='access-client-id' value='`$domain-B.client-id`' />
+ <!--<parameter name='access-client-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -7]`' />-->
+ <parameter name='access-topology-id' value='`$domain-B.te-topo-id`' />
+ <!--<parameter name='access-topology-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -5]`' />-->
+ <parameter name='src-access-node-id' value='`$domain-B.node-id`' />
+ <parameter name='src-access-ltp-id' value='`$domain-B.tunnel-tp-id`' />
+ <parameter name='dst-access-node-id' value='`$param-prefix-domainB[$param-prefix-domainB_length -3]`' />
+ <!--<parameter name='dst-access-ltp-id' value='`$destination.tunnel-tp-id`' />-->
+ <parameter name='dst-access-ltp-id' value='' />
+ <parameter name='vpn-type' value='`$prop.global.sotn.vpnType`' />
+ <parameter name='operational-status' value='Created' />
+ <parameter name='model-customization-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-customization-uuid`' />
+ <parameter name='model-invariant-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-invariant-uuid`' />
+ <parameter name='model-version-id' value='`$network-topology-operation-input.network-information.onap-model-information.model-uuid`' />
+ <outcome value='success'>
+ <block></block>
+ </outcome>
+ </save>
+ <save plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding:relationship-list'
+ key='vpn-binding.vpn-id = $prop.vpn-binding-domainB-uuid'
+ force="true" pfx="tmp.AnAI-data">
+ <parameter name="relationship-list.relationship[0].related-to" value="connectivity" />
+ <parameter name="relationship-list.relationship[0].related-link" value="`'/network/connectivities/connectivity/' + $prop.connectivity-domainB-uuid`" />
+ <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-key" value="connectivity.connectivity-id" />
+ <parameter name="relationship-list.relationship[0].relationship-data[0].relationship-value" value="`$prop.connectivity-domainB-uuid`" />
+ </save>
+ <set>
+ <parameter name='request-id' value='`$prop.vpn-binding-domainA-uuid`' />
+ <parameter name='otn-source-node' value='`$param-prefix-domainA[$param-prefix-domainA_length -3]`' />
+ <parameter name='otn-dest-node' value='`$domain-A.node-id`' />
+ <parameter name='bw-odu' value="`'0,' + $maximum-bandwidth /1000 *2 /3 `" />
+ <!--<parameter name='src-ttp-id' value='`$source.tunnel-tp-id`' />-->
+ <parameter name='dst-ttp-id' value='`$domain-A.tunnel-tp-id`' />
+ <parameter name='slice-instance-id' value='`$tmp.aai.service-instance.service-instance-id`' />
+ </set>
+ <execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >
+ <parameter name="templateFileName" value="`$prop.restapi.templateDir + '/' + $prop.restapi.transport-slice-creation.templatefile`" />
+ <parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.url + '/restconf/operations/ietf-optical-slice:create-optical-slice'`" />
+ <parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.user`" />
+ <parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.password`" />
+ <parameter name="format" value="json"/>
+ <parameter name="httpMethod" value="post"/>
+ <parameter name="responsePrefix" value="otn-oof"/>
+ <parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>
+ <parameter name="trustStorePassword" value="adminadmin"/>
+ <parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>
+ <parameter name="keyStorePassword" value="adminadmin"/>
+ <parameter name='customHttpHeaders' value="`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`" />
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="Error executing OOF api" />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block></block>
+ </outcome>
+ </execute>
+ <execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >
+ <parameter name="templateFileName" value="`$prop.restapi.templateDir + '/' + $prop.restapi.ts-coloring-uni-port.templatefile`" />
+ <parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.url + '/restconf/data/ietf-network:networks/network=' + $tmp.domainA.eth-network-id + '/node=' + $tmp.src.pnf-name + '/ietf-network-topology:termination-point=' + $tmp.src.ltpId + '/ietf-te-topology:te/ietf-optical-slice:tp-slice-id' `" />
+ <parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.user`" />
+ <parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.password`" />
+ <parameter name="format" value="json"/>
+ <parameter name="httpMethod" value="post"/>
+ <parameter name="responsePrefix" value="otn-oof"/>
+ <parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>
+ <parameter name="trustStorePassword" value="adminadmin"/>
+ <parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>
+ <parameter name="keyStorePassword" value="adminadmin"/>
+ <parameter name='customHttpHeaders' value="`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`" />
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="Error executing OOF api" />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block></block>
+ </outcome>
+ </execute>
+ <set>
+ <parameter name='request-id' value='`$prop.vpn-binding-domainB-uuid`' />
+ <parameter name='otn-source-node' value='`$domain-B.node-id`' />
+ <parameter name='otn-dest-node' value='`$param-prefix-domainB[$param-prefix-domainB_length -3]`' />
+ <!--<parameter name='bw-odu' value='`$maximum-bandwidth /10`' />-->
+ <parameter name='bw-odu' value="`'0,' + $maximum-bandwidth /1000 *2 /3 `" />
+ <parameter name='src-ttp-id' value='`$domain-B.tunnel-tp-id`' />
+ <!--<parameter name='dst-ttp-id' value='`$destination.tunnel-tp-id`' />-->
+ <parameter name='dst-ttp-id' value='' />
+ <parameter name='slice-instance-id' value='`$tmp.aai.service-instance.service-instance-id`' />
+ </set>
+ <execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >
+ <parameter name="templateFileName" value="`$prop.restapi.templateDir + '/' + $prop.restapi.transport-slice-creation.templatefile`" />
+ <parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.domainB.url + '/restconf/operations/ietf-optical-slice:create-optical-slice'`" />
+ <!--<parameter name="restapiUrl" value="`$prop.restapi.connection-oof-url`" />-->
+ <parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.domainB.user`" />
+ <parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.domainB.password`" />
+ <parameter name="format" value="json"/>
+ <parameter name="httpMethod" value="post"/>
+ <parameter name="responsePrefix" value="otn-oof"/>
+ <parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>
+ <parameter name="trustStorePassword" value="adminadmin"/>
+ <parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>
+ <parameter name="keyStorePassword" value="adminadmin"/>
+ <parameter name='customHttpHeaders' value="`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`" />
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="Error executing OOF api" />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block></block>
+ </outcome>
+ </execute>
+ <execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >
+ <parameter name="templateFileName" value="`$prop.restapi.templateDir + '/' + $prop.restapi.ts-coloring-uni-port.templatefile`" />
+ <parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.domainB.url + '/restconf/data/ietf-network:networks/network=' + $tmp.domainB.eth-network-id + '/node=' + $tmp.dst.pnf-name + '/ietf-network-topology:termination-point=' + $tmp.dst.ltpId + '/ietf-te-topology:te/ietf-optical-slice:tp-slice-id' `" />
+ <parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.domainB.user`" />
+ <parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.domainB.password`" />
+ <parameter name="format" value="json"/>
+ <parameter name="httpMethod" value="post"/>
+ <parameter name="responsePrefix" value="otn-oof"/>
+ <parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>
+ <parameter name="trustStorePassword" value="adminadmin"/>
+ <parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>
+ <parameter name="keyStorePassword" value="adminadmin"/>
+ <parameter name='customHttpHeaders' value="`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`" />
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="Error executing OOF api" />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block></block>
+ </outcome>
+ </execute>
+ </block>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </block>
+ </outcome>
+ </switch>
+ </block>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ </switch>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ </get-resource>
+ <return status='success'>
+ <parameter name="ack-final-indicator" value="Y" />
+ <parameter name="error-code" value="200" />
+ <parameter name="error-message" value="`$error-message`" />
+ </return>
+ </block>
+ </method>
+</service-logic> \ No newline at end of file
diff --git a/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-deactivate.xml b/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-deactivate.xml
new file mode 100644
index 00000000..2517645d
--- /dev/null
+++ b/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-deactivate.xml
@@ -0,0 +1,250 @@
+<service-logic
+ xmlns='http://www.onap.org/sdnc/svclogic'
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='GENERIC-RESOURCE-API' version='${project.version}'>
+ <method rpc='tsli-vnf-topology-operation-trans-slice-deactivate' mode='sync'>
+ <block atomic="true">
+ <execute plugin='org.onap.ccsdk.sli.plugins.prop.PropertiesNode' method='readProperties' >
+ <parameter name='fileName' value='%SDNC_CONFIG_DIR%/generic-resource-api-dg.properties' />
+ <parameter name='contextPrefix' value='prop' />
+ </execute>
+ <!--<get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService" -->
+ <!-- resource="service-instance"-->
+ <!-- key='service-instance.service-instance-id = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.service-instance-id-->
+ <!-- AND customer.global-customer-id = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.global-customer-id -->
+ <!-- AND service-subscription.service-type = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.subscription-service-type'-->
+ <!-- local-only="false"-->
+ <!-- force="true" pfx="tmp.aai.service-instance">-->
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="service-instance"
+ key='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id
+ AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id
+ AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type'
+ local-only="false"
+ force="true" pfx="tmp.aai.service-instance">
+ <!--vnf-topology-operation-input.service-information.service-instance-id-->
+ <outcome value='success'>
+ <for index='rel-index' start='0' end='`$tmp.aai.service-instance.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.service-instance.relationship-list.relationship[$rel-index].related-to`'>
+ <outcome value='connectivity'>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="connectivity"
+ key="connectivity.connectivity-id = $tmp.aai.service-instance.relationship-list.relationship[$rel-index].relationship-data[0].relationship-value"
+ local-only="false"
+ pfx="tmp.aai.connectivity" >
+ <outcome value='success'>
+ <for silentFailure='true' index='cridx' start='0' end='`$tmp.aai.connectivity.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.connectivity.relationship-list.relationship[$cridx].related-to`'>
+ <outcome value='vpn-binding'>
+ <block atomic="true">
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="vpn-binding"
+ key="vpn-binding.vpn-id = $tmp.aai.connectivity.relationship-list.relationship[$cridx].relationship-data[0].relationship-value"
+ local-only="false"
+ pfx="tmp.aai.vpn-binding" >
+ <outcome value='success'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.domain.pnf-name' value="`'networkId-providerId-' +
+ $tmp.aai.vpn-binding.access-provider-id + '-clientId-' +
+ $tmp.aai.vpn-binding.access-client-id + '-topologyId-' +
+ $tmp.aai.vpn-binding.access-topology-id + '-nodeId-' +
+ $tmp.aai.vpn-binding.src-access-node-id`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="pnf"
+ key="pnf.pnf-name = $tmp.domain.pnf-name"
+ pfx='tmp.aai.source-pnf' local-only='false' >
+ <!--AND depth = '0'"-->
+ <outcome value='success'>
+ <block>
+ <for silentFailure='true' index='spvidx' start='0' end='`$tmp.aai.source-pnf.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].related-to`'>
+ <outcome value='esr-thirdparty-sdnc'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.domain.esr-thirdparty-id' value="`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="esr-thirdparty-sdnc"
+ key="esr-thirdparty-sdnc.thirdparty-sdnc-id = $tmp.domain.esr-thirdparty-id AND
+ depth = '1'"
+ pfx='tmp.aai.domain.esr-thirdparty-sdnc' local-only='false' >
+ <outcome value='success'>
+ <block>
+ <set>
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domain.url' value="`$tmp.aai.domain.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].service-url`" />
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domain.user' value="`$tmp.aai.domain.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].user-name`" />
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domain.password' value="`$tmp.aai.domain.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].password`" />
+ <!--<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >-->
+ <!--<parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`" />-->
+ <!--<parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.user`" />-->
+ <!--<parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.password`" />-->
+ <!--<parameter name="format" value="json"/>-->
+ <!--<parameter name="httpMethod" value="get"/>-->
+ <!--<parameter name="responsePrefix" value="topology"/>-->
+ <!--<parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>-->
+ <!--<parameter name="trustStorePassword" value="adminadmin"/>-->
+ <!--<parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>-->
+ <!--<parameter name="keyStorePassword" value="adminadmin"/>-->
+ </set>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ <break/>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ <execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >
+ <!--<parameter name="templateFileName" value="`$prop.restapi.templateDir + '/' + $prop.restapi.ts-otn-src-domain-creation.templatefile`" />-->
+ <parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.url + '/restconf/data/ietf-te:te/tunnels/tunnel=' + $tmp.aai.vpn-binding.vpn-id`" />
+ <parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.user`" />
+ <parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.domainA.password`" />
+ <parameter name="format" value="json"/>
+ <parameter name="httpMethod" value="delete"/>
+ <parameter name="responsePrefix" value="otn-oof"/>
+ <parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>
+ <parameter name="trustStorePassword" value="adminadmin"/>
+ <parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>
+ <parameter name="keyStorePassword" value="adminadmin"/>
+ <parameter name='customHttpHeaders' value="`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`" />
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="Error executing Create vpn rest api" />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block atomic="true"></block>
+ </outcome>
+ </execute>
+ <execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >
+ <parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.domain.url + '/restconf/data/ietf-eth-tran-service:etht-svc/eth-svc-instances=' + $tmp.aai.connectivity.connectivity-id`" />
+ <!--<parameter name="restapiUrl" value="`$prop.restapi.connection-oof-url`" />-->
+ <!--<parameter name="templateFileName" value="`$prop.restapi.templateDir + '/sotn-ethernet-service.json'`" />-->
+ <parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.domain.user`" />
+ <parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.domain.password`" />
+ <parameter name="format" value="json"/>
+ <parameter name="httpMethod" value="delete"/>
+ <parameter name='dirPath' value="/opt/onap/sdnc/restconfapi/yang" />
+ <parameter name="responsePrefix" value="vpn-result"/>
+ <parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>
+ <parameter name="trustStorePassword" value="adminadmin"/>
+ <parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>
+ <parameter name="keyStorePassword" value="adminadmin"/>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="Error executing Create vpn rest api" />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block atomic="true">
+ <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding'
+ key='vpn-binding.vpn-id = $tmp.aai.vpn-binding.vpn-id' >
+ <parameter name='vpn-id' value='`$tmp.aai.vpn-binding.vpn-id`' />
+ <parameter name='vpn-name' value='`$tmp.aai.vpn-binding.vpn-id`' />
+ <parameter name='operational-status' value='Deactivated' />
+ </update>
+ <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='connectivity'
+ key='connectivity.connectivity-id = $tmp.aai.connectivity.connectivity-id'>
+ <parameter name='connectivity-id' value='`$tmp.aai.connectivity.connectivity-id`' />
+ <parameter name='operational-status' value='Deactivated' />
+ </update>
+ </block>
+ </outcome>
+ </execute>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ </get-resource>
+ </outcome>
+ </switch>
+ </for>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ </get-resource>
+ <return status='success'>
+ <parameter name="ack-final-indicator" value="Y" />
+ <parameter name="error-code" value="200" />
+ <parameter name="error-message" value="`$error-message`" />
+ </return>
+ </block>
+ </method>
+</service-logic> \ No newline at end of file
diff --git a/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-delete.xml b/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-delete.xml
new file mode 100644
index 00000000..648929a6
--- /dev/null
+++ b/platform-logic/generic-resource-api/src/main/xml/trans_slicing/GENERIC-RESOURCE-API_tsli-vnf-topology-operation-trans-slice-delete.xml
@@ -0,0 +1,244 @@
+<service-logic
+ xmlns='http://www.onap.org/sdnc/svclogic'
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='GENERIC-RESOURCE-API' version='${project.version}'>
+ <method rpc='tsli-vnf-topology-operation-trans-slice-delete' mode='sync'>
+ <block atomic="true">
+ <execute plugin='org.onap.ccsdk.sli.plugins.prop.PropertiesNode' method='readProperties' >
+ <parameter name='fileName' value='%SDNC_CONFIG_DIR%/generic-resource-api-dg.properties' />
+ <parameter name='contextPrefix' value='prop' />
+ </execute>
+ <!--<get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService" -->
+ <!-- resource="service-instance"-->
+ <!-- key='service-instance.service-instance-id = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.service-instance-id-->
+ <!-- AND customer.global-customer-id = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.global-customer-id -->
+ <!-- AND service-subscription.service-type = $service-data.vnfs.vnf[$tmp.vidx].vnf-data.service-information.subscription-service-type'-->
+ <!-- local-only="false"-->
+ <!-- force="true" pfx="tmp.aai.service-instance">-->
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="service-instance"
+ key='service-instance.service-instance-id = $vnf-topology-operation-input.service-information.service-instance-id
+ AND customer.global-customer-id = $vnf-topology-operation-input.service-information.global-customer-id
+ AND service-subscription.service-type = $vnf-topology-operation-input.service-information.subscription-service-type'
+ local-only="false"
+ force="true" pfx="tmp.aai.service-instance">
+ <!--vnf-topology-operation-input.service-information.service-instance-id-->
+ <outcome value='success'>
+ <for index='rel-index' start='0' end='`$tmp.aai.service-instance.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.service-instance.relationship-list.relationship[$rel-index].related-to`'>
+ <outcome value='connectivity'>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="connectivity"
+ key="connectivity.connectivity-id = $tmp.aai.service-instance.relationship-list.relationship[$rel-index].relationship-data[0].relationship-value"
+ local-only="false"
+ pfx="tmp.aai.connectivity" >
+ <outcome value='success'>
+ <for silentFailure='true' index='cridx' start='0' end='`$tmp.aai.connectivity.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.connectivity.relationship-list.relationship[$cridx].related-to`'>
+ <outcome value='vpn-binding'>
+ <block atomic="true">
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="vpn-binding"
+ key="vpn-binding.vpn-id = $tmp.aai.connectivity.relationship-list.relationship[$cridx].relationship-data[0].relationship-value"
+ local-only="false"
+ pfx="tmp.aai.vpn-binding" >
+ <outcome value='success'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.domain.pnf-name' value="`'networkId-providerId-' +
+ $tmp.aai.vpn-binding.access-provider-id + '-clientId-' +
+ $tmp.aai.vpn-binding.access-client-id + '-topologyId-' +
+ $tmp.aai.vpn-binding.access-topology-id + '-nodeId-' +
+ $tmp.aai.vpn-binding.src-access-node-id`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="pnf"
+ key="pnf.pnf-name = $tmp.domain.pnf-name"
+ pfx='tmp.aai.source-pnf' local-only='false' >
+ <!--AND depth = '0'"-->
+ <outcome value='success'>
+ <block>
+ <for silentFailure='true' index='spvidx' start='0' end='`$tmp.aai.source-pnf.relationship-list.relationship_length`' >
+ <switch test='`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].related-to`'>
+ <outcome value='esr-thirdparty-sdnc'>
+ <block atomic="true">
+ <set>
+ <parameter name='tmp.domain.esr-thirdparty-id' value="`$tmp.aai.source-pnf.relationship-list.relationship[$spvidx].relationship-data[0].relationship-value`" />
+ </set>
+ <get-resource plugin="org.onap.ccsdk.sli.adaptors.aai.AAIService"
+ resource="esr-thirdparty-sdnc"
+ key="esr-thirdparty-sdnc.thirdparty-sdnc-id = $tmp.domain.esr-thirdparty-id AND
+ depth = '1'"
+ pfx='tmp.aai.domain.esr-thirdparty-sdnc' local-only='false' >
+ <outcome value='success'>
+ <block>
+ <set>
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domain.url' value="`$tmp.aai.domain.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].service-url`" />
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domain.user' value="`$tmp.aai.domain.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].user-name`" />
+ <parameter name='prop.sdncRestApi.thirdpartySdnc.domain.password' value="`$tmp.aai.domain.esr-thirdparty-sdnc.esr-system-info-list.esr-system-info[0].password`" />
+ <!--<execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >-->
+ <!--<parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.url + '/restconf/data/ietf-network:networks'`" />-->
+ <!--<parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.user`" />-->
+ <!--<parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.password`" />-->
+ <!--<parameter name="format" value="json"/>-->
+ <!--<parameter name="httpMethod" value="get"/>-->
+ <!--<parameter name="responsePrefix" value="topology"/>-->
+ <!--<parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>-->
+ <!--<parameter name="trustStorePassword" value="adminadmin"/>-->
+ <!--<parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>-->
+ <!--<parameter name="keyStorePassword" value="adminadmin"/>-->
+ </set>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ <break/>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ <outcome value='Other'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'Unexpected error occurred while querying pnf from AnAI with pnf-name = ' + $prop.connection-attachement.access-node-id`" />
+ </return>
+ </outcome>
+ </get-resource>
+ <set>
+ <parameter name='slice-instance-id' value='`$tmp.aai.service-instance.service-instance-id`' />
+ </set>
+ <execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >
+ <parameter name="templateFileName" value="`$prop.restapi.templateDir + '/' + $prop.restapi.transport-slice-creation.templatefile`" />
+ <parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.domain.url + '/restconf/operations/ietf-optical-slice:deallocate-optical-slice'`" />
+ <parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.domain.user`" />
+ <parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.domain.password`" />
+ <parameter name="format" value="json"/>
+ <parameter name="httpMethod" value="delete"/>
+ <parameter name="responsePrefix" value="otn-oof"/>
+ <parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>
+ <parameter name="trustStorePassword" value="adminadmin"/>
+ <parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>
+ <parameter name="keyStorePassword" value="adminadmin"/>
+ <parameter name='customHttpHeaders' value="`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`" />
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="Error executing Create vpn rest api" />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block atomic="true"></block>
+ </outcome>
+ </execute>
+ <execute plugin='org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode' method='sendRequest' >
+ <!--<parameter name="templateFileName" value="`$prop.restapi.templateDir + '/' + $prop.restapi.ts-coloring-uni-port.templatefile`" />-->
+ <parameter name="restapiUrl" value="`$prop.sdncRestApi.thirdpartySdnc.domain.url + '/restconf/data/ietf-network:networks/network=networkId-providerId-' + $tmp.aai.connectivity.access-provider-id + '-clientId-' + $tmp.aai.connectivity.access-client-id + '-topologyId-' + $tmp.aai.connectivity.access-topology-id + '/node=' + $tmp.aai.connectivity.access-node-id + '/ietf-network-topology:termination-point=' + $tmp.aai.connectivity.access-ltp-id + '/ietf-te-topology:te/ietf-optical-slice:tp-slice-id' `" />
+ <parameter name="restapiUser" value="`$prop.sdncRestApi.thirdpartySdnc.domain.user`" />
+ <parameter name="restapiPassword" value="`$prop.sdncRestApi.thirdpartySdnc.domain.password`" />
+ <parameter name="format" value="json"/>
+ <parameter name="httpMethod" value="delete"/>
+ <parameter name="responsePrefix" value="otn-oof"/>
+ <parameter name="trustStoreFileName" value="/opt/onap/sdnc/data/stores/truststore.onap.client.jks"/>
+ <parameter name="trustStorePassword" value="adminadmin"/>
+ <parameter name="keyStoreFileName" value="/opt/onap/sdnc/data/stores/sdnc.p12"/>
+ <parameter name="keyStorePassword" value="adminadmin"/>
+ <parameter name='customHttpHeaders' value="`'X-ACCESS-TOKEN=' + $prop.sdncRestApi.token_id`" />
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="Error executing OOF api" />
+ </return>
+ </outcome>
+ <outcome value='success'>
+ <block></block>
+ </outcome>
+ </execute>
+ <delete plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='connectivity'
+ key='connectivity.connectivity-id = $tmp.aai.connectivity.connectivity-id'></delete>
+ <delete plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' resource='vpn-binding'
+ key='vpn-binding.vpn-id = $tmp.aai.vpn-binding.vpn-id' ></delete>
+ </block>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ </get-resource>
+ </block>
+ </outcome>
+ </switch>
+ </for>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ </get-resource>
+ </outcome>
+ </switch>
+ </for>
+ </outcome>
+ <outcome value='not-found'>
+ <return status='failure'>
+ <parameter name='ack-final' value='Y'/>
+ <parameter name="error-code" value="500" />
+ <parameter name="error-message" value="`'An error occurred while querying pnf from AnAI with pnf-name = ' + $prop.l3vpn.pe1_id`" />
+ </return>
+ </outcome>
+ <outcome value='failure'>
+ <return status='failure'>
+ <parameter name='error-code' value='' />
+ <parameter name='error-message' value='' />
+ </return>
+ </outcome>
+ </get-resource>
+ <return status='success'>
+ <parameter name="ack-final-indicator" value="Y" />
+ <parameter name="error-code" value="200" />
+ <parameter name="error-message" value="`$error-message`" />
+ </return>
+ </block>
+ </method>
+</service-logic> \ No newline at end of file
diff --git a/platform-logic/restapi-templates/src/main/json/ts-allocate-tn-slice.json b/platform-logic/restapi-templates/src/main/json/ts-allocate-tn-slice.json
new file mode 100644
index 00000000..bcfa13c9
--- /dev/null
+++ b/platform-logic/restapi-templates/src/main/json/ts-allocate-tn-slice.json
@@ -0,0 +1,16 @@
+{
+ "ietf-optical-slice:input": {
+ "otn-tunnel-list": [
+ {
+ "tunnel-name": ${request-id},
+ "source": ${otn-source-node},
+ "destination": ${otn-dest-node},
+ "tunnel-bandwidth": ${bw-odu},
+ "src-tunnel-tp-id": ${src-ttp-id},
+ "dst-tunnel-tp-id": ${dst-ttp-id}
+ }
+ ],
+ "slice-id": ${slice-instance-id}
+ }
+}
+
diff --git a/platform-logic/restapi-templates/src/main/json/ts-coloring-uni-port.json b/platform-logic/restapi-templates/src/main/json/ts-coloring-uni-port.json
new file mode 100644
index 00000000..a29586a2
--- /dev/null
+++ b/platform-logic/restapi-templates/src/main/json/ts-coloring-uni-port.json
@@ -0,0 +1,3 @@
+{
+ "ietf-optical-slice:tp-slice-id": ${slice-instance-id}
+}
diff --git a/platform-logic/restapi-templates/src/main/json/ts-ethernet-service.json b/platform-logic/restapi-templates/src/main/json/ts-ethernet-service.json
new file mode 100644
index 00000000..50a82fb8
--- /dev/null
+++ b/platform-logic/restapi-templates/src/main/json/ts-ethernet-service.json
@@ -0,0 +1,53 @@
+{
+ "ietf-eth-tran-service:etht-svc":{
+ "etht-svc-instances":[
+ {
+ "etht-svc-name": ${eth-service-name},
+ "etht-svc-descr": "Ethernet-over-OTN",
+ "etht-svc-type": "ietf-eth-tran-types:p2p-svc",
+ "te-topology-identifier":{
+ "provider-id": ${provider-id},
+ "client-id": ${client-id},
+ "topology-id": ${topology-id}
+ },
+ "underlay":{
+ "otn-tunnels": [{
+ "name": ${otn-tunnel-name}
+ }]
+ },
+ "resilience":{
+ "protection":{
+ "enable":"true",
+ "hold-off-time":"0",
+ "protection-reversion-disable":"true",
+ "protection-type":"ietf-te-types:lsp-protection-unprotected",
+ "wait-to-revert":"0"
+ }
+ },
+ "admin-status":"ietf-te-types:tunnel-admin-state-up",
+ "etht-svc-end-points":[
+ {
+ "etht-svc-end-point-name": ${ethernet-end-point-name},
+ "etht-svc-access-points":[
+ {
+ "access-point-id": ${index-number},
+ "access-node-id": ${eth-node-id},
+ "access-ltp-id": ${eth-node-tp-id}
+ }
+ ],
+ "outer-tag":{
+ "tag-type":"ietf-eth-tran-types:classify-c-vlan",
+ "vlan-value":1
+ },
+ "service-classification-type":"ietf-eth-tran-types:vlan-classification",
+ "ingress-egress-bandwidth-profile":{
+ "bandwidth-profile-type":"ietf-eth-tran-types:mef-10-bwp",
+ "CIR":5000,
+ "EIR":5000
+ }
+ }
+ ]
+ }
+ ]
+ }
+}
diff --git a/platform-logic/restapi-templates/src/main/json/ts-otn-tunnel-dst-domain.json b/platform-logic/restapi-templates/src/main/json/ts-otn-tunnel-dst-domain.json
new file mode 100644
index 00000000..0a4f7142
--- /dev/null
+++ b/platform-logic/restapi-templates/src/main/json/ts-otn-tunnel-dst-domain.json
@@ -0,0 +1,35 @@
+{
+ "ietf-te:te": {
+ "tunnels": {
+ "tunnel": [
+ {
+ "source": ${src-node-id},
+ "destination": ${dst-node-id},
+ "ietf-otn-tunnel:src-tpn": ${src-tpn-id},
+ "src-ttp-id": ${src-ttp-id},
+ "te-bandwidth": {
+ "ietf-otn-tunnel:odu-type": "ietf-otn-types:prot-ODU2"
+ },
+ "ietf-otn-tunnel:dst-tributary-slot-count": 1,
+ "ietf-optical-slice:slice-id": ${slice-instance-id},
+ "encoding": "ietf-te-types:lsp-encoding-oduk",
+ "name": ${otn-tunnel-name-dst-domain},
+ "restoration": {
+ "enable": "false",
+ "hold-off-time": "0",
+ "restoration-reversion-disable": "true",
+ "restoration-type": "ietf-te-types:lsp-restoration-restore-any",
+ "wait-to-revert": "0"
+ },
+ "switching-type": "ietf-te-types:switching-otn",
+ "te-topology-identifier": {
+ "client-id": ${client-id},
+ "provider-id": ${provider-id},
+ "topology-id": ${topology-id}
+ },
+ "provisioning-state": "ietf-te-types:tunnel-state-up"
+ }
+ ]
+ }
+ }
+}
diff --git a/platform-logic/restapi-templates/src/main/json/ts-otn-tunnel-src-domain.json b/platform-logic/restapi-templates/src/main/json/ts-otn-tunnel-src-domain.json
new file mode 100644
index 00000000..425caab6
--- /dev/null
+++ b/platform-logic/restapi-templates/src/main/json/ts-otn-tunnel-src-domain.json
@@ -0,0 +1,35 @@
+{
+ "ietf-te:te": {
+ "tunnels": {
+ "tunnel": [
+ {
+ "source": ${src-node-id},
+ "destination": ${dst-node-id},
+ "ietf-otn-tunnel:dst-tpn": ${dst-tpn-id},
+ "dst-ttp-id": ${dst-ttp-id},
+ "te-bandwidth": {
+ "ietf-otn-tunnel:odu-type": "ietf-otn-types:prot-ODU2"
+ },
+ "ietf-otn-tunnel:dst-tributary-slot-count": 1,
+ "ietf-optical-slice:slice-id": ${slice-instance-id},
+ "encoding": "ietf-te-types:lsp-encoding-oduk",
+ "name": ${otn-tunnel-name-src-domain},
+ "restoration": {
+ "enable": "false",
+ "hold-off-time": "0",
+ "restoration-reversion-disable": "true",
+ "restoration-type": "ietf-te-types:lsp-restoration-restore-any",
+ "wait-to-revert": "0"
+ },
+ "switching-type": "ietf-te-types:switching-otn",
+ "te-topology-identifier": {
+ "client-id": ${client-id},
+ "provider-id": ${provider-id},
+ "topology-id": ${topology-id}
+ },
+ "provisioning-state": "ietf-te-types:tunnel-state-up"
+ }
+ ]
+ }
+ }
+}