diff options
author | c00149107 <chenchuanyu@huawei.com> | 2017-12-05 11:34:09 +0800 |
---|---|---|
committer | c00149107 <chenchuanyu@huawei.com> | 2017-12-05 11:35:42 +0800 |
commit | 170a6b51de31abd57c8b41a594f0a9bf1eb5f4e8 (patch) | |
tree | 3374e52c8bf2b7853af4a8216cd349d7e260140f | |
parent | 264228ce4fec3204502f0e8f3b906ad12e192825 (diff) |
Correct Service Type value
Correct Service Type value for E2E service
Issue-ID: SO-354
Change-Id: I4265dfac3793117dc83a6ae97a0dddb1d532d58c
Signed-off-by: c00149107 <chenchuanyu@huawei.com>
-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) |