From 5a6a6de6f1a26a1897e4917a0df613e25a24eb70 Mon Sep 17 00:00:00 2001 From: "Benjamin, Max (mb388a)" Date: Mon, 30 Jul 2018 15:56:09 -0400 Subject: Containerization feature of SO Change-Id: I95381232eeefcd247a66a5cec370a8ce1c288e18 Issue-ID: SO-670 Signed-off-by: Benjamin, Max (mb388a) --- .../src/main/resources/META-INF/processes.xml | 31 ++ .../services/org.onap.so.client.RestProperties | 2 + .../org.onap.so.client.dmaap.DmaapProperties | 2 + .../BuildingBlock/AAICheckVnfInMaintBB.bpmn | 50 ++ .../BuildingBlock/AAISetVnfInMaintBB.bpmn | 50 ++ .../BuildingBlock/AAIUnsetVnfInMaintBB.bpmn | 50 ++ .../BuildingBlock/ActivateNetworkBB.bpmn | 71 +++ .../BuildingBlock/ActivateNetworkCollectionBB.bpmn | 52 ++ .../BuildingBlock/ActivateServiceInstanceBB.bpmn | 65 +++ .../BuildingBlock/ActivateVfModuleBB.bpmn | 66 +++ .../subprocess/BuildingBlock/ActivateVnfBB.bpmn | 65 +++ .../BuildingBlock/ActivateVolumeGroupBB.bpmn | 52 ++ .../BuildingBlock/AssignNetwork1802BB.bpmn | 92 ++++ .../subprocess/BuildingBlock/AssignNetworkBB.bpmn | 208 ++++++++ .../BuildingBlock/AssignServiceInstanceBB.bpmn | 126 +++++ .../subprocess/BuildingBlock/AssignVfModuleBB.bpmn | 95 ++++ .../subprocess/BuildingBlock/AssignVnfBB.bpmn | 177 +++++++ .../BuildingBlock/AssignVolumeGroupBB.bpmn | 52 ++ .../ChangeModelServiceInstanceBB.bpmn | 68 +++ .../BuildingBlock/ChangeModelVfModuleBB.bpmn | 66 +++ .../subprocess/BuildingBlock/ChangeModelVnfBB.bpmn | 68 +++ .../subprocess/BuildingBlock/CreateCustomerBB.bpmn | 53 ++ .../subprocess/BuildingBlock/CreateNetworkBB.bpmn | 198 ++++++++ .../BuildingBlock/CreateNetworkCollectionBB.bpmn | 112 +++++ .../subprocess/BuildingBlock/CreateVfModuleBB.bpmn | 115 +++++ .../BuildingBlock/CreateVolumeGroupBB.bpmn | 102 ++++ .../BuildingBlock/DeactivateNetworkBB.bpmn | 72 +++ .../BuildingBlock/DeactivateServiceInstanceBB.bpmn | 66 +++ .../BuildingBlock/DeactivateVfModuleBB.bpmn | 70 +++ .../subprocess/BuildingBlock/DeactivateVnfBB.bpmn | 65 +++ .../BuildingBlock/DeactivateVolumeGroupBB.bpmn | 52 ++ .../subprocess/BuildingBlock/DeleteNetworkBB.bpmn | 75 +++ .../BuildingBlock/DeleteNetworkCollectionBB.bpmn | 67 +++ .../subprocess/BuildingBlock/DeleteVfModuleBB.bpmn | 85 ++++ .../BuildingBlock/DeleteVolumeGroupBB.bpmn | 67 +++ .../BuildingBlock/ExecuteBuildingBlock.bpmn | 310 ++++++++++++ .../BuildingBlock/SDNOVnfHealthCheckBB.bpmn | 51 ++ .../BuildingBlock/UnassignNetwork1802BB.bpmn | 95 ++++ .../BuildingBlock/UnassignNetworkBB.bpmn | 110 +++++ .../BuildingBlock/UnassignServiceInstanceBB.bpmn | 67 +++ .../BuildingBlock/UnassignVfModuleBB.bpmn | 65 +++ .../subprocess/BuildingBlock/UnassignVnfBB.bpmn | 80 +++ .../BuildingBlock/UnassignVolumeGroupBB.bpmn | 52 ++ .../subprocess/BuildingBlock/UpdateNetworkBB.bpmn | 232 +++++++++ .../subprocess/BuildingBlock/VnfAdapter.bpmn | 122 +++++ .../subprocess/BuildingBlock/WorkflowActionBB.bpmn | 550 +++++++++++++++++++++ 46 files changed, 4441 insertions(+) create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/META-INF/processes.xml create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/META-INF/services/org.onap.so.client.RestProperties create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/META-INF/services/org.onap.so.client.dmaap.DmaapProperties create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AAICheckVnfInMaintBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AAISetVnfInMaintBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AAIUnsetVnfInMaintBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateNetworkBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateNetworkCollectionBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateServiceInstanceBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateVfModuleBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateVnfBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateVolumeGroupBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignNetwork1802BB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignNetworkBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignServiceInstanceBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignVfModuleBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignVnfBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignVolumeGroupBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ChangeModelServiceInstanceBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ChangeModelVfModuleBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ChangeModelVnfBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateCustomerBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateNetworkBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateNetworkCollectionBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateVfModuleBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateVolumeGroupBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateNetworkBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateServiceInstanceBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateVfModuleBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateVnfBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateVolumeGroupBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteNetworkBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteNetworkCollectionBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteVfModuleBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteVolumeGroupBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ExecuteBuildingBlock.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/SDNOVnfHealthCheckBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignNetwork1802BB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignNetworkBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignServiceInstanceBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignVfModuleBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignVnfBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignVolumeGroupBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UpdateNetworkBB.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/VnfAdapter.bpmn create mode 100644 bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/WorkflowActionBB.bpmn (limited to 'bpmn/so-bpmn-building-blocks/src/main/resources') diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/META-INF/processes.xml b/bpmn/so-bpmn-building-blocks/src/main/resources/META-INF/processes.xml new file mode 100644 index 0000000000..33c8cb1ac0 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/META-INF/processes.xml @@ -0,0 +1,31 @@ + + + + + + + + false + true + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/META-INF/services/org.onap.so.client.RestProperties b/bpmn/so-bpmn-building-blocks/src/main/resources/META-INF/services/org.onap.so.client.RestProperties new file mode 100644 index 0000000000..bdc72c86a4 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/META-INF/services/org.onap.so.client.RestProperties @@ -0,0 +1,2 @@ +org.onap.so.client.restproperties.AAIPropertiesImpl +org.onap.so.client.restproperties.PolicyRestPropertiesImpl \ No newline at end of file diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/META-INF/services/org.onap.so.client.dmaap.DmaapProperties b/bpmn/so-bpmn-building-blocks/src/main/resources/META-INF/services/org.onap.so.client.dmaap.DmaapProperties new file mode 100644 index 0000000000..939d5cdc1b --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/META-INF/services/org.onap.so.client.dmaap.DmaapProperties @@ -0,0 +1,2 @@ +org.onap.so.client.dmaapproperties.GlobalDmaapPropertiesImpl +org.onap.so.client.dmaapproperties.DefaultDmaapPropertiesImpl \ No newline at end of file diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AAICheckVnfInMaintBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AAICheckVnfInMaintBB.bpmn new file mode 100644 index 0000000000..de0f450624 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AAICheckVnfInMaintBB.bpmn @@ -0,0 +1,50 @@ + + + + + SequenceFlow_0zaz9o2 + + + SequenceFlow_1jwsja5 + + + SequenceFlow_0zaz9o2 + SequenceFlow_1jwsja5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AAISetVnfInMaintBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AAISetVnfInMaintBB.bpmn new file mode 100644 index 0000000000..b2e100061d --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AAISetVnfInMaintBB.bpmn @@ -0,0 +1,50 @@ + + + + + SequenceFlow_0zaz9o2 + + + SequenceFlow_1jwsja5 + + + SequenceFlow_0zaz9o2 + SequenceFlow_1jwsja5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AAIUnsetVnfInMaintBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AAIUnsetVnfInMaintBB.bpmn new file mode 100644 index 0000000000..7335f8677c --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AAIUnsetVnfInMaintBB.bpmn @@ -0,0 +1,50 @@ + + + + + SequenceFlow_0zaz9o2 + + + SequenceFlow_1jwsja5 + + + + SequenceFlow_0zaz9o2 + SequenceFlow_1jwsja5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateNetworkBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateNetworkBB.bpmn new file mode 100644 index 0000000000..6ca3745f43 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateNetworkBB.bpmn @@ -0,0 +1,71 @@ + + + + + SequenceFlow_05elmhj + + + SequenceFlow_18atf08 + + + SequenceFlow_05elmhj + SequenceFlow_0xbvwsu + + + SequenceFlow_0xbvwsu + SequenceFlow_18atf08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateNetworkCollectionBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateNetworkCollectionBB.bpmn new file mode 100644 index 0000000000..87a1dae090 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateNetworkCollectionBB.bpmn @@ -0,0 +1,52 @@ + + + + + SequenceFlow_05elmhj + + + SequenceFlow_18atf08 + + + SequenceFlow_05elmhj + SequenceFlow_18atf08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateServiceInstanceBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateServiceInstanceBB.bpmn new file mode 100644 index 0000000000..3d55ecd8f6 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateServiceInstanceBB.bpmn @@ -0,0 +1,65 @@ + + + + + SequenceFlow_1byfr8v + + + SequenceFlow_0pioehv + + + + SequenceFlow_1byfr8v + SequenceFlow_00q7fsg + + + + SequenceFlow_00q7fsg + SequenceFlow_0pioehv + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateVfModuleBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateVfModuleBB.bpmn new file mode 100644 index 0000000000..b118d9b71c --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateVfModuleBB.bpmn @@ -0,0 +1,66 @@ + + + + + SequenceFlow_0ieafii + + + + SequenceFlow_0xsp0pv + + + SequenceFlow_0ieafii + SequenceFlow_14kvrbe + + + + SequenceFlow_14kvrbe + SequenceFlow_0xsp0pv + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateVnfBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateVnfBB.bpmn new file mode 100644 index 0000000000..61d8f6eb44 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateVnfBB.bpmn @@ -0,0 +1,65 @@ + + + + + SequenceFlow_0k9qnoi + + + + + SequenceFlow_0vnitwg + + + + SequenceFlow_0k9qnoi + SequenceFlow_0r6pzwt + + + SequenceFlow_0r6pzwt + SequenceFlow_0vnitwg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateVolumeGroupBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateVolumeGroupBB.bpmn new file mode 100644 index 0000000000..03ba8bbe43 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ActivateVolumeGroupBB.bpmn @@ -0,0 +1,52 @@ + + + + + SequenceFlow_1wz1rfg + + + + SequenceFlow_0mh0v9h + + + SequenceFlow_1wz1rfg + SequenceFlow_0mh0v9h + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignNetwork1802BB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignNetwork1802BB.bpmn new file mode 100644 index 0000000000..cb4be0279e --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignNetwork1802BB.bpmn @@ -0,0 +1,92 @@ + + + + + SequenceFlow_11op1ih + + + SequenceFlow_11op1ih + SequenceFlow_32 + + + SequenceFlow_32 + SequenceFlow_0do51t8 + + + + + SequenceFlow_0do51t8 + SequenceFlow_0ln3hj3 + + + SequenceFlow_0ln3hj3 + + + + sets Cloud Region on BB execution for SDNC assign + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignNetworkBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignNetworkBB.bpmn new file mode 100644 index 0000000000..79cbe68a3a --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignNetworkBB.bpmn @@ -0,0 +1,208 @@ + + + + + SequenceFlow_11op1ih + + + SequenceFlow_0mxc4ri + SequenceFlow_017131q + SequenceFlow_32 + + + SequenceFlow_32 + SequenceFlow_0do51t8 + + + + + SequenceFlow_0gkr871 + SequenceFlow_1ctpnpe + + + SequenceFlow_0do51t8 + SequenceFlow_0ln3hj3 + + + SequenceFlow_11op1ih + SequenceFlow_017131q + SequenceFlow_0gkr871 + + + + + + + SequenceFlow_0ln3hj3 + + + + + SequenceFlow_07z7hcu + SequenceFlow_0e08b9t + + + SequenceFlow_0e08b9t + SequenceFlow_0mxc4ri + + + + + + SequenceFlow_1ctpnpe + SequenceFlow_0fwcvep + + + SequenceFlow_0fwcvep + SequenceFlow_07z7hcu + + + + sets Cloud Region on BB execution for SDNC assign + + + conditionally executed if Network Collection Instance Group exists + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignServiceInstanceBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignServiceInstanceBB.bpmn new file mode 100644 index 0000000000..f68fc91584 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignServiceInstanceBB.bpmn @@ -0,0 +1,126 @@ + + + + + SequenceFlow_1xr6chl + + + SequenceFlow_1h6t7yr + SequenceFlow_0czewtx + + + SequenceFlow_0czewtx + SequenceFlow_1t55i01 + + + SequenceFlow_1t55i01 + SequenceFlow_0aef1l8 + + + SequenceFlow_0aef1l8 + SequenceFlow_07ea5ui + + + + + + + SequenceFlow_14xl505 + + + + SequenceFlow_07ea5ui + SequenceFlow_14xl505 + + + + SequenceFlow_1xr6chl + SequenceFlow_1h6t7yr + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignVfModuleBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignVfModuleBB.bpmn new file mode 100644 index 0000000000..b7ce68eace --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignVfModuleBB.bpmn @@ -0,0 +1,95 @@ + + + + + SequenceFlow_1xr6chl + + + SequenceFlow_1xr6chl + SequenceFlow_0czewtx + + + SequenceFlow_0574gaa + SequenceFlow_15hn8si + + + + + SequenceFlow_14xl505 + + + + SequenceFlow_15hn8si + SequenceFlow_14xl505 + + + + + SequenceFlow_0czewtx + SequenceFlow_0574gaa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignVnfBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignVnfBB.bpmn new file mode 100644 index 0000000000..f1a023910b --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignVnfBB.bpmn @@ -0,0 +1,177 @@ + + + + + SequenceFlow_0zaz9o2 + + + SequenceFlow_11jum90 + SequenceFlow_0v8d14a + SequenceFlow_1ks8kmt + + + SequenceFlow_0csh9dc + + + SequenceFlow_0zaz9o2 + SequenceFlow_1jwsja5 + + + + + + SequenceFlow_1ks8kmt + SequenceFlow_0csh9dc + + + SequenceFlow_1lppa2m + SequenceFlow_1nle8kc + + + + + SequenceFlow_1nle8kc + SequenceFlow_11jum90 + SequenceFlow_1uiok7v + + + + + + + + + + + + + SequenceFlow_1uiok7v + SequenceFlow_0v8d14a + + + + + SequenceFlow_1jwsja5 + SequenceFlow_169g0ir + + + SequenceFlow_169g0ir + SequenceFlow_1lppa2m + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignVolumeGroupBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignVolumeGroupBB.bpmn new file mode 100644 index 0000000000..b1626c8a53 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/AssignVolumeGroupBB.bpmn @@ -0,0 +1,52 @@ + + + + + SequenceFlow_1wz1rfg + + + + SequenceFlow_0mh0v9h + + + SequenceFlow_1wz1rfg + SequenceFlow_0mh0v9h + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ChangeModelServiceInstanceBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ChangeModelServiceInstanceBB.bpmn new file mode 100644 index 0000000000..6641516bfa --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ChangeModelServiceInstanceBB.bpmn @@ -0,0 +1,68 @@ + + + + + SequenceFlow_18i4a05 + + + SequenceFlow_0g502yj + + + + + + SequenceFlow_18i4a05 + SequenceFlow_19kfk17 + + + SequenceFlow_19kfk17 + SequenceFlow_0g502yj + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ChangeModelVfModuleBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ChangeModelVfModuleBB.bpmn new file mode 100644 index 0000000000..a48abe25a1 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ChangeModelVfModuleBB.bpmn @@ -0,0 +1,66 @@ + + + + + SequenceFlow_0ieafii + + + + SequenceFlow_0xsp0pv + + + SequenceFlow_0ieafii + SequenceFlow_14kvrbe + + + + SequenceFlow_14kvrbe + SequenceFlow_0xsp0pv + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ChangeModelVnfBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ChangeModelVnfBB.bpmn new file mode 100644 index 0000000000..68f491e1f0 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ChangeModelVnfBB.bpmn @@ -0,0 +1,68 @@ + + + + + SequenceFlow_18i4a05 + + + SequenceFlow_0g502yj + + + + + + SequenceFlow_18i4a05 + SequenceFlow_19kfk17 + + + SequenceFlow_19kfk17 + SequenceFlow_0g502yj + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateCustomerBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateCustomerBB.bpmn new file mode 100644 index 0000000000..1e88963c21 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateCustomerBB.bpmn @@ -0,0 +1,53 @@ + + + + + SequenceFlow_1wz1rfg + + + + SequenceFlow_0kfkpbh + + + SequenceFlow_1wz1rfg + SequenceFlow_0kfkpbh + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateNetworkBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateNetworkBB.bpmn new file mode 100644 index 0000000000..b91e2df8f7 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateNetworkBB.bpmn @@ -0,0 +1,198 @@ + + + + + SequenceFlow_1maepy7 + + + SequenceFlow_0sissul + + + SequenceFlow_1oc7wcr + SequenceFlow_0n42zi5 + + + SequenceFlow_1eqfh23 + SequenceFlow_0innva6 + + + SequenceFlow_0n42zi5 + SequenceFlow_1yy4aik + + + SequenceFlow_1yy4aik + SequenceFlow_1h9kkhb + + + SequenceFlow_0innva6 + SequenceFlow_0sissul + + + + + + + SequenceFlow_1maepy7 + SequenceFlow_06rq9pi + + + + SequenceFlow_03ebe6c + + + + SequenceFlow_1oc7wcr + + + + SequenceFlow_1eqfh23 + + + + SequenceFlow_1h9kkhb + + + + + + + SequenceFlow_06rq9pi + SequenceFlow_03ebe6c + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateNetworkCollectionBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateNetworkCollectionBB.bpmn new file mode 100644 index 0000000000..c6c3599449 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateNetworkCollectionBB.bpmn @@ -0,0 +1,112 @@ + + + + + SequenceFlow_1maepy7 + + + SequenceFlow_0hhklb4 + + + SequenceFlow_1maepy7 + SequenceFlow_06rq9pi + + + + SequenceFlow_06rq9pi + SequenceFlow_05yxpu5 + + + + SequenceFlow_05yxpu5 + SequenceFlow_0z4c30j + + + SequenceFlow_0z4c30j + SequenceFlow_1hij1px + + + + + SequenceFlow_1hij1px + SequenceFlow_0hhklb4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateVfModuleBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateVfModuleBB.bpmn new file mode 100644 index 0000000000..7691498bd0 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateVfModuleBB.bpmn @@ -0,0 +1,115 @@ + + + + + SequenceFlow_1xr6chl + + + SequenceFlow_1s4rpyp + SequenceFlow_15hn8si + + + + SequenceFlow_1stomxq + + + SequenceFlow_15hn8si + SequenceFlow_16g4dz0 + + + + + SequenceFlow_1xr6chl + SequenceFlow_1s4rpyp + + + + + + + + + + SequenceFlow_16g4dz0 + SequenceFlow_0ecr393 + + + + SequenceFlow_0ecr393 + SequenceFlow_1stomxq + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateVolumeGroupBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateVolumeGroupBB.bpmn new file mode 100644 index 0000000000..58a429dcc5 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/CreateVolumeGroupBB.bpmn @@ -0,0 +1,102 @@ + + + + + SequenceFlow_1wz1rfg + + + + SequenceFlow_0mh0v9h + + + SequenceFlow_06q6g74 + SequenceFlow_0kfkpbh + + + + SequenceFlow_06flg6h + SequenceFlow_0mh0v9h + + + + SequenceFlow_1wz1rfg + SequenceFlow_06q6g74 + + + + + + + + + SequenceFlow_0kfkpbh + SequenceFlow_06flg6h + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateNetworkBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateNetworkBB.bpmn new file mode 100644 index 0000000000..836f52b9be --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateNetworkBB.bpmn @@ -0,0 +1,72 @@ + + + + + SequenceFlow_05elmhj + + + SequenceFlow_18atf08 + + + SequenceFlow_05elmhj + SequenceFlow_0xbvwsu + + + SequenceFlow_0xbvwsu + SequenceFlow_18atf08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateServiceInstanceBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateServiceInstanceBB.bpmn new file mode 100644 index 0000000000..80faf1378c --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateServiceInstanceBB.bpmn @@ -0,0 +1,66 @@ + + + + + SequenceFlow_101w1ck + + + SequenceFlow_0pioehv + + + + + SequenceFlow_00q7fsg + SequenceFlow_0pioehv + + + SequenceFlow_101w1ck + SequenceFlow_00q7fsg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateVfModuleBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateVfModuleBB.bpmn new file mode 100644 index 0000000000..85cde2aca7 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateVfModuleBB.bpmn @@ -0,0 +1,70 @@ + + + + + SequenceFlow_0m379r2 + + + SequenceFlow_0m379r2 + SequenceFlow_01bdpek + + + + SequenceFlow_01bdpek + SequenceFlow_1y1c7fh + + + + SequenceFlow_1y1c7fh + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateVnfBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateVnfBB.bpmn new file mode 100644 index 0000000000..d6b7dd6534 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateVnfBB.bpmn @@ -0,0 +1,65 @@ + + + + + SequenceFlow_0k9qnoi + + + + + SequenceFlow_0vnitwg + + + + SequenceFlow_0k9qnoi + SequenceFlow_0r6pzwt + + + SequenceFlow_0r6pzwt + SequenceFlow_0vnitwg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateVolumeGroupBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateVolumeGroupBB.bpmn new file mode 100644 index 0000000000..2b2e30b773 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeactivateVolumeGroupBB.bpmn @@ -0,0 +1,52 @@ + + + + + SequenceFlow_1wz1rfg + + + + SequenceFlow_0mh0v9h + + + SequenceFlow_1wz1rfg + SequenceFlow_0mh0v9h + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteNetworkBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteNetworkBB.bpmn new file mode 100644 index 0000000000..faa40600a5 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteNetworkBB.bpmn @@ -0,0 +1,75 @@ + + + + + SequenceFlow_1mc3d3f + + + SequenceFlow_1c906im + SequenceFlow_0nhd7b7 + + + + + SequenceFlow_1mc3d3f + SequenceFlow_1c906im + + + SequenceFlow_0nhd7b7 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteNetworkCollectionBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteNetworkCollectionBB.bpmn new file mode 100644 index 0000000000..f6d028585a --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteNetworkCollectionBB.bpmn @@ -0,0 +1,67 @@ + + + + + SequenceFlow_1maepy7 + + + SequenceFlow_0lju8aw + + + + SequenceFlow_1maepy7 + SequenceFlow_0v9bqr9 + + + SequenceFlow_0v9bqr9 + SequenceFlow_0lju8aw + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteVfModuleBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteVfModuleBB.bpmn new file mode 100644 index 0000000000..408e378bcf --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteVfModuleBB.bpmn @@ -0,0 +1,85 @@ + + + + + SequenceFlow_1537yw5 + + + SequenceFlow_1537yw5 + SequenceFlow_08tvhtf + + + + SequenceFlow_02lpx87 + SequenceFlow_1mxrfqv + + + + SequenceFlow_1mxrfqv + + + + + + + + + SequenceFlow_08tvhtf + SequenceFlow_02lpx87 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteVolumeGroupBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteVolumeGroupBB.bpmn new file mode 100644 index 0000000000..6fd7773714 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/DeleteVolumeGroupBB.bpmn @@ -0,0 +1,67 @@ + + + + + SequenceFlow_1wz1rfg + + + + SequenceFlow_0mh0v9h + + + SequenceFlow_13ngwev + SequenceFlow_0mh0v9h + + + + + SequenceFlow_1wz1rfg + SequenceFlow_13ngwev + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ExecuteBuildingBlock.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ExecuteBuildingBlock.bpmn new file mode 100644 index 0000000000..8640f7e069 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/ExecuteBuildingBlock.bpmn @@ -0,0 +1,310 @@ + + + + + SequenceFlow_0rq4c5r + + + + + + + + Continue + SequenceFlow_01h9qmz + + + + + SequenceFlow_0rq4c5r + SequenceFlow_0uzwjrq + + + SequenceFlow_01h9qmz + SequenceFlow_1ryv9sh + + + + + SequenceFlow_0uzwjrq + SequenceFlow_0je0y25 + + + + + + SequenceFlow_0je0y25 + Continue + SequenceFlow_1ryv9sh + + + + SequenceFlow_0yeaaxu + + + + SequenceFlow_0yeaaxu + SequenceFlow_1b5op07 + SequenceFlow_030qtgc + SequenceFlow_0a62t4c + + + SequenceFlow_0h8v45y + SequenceFlow_1db2c7t + + + SequenceFlow_0a62t4c + SequenceFlow_0fwsjva + SequenceFlow_0h8v45y + + + SequenceFlow_0ndt8ft + SequenceFlow_07a1ytc + + + + + + SequenceFlow_0fwsjva + SequenceFlow_1wbevp0 + SequenceFlow_1db2c7t + + + SequenceFlow_07a1ytc + + + SequenceFlow_1wbevp0 + SequenceFlow_0ndt8ft + + + + + + + + + + + + + + + + + SequenceFlow_030qtgc + + + + SequenceFlow_1b5op07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/SDNOVnfHealthCheckBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/SDNOVnfHealthCheckBB.bpmn new file mode 100644 index 0000000000..8cc682ce7f --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/SDNOVnfHealthCheckBB.bpmn @@ -0,0 +1,51 @@ + + + + + SequenceFlow_0zaz9o2 + + + SequenceFlow_1jwsja5 + + + SequenceFlow_0zaz9o2 + SequenceFlow_1jwsja5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignNetwork1802BB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignNetwork1802BB.bpmn new file mode 100644 index 0000000000..bd6b124175 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignNetwork1802BB.bpmn @@ -0,0 +1,95 @@ + + + + + SequenceFlow_0zaz9o2 + + + SequenceFlow_0le4vrj + SequenceFlow_1ks8kmt + + + SequenceFlow_1ks8kmt + + + + + SequenceFlow_1gd5h4c + SequenceFlow_0mxe1a7 + + + + + SequenceFlow_0zaz9o2 + SequenceFlow_1gd5h4c + + + + SequenceFlow_0mxe1a7 + SequenceFlow_0le4vrj + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignNetworkBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignNetworkBB.bpmn new file mode 100644 index 0000000000..208e41f174 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignNetworkBB.bpmn @@ -0,0 +1,110 @@ + + + + + SequenceFlow_0zaz9o2 + + + SequenceFlow_0le4vrj + SequenceFlow_1ks8kmt + + + SequenceFlow_0csh9dc + + + + + + SequenceFlow_1ks8kmt + SequenceFlow_0csh9dc + + + SequenceFlow_1gd5h4c + SequenceFlow_0mxe1a7 + + + + + SequenceFlow_0zaz9o2 + SequenceFlow_1gd5h4c + + + + SequenceFlow_0mxe1a7 + SequenceFlow_0le4vrj + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignServiceInstanceBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignServiceInstanceBB.bpmn new file mode 100644 index 0000000000..235c7c9eac --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignServiceInstanceBB.bpmn @@ -0,0 +1,67 @@ + + + + + SequenceFlow_0fzrhkc + + + SequenceFlow_0pu9j6i + SequenceFlow_0sfeg65 + + + + SequenceFlow_0fzrhkc + SequenceFlow_0pu9j6i + + + + SequenceFlow_0sfeg65 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignVfModuleBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignVfModuleBB.bpmn new file mode 100644 index 0000000000..2b9edbc3d5 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignVfModuleBB.bpmn @@ -0,0 +1,65 @@ + + + + + SequenceFlow_1kfxl04 + + + SequenceFlow_1p2r4og + SequenceFlow_0qa6sxx + + + SequenceFlow_1kfxl04 + SequenceFlow_1p2r4og + + + SequenceFlow_0qa6sxx + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignVnfBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignVnfBB.bpmn new file mode 100644 index 0000000000..83ba0a9155 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignVnfBB.bpmn @@ -0,0 +1,80 @@ + + + + + SequenceFlow_1kfxl04 + + + SequenceFlow_0w3s09a + SequenceFlow_0qa6sxx + + + SequenceFlow_1kfxl04 + SequenceFlow_02st1i1 + + + SequenceFlow_0qa6sxx + + + + + SequenceFlow_02st1i1 + SequenceFlow_0w3s09a + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignVolumeGroupBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignVolumeGroupBB.bpmn new file mode 100644 index 0000000000..12af246153 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UnassignVolumeGroupBB.bpmn @@ -0,0 +1,52 @@ + + + + + SequenceFlow_1kfxl04 + + + SequenceFlow_1kfxl04 + SequenceFlow_0qa6sxx + + + SequenceFlow_0qa6sxx + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UpdateNetworkBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UpdateNetworkBB.bpmn new file mode 100644 index 0000000000..9f431212b1 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/UpdateNetworkBB.bpmn @@ -0,0 +1,232 @@ + + + + + SequenceFlow_074w2et + + + SequenceFlow_074w2et + SequenceFlow_04yezm3 + + + + SequenceFlow_04yezm3 + + + + + SequenceFlow_1trqq6d + SequenceFlow_03janqs + + + SequenceFlow_1trqq6d + + + + + SequenceFlow_03janqs + SequenceFlow_1io4cl7 + + + + SequenceFlow_1io4cl7 + SequenceFlow_16fm47t + + + + + SequenceFlow_16fm47t + SequenceFlow_00xbxe7 + + + SequenceFlow_00xbxe7 + + + + + SequenceFlow_196cgux + + + + + SequenceFlow_196cgux + SequenceFlow_0hsvgje + + + + SequenceFlow_0hsvgje + SequenceFlow_0fhfitm + + + SequenceFlow_0fhfitm + + + + + SequenceFlow_1vfwv05 + + + + SequenceFlow_1vfwv05 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/VnfAdapter.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/VnfAdapter.bpmn new file mode 100644 index 0000000000..04f3684ee4 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/VnfAdapter.bpmn @@ -0,0 +1,122 @@ + + + + + SequenceFlow_1xr6chl + + + + SequenceFlow_1abat8l + + + SequenceFlow_1abat8l + + + + + + + SequenceFlow_1ivhukd + + + SequenceFlow_1xr6chl + SequenceFlow_0qaaf5k + + + SequenceFlow_0j1zvis + SequenceFlow_1ivhukd + + + + + + + + + + + + SequenceFlow_0qaaf5k + SequenceFlow_0j1zvis + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/WorkflowActionBB.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/WorkflowActionBB.bpmn new file mode 100644 index 0000000000..6544387775 --- /dev/null +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/BuildingBlock/WorkflowActionBB.bpmn @@ -0,0 +1,550 @@ + + + + + SequenceFlow_15s0okp + + + SequenceFlow_1rscv7d + SequenceFlow_0x4urgp + + + + + + + + + + + + SequenceFlow_0mqrkxv + SequenceFlow_07h9d4y + + + + SequenceFlow_1atzsgn + SequenceFlow_1wb59ic + SequenceFlow_005hi8o + SequenceFlow_0unbew4 + SequenceFlow_0mqrkxv + + + SequenceFlow_07h9d4y + SequenceFlow_1m2eezj + SequenceFlow_0v588sm + SequenceFlow_11530ei + SequenceFlow_01j184u + SequenceFlow_0l7kaba + + + + + + + SequenceFlow_15s0okp + SequenceFlow_0vc9go9 + + + SequenceFlow_0sckerv + SequenceFlow_1wb59ic + + + SequenceFlow_0kf5sen + SequenceFlow_1pz6edz + + + + + + + + + + + SequenceFlow_1pz6edz + SequenceFlow_1rscv7d + + + + + + SequenceFlow_1edjl5x + + + + SequenceFlow_0wvzfgf + + + SequenceFlow_024g0d1 + SequenceFlow_0eana0l + SequenceFlow_0wvzfgf + + + + + SequenceFlow_1edjl5x + SequenceFlow_024g0d1 + SequenceFlow_0vi883o + + + + + + + + SequenceFlow_0vi883o + SequenceFlow_0eana0l + + + + + + + + + + SequenceFlow_0v588sm + SequenceFlow_1atzsgn + SequenceFlow_11dlyzt + + + + + + + SequenceFlow_02ksbt0 + SequenceFlow_1p8yxu6 + + + SequenceFlow_1p8yxu6 + SequenceFlow_1r570x3 + + + + + + + SequenceFlow_01j184u + SequenceFlow_005hi8o + + + SequenceFlow_0vc9go9 + SequenceFlow_0sckerv + SequenceFlow_0unbew4 + + + + + + + SequenceFlow_11530ei + SequenceFlow_02ksbt0 + SequenceFlow_1r570x3 + + + + + + + SequenceFlow_1m2eezj + SequenceFlow_0kf5sen + SequenceFlow_0x4urgp + + + + + + + SequenceFlow_1ui67mc + + + + + + SequenceFlow_11dlyzt + SequenceFlow_0l7kaba + SequenceFlow_1ui67mc + + + + + + + + SequenceFlow_11d126w + + + + SequenceFlow_11d126w + SequenceFlow_0w4sx88 + + + SequenceFlow_0w4sx88 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit 1.2.3-korg