summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/pomba/contextbuilder/aai/datatype/Vserver.java
diff options
context:
space:
mode:
authorLeigh, Phillip (pl876u) <phillip.leigh@amdocs.com>2019-02-08 16:23:27 -0500
committerLeigh, Phillip (pl876u) <phillip.leigh@amdocs.com>2019-02-11 10:18:51 -0500
commitb2e9556678bbacd8c3777973b9fa89b63497e026 (patch)
tree2883f06ecbcf5442b5d1cfdedbfb9426d0bf00f0 /src/main/java/org/onap/pomba/contextbuilder/aai/datatype/Vserver.java
parent4b09f26cc90254827fc9a1b406575ed40bc27eab (diff)
Handle L-Interface in AaiCtxBuilder3.0.1-ONAP
Also adapted the sprintframework to aaiCtxBuilder and added more junit test cases Issue-ID: LOG-766 Change-Id: Ibcc81e7ad3602666ff17c660d33b9ab7b57620df Signed-off-by: Leigh, Phillip (pl876u) <phillip.leigh@amdocs.com>
Diffstat (limited to 'src/main/java/org/onap/pomba/contextbuilder/aai/datatype/Vserver.java')
-rw-r--r--src/main/java/org/onap/pomba/contextbuilder/aai/datatype/Vserver.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/java/org/onap/pomba/contextbuilder/aai/datatype/Vserver.java b/src/main/java/org/onap/pomba/contextbuilder/aai/datatype/Vserver.java
index d7b8896..803e65d 100644
--- a/src/main/java/org/onap/pomba/contextbuilder/aai/datatype/Vserver.java
+++ b/src/main/java/org/onap/pomba/contextbuilder/aai/datatype/Vserver.java
@@ -62,6 +62,7 @@ public class Vserver {
private RelationshipList relationshipList;
private List<PserverInstance> pserverInstanceList;
+ private List<LInterfaceInstance> lInterfaceInstanceList;
public List<PserverInstance> getPserverInstanceList() {
return pserverInstanceList;
}
@@ -70,6 +71,14 @@ public class Vserver {
this.pserverInstanceList = pserverInstanceList;
}
+ public List<LInterfaceInstance> getlInterfaceInstanceList() {
+ return lInterfaceInstanceList;
+ }
+
+ public void setlInterfaceInstanceList(List<LInterfaceInstance> lInterfaceInstanceList) {
+ this.lInterfaceInstanceList = lInterfaceInstanceList;
+ }
+
private static final Gson gson = new GsonBuilder().disableHtmlEscaping().create();
public String toJson() {