diff options
author | Harry Huang <huangxiangyu5@huawei.com> | 2020-04-13 14:13:13 +0800 |
---|---|---|
committer | Harry Huang <huangxiangyu5@huawei.com> | 2020-04-13 14:13:13 +0800 |
commit | f834c65d0df4fe0bc8baaccaef3f49f6af41b074 (patch) | |
tree | ba739f5dd18d0c493bc31032b1a9df47bc858672 /bpmn/MSOCommonBPMN | |
parent | 3d0979cfa4cf4cdde3f5b29f00757875b3271067 (diff) |
Modify NST selection request body
Issue-ID: SO-2368
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
Change-Id: Ie081120278456c24bac6b17cea9d7271370c7059
Diffstat (limited to 'bpmn/MSOCommonBPMN')
-rw-r--r-- | bpmn/MSOCommonBPMN/src/main/groovy/org/onap/so/bpmn/common/scripts/OofUtils.groovy | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/bpmn/MSOCommonBPMN/src/main/groovy/org/onap/so/bpmn/common/scripts/OofUtils.groovy b/bpmn/MSOCommonBPMN/src/main/groovy/org/onap/so/bpmn/common/scripts/OofUtils.groovy index 809472372c..40d76af0ba 100644 --- a/bpmn/MSOCommonBPMN/src/main/groovy/org/onap/so/bpmn/common/scripts/OofUtils.groovy +++ b/bpmn/MSOCommonBPMN/src/main/groovy/org/onap/so/bpmn/common/scripts/OofUtils.groovy @@ -534,6 +534,7 @@ class OofUtils { public String buildSelectNSTRequest(String requestId, Map<String, Object> profileInfo) { def transactionId = requestId logger.debug( "transactionId is: " + transactionId) + String callbackUrl = "http://0.0.0.0:9000/callback/" ObjectMapper objectMapper = new ObjectMapper() String json = objectMapper.writeValueAsString(profileInfo) StringBuilder response = new StringBuilder() @@ -543,11 +544,14 @@ class OofUtils { " \"transactionId\": \"${transactionId}\",\n" + " \"requestId\": \"${requestId}\",\n" + " \"sourceId\": \"so\",\n" + - " \"timeout\": 600\n" + + " \"timeout\": 600,\n" + + " \"callbackUrl\": \"${callbackUrl}\"\n" + " },\n") - response.append(" \"serviceInfo\": \n") + response.append(" \"serviceProfile\": {\n" + + " \"serviceProfileParameters\": \n") response.append(json); - response.append("\n }\n") + response.append("\n }\n") + response.append("\n}\n") return response.toString() } } |