summaryrefslogtreecommitdiffstats
path: root/appc-outbound
diff options
context:
space:
mode:
authorJakub Dudycz <jakub.dudycz@nokia.com>2018-01-25 14:10:33 +0100
committerPatrick Brady <pb071s@att.com>2018-01-25 19:22:37 +0000
commitf65fdbba50c5a9be4b85c5c493f22502f014dcbb (patch)
tree2de265858ad9d9cf3281af3a53c539e23695e10d /appc-outbound
parentd69363aa407120d7230030828b7e16195f3b01d8 (diff)
AaiVnfcInfo refactor
Change-Id: I653d19395a083cc27e955f48d3ff5df5d3be9816 Issue-ID: APPC-513 Signed-off-by: Jakub Dudycz <jakub.dudycz@nokia.com>
Diffstat (limited to 'appc-outbound')
-rw-r--r--appc-outbound/appc-network-inventory-client/provider/src/main/java/org/onap/appc/aai/data/AaiVnfcInfo.java11
1 files changed, 7 insertions, 4 deletions
diff --git a/appc-outbound/appc-network-inventory-client/provider/src/main/java/org/onap/appc/aai/data/AaiVnfcInfo.java b/appc-outbound/appc-network-inventory-client/provider/src/main/java/org/onap/appc/aai/data/AaiVnfcInfo.java
index 29b3c592a..89c8ce0a4 100644
--- a/appc-outbound/appc-network-inventory-client/provider/src/main/java/org/onap/appc/aai/data/AaiVnfcInfo.java
+++ b/appc-outbound/appc-network-inventory-client/provider/src/main/java/org/onap/appc/aai/data/AaiVnfcInfo.java
@@ -25,6 +25,12 @@
package org.onap.appc.aai.data;
public class AaiVnfcInfo {
+
+ private String vnfcId;
+ private String vnfcName;
+ private String vnfcFunctionCode;
+ private String vnfcOamIpAddress;
+
public String getVnfcId() {
return vnfcId;
}
@@ -57,8 +63,5 @@ public class AaiVnfcInfo {
this.vnfcOamIpAddress = vnfcOamIpAddress;
}
- String vnfcId;
- String vnfcName;
- String vnfcFunctionCode;
- String vnfcOamIpAddress;
+
}