diff options
author | zm330 <zhangminyj@chinamobile.com> | 2021-01-07 20:14:45 +0800 |
---|---|---|
committer | zm330 <zhangminyj@chinamobile.com> | 2021-01-07 20:14:58 +0800 |
commit | 01d865e89f94af25b477659608b7311b3ddadc1e (patch) | |
tree | 7f508a97cb3976155325fd792c3e135dbf2e48e6 /common/src/main/java | |
parent | 67160220ddd1463696f3d56fde035dc4f3949f73 (diff) |
Fix some deallocate issues
Issue-ID: SO-3411
Signed-off-by: zm330 <zhangminyj@chinamobile.com>
Change-Id: Ie61983b9e9567bd21e5cd12cda4d76ec422c5dee
Diffstat (limited to 'common/src/main/java')
-rw-r--r-- | common/src/main/java/org/onap/so/beans/nsmf/NssmfRequest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/src/main/java/org/onap/so/beans/nsmf/NssmfRequest.java b/common/src/main/java/org/onap/so/beans/nsmf/NssmfRequest.java index 3292730f29..356c1cb4de 100644 --- a/common/src/main/java/org/onap/so/beans/nsmf/NssmfRequest.java +++ b/common/src/main/java/org/onap/so/beans/nsmf/NssmfRequest.java @@ -37,7 +37,7 @@ public class NssmfRequest implements Serializable { private String globalSubscriberId; - private String serviceInstanceId; + private String serviceInstanceID; private String subscriptionServiceType; @@ -54,7 +54,7 @@ public class NssmfRequest implements Serializable { this.subscriptionServiceType = serviceInfo.getSubscriptionServiceType(); this.networkType = networkType; this.additionalProperties = additionalProperties; - this.serviceInstanceId = serviceInfo.getNssiId(); + this.serviceInstanceID = serviceInfo.getNssiId(); this.name = serviceInfo.getNssiName(); } |