summaryrefslogtreecommitdiffstats
path: root/components/slice-analysis-ms/src/main/java/org/onap/slice/analysis/ms/models/policy/AAI.java
diff options
context:
space:
mode:
authorAhila <ahila.pandaram@wipro.com>2020-12-04 18:08:32 +0530
committerAhila <ahila.pandaram@wipro.com>2020-12-04 21:02:25 +0530
commitf6fe21b365fc6b89f79b01d6b08a2f75d7ea4dad (patch)
tree58e50c2da1a3ffd73ceede048eaa0a3d0a4cd4ee /components/slice-analysis-ms/src/main/java/org/onap/slice/analysis/ms/models/policy/AAI.java
parent4b2b1445bef3b760ed29efa1c7c78977dde73452 (diff)
Slice-analysis-ms and Policy integration issue fixes
Corrected the Test failure Issue-ID: DCAEGEN2-2540 Signed-off-by: Ahila <ahila.pandaram@wipro.com> Change-Id: I9a8515fc9ed3c8ce124ddd51815c27ccdeadb900
Diffstat (limited to 'components/slice-analysis-ms/src/main/java/org/onap/slice/analysis/ms/models/policy/AAI.java')
-rw-r--r--components/slice-analysis-ms/src/main/java/org/onap/slice/analysis/ms/models/policy/AAI.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/components/slice-analysis-ms/src/main/java/org/onap/slice/analysis/ms/models/policy/AAI.java b/components/slice-analysis-ms/src/main/java/org/onap/slice/analysis/ms/models/policy/AAI.java
index 73d94d75..9083ff40 100644
--- a/components/slice-analysis-ms/src/main/java/org/onap/slice/analysis/ms/models/policy/AAI.java
+++ b/components/slice-analysis-ms/src/main/java/org/onap/slice/analysis/ms/models/policy/AAI.java
@@ -31,8 +31,8 @@ public class AAI {
private String vserverIsClosedLoopDisabled;
@JsonProperty("vserver.prov-status")
private String vserverProvStatus;
- @JsonProperty("vserver.vserver-name")
- private String vserverVserverName;
+ @JsonProperty("generic-vnf.vnf-id")
+ private String vServerVNFId;
public String getVserverIsClosedLoopDisabled() {
return vserverIsClosedLoopDisabled;
@@ -50,12 +50,12 @@ public class AAI {
this.vserverProvStatus = vserverProvStatus;
}
- public String getVserverVserverName() {
- return vserverVserverName;
+ public String getvServerVNFId() {
+ return vServerVNFId;
}
- public void setVserverVserverName(String vserverVserverName) {
- this.vserverVserverName = vserverVserverName;
+ public void setvServerVNFId(String vServerVNFId) {
+ this.vServerVNFId = vServerVNFId;
}
-
+
}