diff options
author | talig <talig@amdocs.com> | 2018-10-24 16:57:45 +0300 |
---|---|---|
committer | talig <talig@amdocs.com> | 2018-10-24 16:58:14 +0300 |
commit | 838c368551e086ef14936b86e58d7148a131c4f5 (patch) | |
tree | e8a5731680f25467c4846fa1776406c07ddcbbc9 /openecomp-be/api | |
parent | 93c6575bb4efd4744b54d800a9057f66b5687035 (diff) |
Validate vlm is not draft during vsp submit
If vlm version is used - make sure it is Certified,
otherwise - make sure the vlm contains at least one Certified version
Change-Id: Iacb28d622f334d7d81d3e56991e5a2540ed7bcc3
Issue-ID: SDC-1843
Signed-off-by: talig <talig@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 36e076083f..582bf473d7 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 @@ -497,7 +497,9 @@ public class VendorSoftwareProductsImpl implements VendorSoftwareProducts { String user) throws IOException { VspDetails vspDetails = vendorSoftwareProductManager.getVsp(vspId, version); - vspDetails.setVlmVersion(versioningManager.get(vspDetails.getVendorId(),vspDetails.getVlmVersion())); + if (vspDetails.getVlmVersion() != null) { + vspDetails.setVlmVersion(versioningManager.get(vspDetails.getVendorId(), vspDetails.getVlmVersion())); + } ValidationResponse validationResponse = vendorSoftwareProductManager.validate(vspDetails); Map<String, List<ErrorMessage>> compilationErrors = vendorSoftwareProductManager.compile(vspId, version); |