aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorzm330 <zhangminyj@chinamobile.com>2021-03-11 16:49:23 +0800
committerzm330 <zhangminyj@chinamobile.com>2021-03-11 16:49:51 +0800
commitf3b8f846dec599050700b147f0e4824b54cf9d65 (patch)
treefad279ec107bc0a559fc7382980ab9b6703cbe47 /common
parent1d316a3c50f978313eca360c1a1636de68afee9d (diff)
Update NSI selection process support shared NSI and add sst parameter
Issue-ID: SO-3381 Signed-off-by: zm330 <zhangminyj@chinamobile.com> Change-Id: I84f76e4e32fabc35fbd448ed1234d3427f89279d
Diffstat (limited to 'common')
-rw-r--r--common/src/main/java/org/onap/so/beans/nsmf/NssmfRequest.java4
1 files changed, 4 insertions, 0 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 356c1cb4de..32ba36275e 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
@@ -43,6 +43,8 @@ public class NssmfRequest implements Serializable {
private NetworkType networkType;
+ private String sST;
+
private Object additionalProperties;
public NssmfRequest() {}
@@ -56,8 +58,10 @@ public class NssmfRequest implements Serializable {
this.additionalProperties = additionalProperties;
this.serviceInstanceID = serviceInfo.getNssiId();
this.name = serviceInfo.getNssiName();
+ this.sST = serviceInfo.getSST();
}
+
}