aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorzm330 <zhangminyj@chinamobile.com>2021-01-07 20:14:45 +0800
committerzm330 <zhangminyj@chinamobile.com>2021-01-07 20:14:58 +0800
commit01d865e89f94af25b477659608b7311b3ddadc1e (patch)
tree7f508a97cb3976155325fd792c3e135dbf2e48e6 /common
parent67160220ddd1463696f3d56fde035dc4f3949f73 (diff)
Fix some deallocate issues
Issue-ID: SO-3411 Signed-off-by: zm330 <zhangminyj@chinamobile.com> Change-Id: Ie61983b9e9567bd21e5cd12cda4d76ec422c5dee
Diffstat (limited to 'common')
-rw-r--r--common/src/main/java/org/onap/so/beans/nsmf/NssmfRequest.java4
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();
}