aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/services/AaiService.java
diff options
context:
space:
mode:
authorEylon Malin <eylon.malin@intl.att.com>2019-09-01 16:24:41 +0300
committerEylon Malin <eylon.malin@intl.att.com>2019-09-01 16:59:37 +0300
commit03f54a0b7de599e0a012ff6d35d0e74e20ca36c2 (patch)
tree3e70969a2142fc7fe5153cab3adcc451e22b0a9f /vid-app-common/src/main/java/org/onap/vid/services/AaiService.java
parente6c30425575cd76a3955b03ab389150ed74fbb1d (diff)
add getNewestModelVersionByInvariant to controller and service
Also add testGetActiveNetworkList UT Issue-ID: VID-378 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com> Change-Id: I97c2ae029272aba915d5f9699bccff0eb9d49329 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
Diffstat (limited to 'vid-app-common/src/main/java/org/onap/vid/services/AaiService.java')
-rw-r--r--vid-app-common/src/main/java/org/onap/vid/services/AaiService.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/services/AaiService.java b/vid-app-common/src/main/java/org/onap/vid/services/AaiService.java
index 31fbe65d8..bc26b5eb0 100644
--- a/vid-app-common/src/main/java/org/onap/vid/services/AaiService.java
+++ b/vid-app-common/src/main/java/org/onap/vid/services/AaiService.java
@@ -32,6 +32,7 @@ import org.onap.vid.aai.model.AaiGetInstanceGroupsByCloudRegion;
import org.onap.vid.aai.model.AaiGetOperationalEnvironments.OperationalEnvironmentList;
import org.onap.vid.aai.model.AaiGetPnfs.Pnf;
import org.onap.vid.aai.model.AaiGetTenatns.GetTenantsResponse;
+import org.onap.vid.aai.model.ModelVer;
import org.onap.vid.aai.model.PortDetailsTranslator;
import org.onap.vid.asdc.beans.Service;
import org.onap.vid.model.SubscriberList;
@@ -99,4 +100,6 @@ public interface AaiService {
List<VpnBinding> getVpnListByVpnType(String vpnType);
List<Network> getL3NetworksByCloudRegion(String cloudRegionId, String tenantId, String networkRole);
+
+ ModelVer getNewestModelVersionByInvariantId(String modelInvariantId);
}