diff options
author | 付光荣10144542 <fu.guangrong@zte.com.cn> | 2018-08-27 08:34:31 +0800 |
---|---|---|
committer | 付光荣10144542 <fu.guangrong@zte.com.cn> | 2018-08-27 08:34:31 +0800 |
commit | a51fe4e844a8b1857da873a719c22562bed016da (patch) | |
tree | fd44c5839e31f0d56300780d203ac7b96d848638 /rules | |
parent | 6a237c08f158ccbfdf13b44cbb62b3bcd2b97d2a (diff) |
Changed a Param Name of the AAI field
Change-Id: I0c4b0de7ae6924969a9f0c28020a1b4650b73b63
Issue-ID: HOLMES-162
Signed-off-by: 付光荣10144542 <fu.guangrong@zte.com.cn>
Diffstat (limited to 'rules')
-rw-r--r-- | rules/ccvnp-rule.drl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/ccvnp-rule.drl b/rules/ccvnp-rule.drl index 9de2491..c7efd02 100644 --- a/rules/ccvnp-rule.drl +++ b/rules/ccvnp-rule.drl @@ -78,7 +78,7 @@ function Map<String, Object> getAdditionalResourceInfo(String networkId, String JSONObject o = instances.getJSONObject(i); String name = o.getString("service-instance-name"); String id = o.getString("service-instance-id"); - ret.put(name + ".input-parameters", o.getString("input-parameters")); + ret.put(id + ".input-parameters", o.getString("input-parameters")); sbn.append(name).append(","); sbi.append(id).append(","); } |