diff options
author | Chuanyu Chen <chenchuanyu@huawei.com> | 2018-10-08 06:53:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-10-08 06:53:49 +0000 |
commit | b45c6abda216b132f7f391ef2100526c68e7890f (patch) | |
tree | 180b568b649804e1f345ce022a3643a2191bb8b2 | |
parent | e6391ed25043ce148efb3db1376f78a12a38b61b (diff) | |
parent | ee1e03af5fdf5d967a225f01a9ee12ecc607fc16 (diff) |
Merge "wan connection resource is Activate Required"
-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 } |