diff options
author | Zhuoyao Huang <10112215@zte.com.cn> | 2018-09-30 16:52:11 +0800 |
---|---|---|
committer | Zhuoyao Huang <10112215@zte.com.cn> | 2018-09-30 16:52:11 +0800 |
commit | ee1e03af5fdf5d967a225f01a9ee12ecc607fc16 (patch) | |
tree | c6a13b279e69d810067e801085e80324f36d0359 | |
parent | 420b438ecfe653aabb4cb6b048777e522cf8c233 (diff) |
wan connection resource is Activate Required
Issue-ID: SO-688
Change-Id: Icc75a235a886621f603c827e41a99d44b098ab84
Signed-off-by: Zhuoyao Huang <10112215@zte.com.cn>
-rw-r--r-- | bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/CreateSDNCNetworkResource.groovy | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/CreateSDNCNetworkResource.groovy b/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/CreateSDNCNetworkResource.groovy index 7eeeff8546..47b3cc351f 100644 --- a/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/CreateSDNCNetworkResource.groovy +++ b/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/CreateSDNCNetworkResource.groovy @@ -131,6 +131,10 @@ public class CreateSDNCNetworkResource extends AbstractServiceTaskProcessor { execution.setVariable("isActivateRequired", "true") break + case ~/[\w\s\W]*wanconnection[\w\s\W]*/ : + execution.setVariable("isActivateRequired", "true") + break + default: break } |