diff options
author | ayalaben <ayala.benzvi@amdocs.com> | 2018-10-18 17:51:46 +0300 |
---|---|---|
committer | ayalaben <ayala.benzvi@amdocs.com> | 2018-10-18 17:51:46 +0300 |
commit | 55a58e51dcae5a23c1679b5620237f13bcee8216 (patch) | |
tree | 50a81e87d81dc3c62206670c2c2cc60ca4c92f83 /openecomp-be/api | |
parent | 74307186c7d4401ba35d596c16aca10268921788 (diff) |
VSP submit doesn't validate vlm version
Change-Id: I8105cc83c0ba6ec3b45a04672399ca6ac9986146
Issue-ID: SDC-1843
Signed-off-by: ayalaben <ayala.benzvi@amdocs.com>
Diffstat (limited to 'openecomp-be/api')
1 files changed, 3 insertions, 1 deletions
diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vendor-software-products-rest-services/src/main/java/org/openecomp/sdcrests/vsp/rest/services/VendorSoftwareProductsImpl.java b/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vendor-software-products-rest-services/src/main/java/org/openecomp/sdcrests/vsp/rest/services/VendorSoftwareProductsImpl.java index f0fcd15939..36e076083f 100644 --- a/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vendor-software-products-rest-services/src/main/java/org/openecomp/sdcrests/vsp/rest/services/VendorSoftwareProductsImpl.java +++ b/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vendor-software-products-rest-services/src/main/java/org/openecomp/sdcrests/vsp/rest/services/VendorSoftwareProductsImpl.java @@ -496,7 +496,9 @@ public class VendorSoftwareProductsImpl implements VendorSoftwareProducts { private Optional<ValidationResponse> submit(String vspId, Version version, String message, String user) throws IOException { - ValidationResponse validationResponse = vendorSoftwareProductManager.validate(vspId, version); + VspDetails vspDetails = vendorSoftwareProductManager.getVsp(vspId, version); + vspDetails.setVlmVersion(versioningManager.get(vspDetails.getVendorId(),vspDetails.getVlmVersion())); + ValidationResponse validationResponse = vendorSoftwareProductManager.validate(vspDetails); Map<String, List<ErrorMessage>> compilationErrors = vendorSoftwareProductManager.compile(vspId, version); if (!validationResponse.isValid() || MapUtils.isNotEmpty(compilationErrors)) { |