From aea64ba99fa9c9b51112b30aeb0872c4cdb89759 Mon Sep 17 00:00:00 2001 From: "andre.schmid" Date: Wed, 18 Aug 2021 14:34:33 +0100 Subject: Validate the Resource Model before importing VSP Validates the Resource Model selected during the Import VSP. This model must be aligned with one of the models that the imported VSP relates to. Fix VSP package retrieval to get the exact version from the VSP chosen during the Import VSP process. Introduces a client in the Catalog to retrieve from the Onboarding backend a VSP information using its Id and version Id. Change-Id: Ic8fb52b6daadc0e7203c81a9c15c3e46d5b9fffb Issue-ID: SDC-3675 Signed-off-by: andre.schmid --- .../src/main/java/org/openecomp/sdc/be/config/Configuration.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'common-app-api') diff --git a/common-app-api/src/main/java/org/openecomp/sdc/be/config/Configuration.java b/common-app-api/src/main/java/org/openecomp/sdc/be/config/Configuration.java index 04ba19ef9a..96688ce5a8 100644 --- a/common-app-api/src/main/java/org/openecomp/sdc/be/config/Configuration.java +++ b/common-app-api/src/main/java/org/openecomp/sdc/be/config/Configuration.java @@ -348,7 +348,9 @@ public class Configuration extends BasicConfiguration { private String protocol = "http"; private String host; private Integer port; - private String downloadCsarUri; + private String getLatestVspPackageUri; + private String getVspPackageUri; + private String getVspUri; @ToString.Exclude private String healthCheckUri; } -- cgit 1.2.3-korg