diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2017-12-05 05:19:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-12-05 05:19:26 +0000 |
commit | 527e255c512027e16a6df31d91753a9d27b8fe31 (patch) | |
tree | e9a4185dbb8de8b7958902cdc62215dafed7f38a | |
parent | 9cba4e191d714480e8213478f0949eb9cfc0ce3f (diff) | |
parent | 4c7e7fbaaff83560f5a7af49b444ae84545b2386 (diff) |
Merge "Correct Service Type Value" into amsterdam
-rw-r--r-- | bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy b/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy index dbefb6c346..9404364910 100644 --- a/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy +++ b/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy @@ -130,8 +130,8 @@ public class DoCreateE2EServiceInstance extends AbstractServiceTaskProcessor { String serviceModelName = jsonUtil.getJsonValue(uuiRequest, "service.parameters.templateName") execution.setVariable("serviceModelName", serviceModelName) //aai serviceType and Role can be setted as fixed value now. - String aaiServiceType = "voLTE type" - String aaiServiceRole = "voLTE role" + String aaiServiceType = "E2E Service" + String aaiServiceRole = "E2E Service" execution.setVariable("modelInvariantUuid", modelInvariantUuid) execution.setVariable("modelUuid", modelUuid) |