From 36fa9cdd9fb26aa3fbd3a1f35b2d8344d1301c11 Mon Sep 17 00:00:00 2001 From: "andre.schmid" Date: Thu, 22 Jul 2021 11:54:07 +0100 Subject: Specify a model while creating a VSP MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I6ed0a3c979e14c62ecd6488dfd70589df40636e9 Issue-ID: SDC-3656 Signed-off-by: André Schmid --- .../types/VspDescriptionDto.java | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vendor-software-products-rest-types/src/main/java/org/openecomp/sdcrests/vendorsoftwareproducts/types/VspDescriptionDto.java') diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vendor-software-products-rest-types/src/main/java/org/openecomp/sdcrests/vendorsoftwareproducts/types/VspDescriptionDto.java b/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vendor-software-products-rest-types/src/main/java/org/openecomp/sdcrests/vendorsoftwareproducts/types/VspDescriptionDto.java index 90a094e817..e5f4ae0426 100644 --- a/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vendor-software-products-rest-types/src/main/java/org/openecomp/sdcrests/vendorsoftwareproducts/types/VspDescriptionDto.java +++ b/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vendor-software-products-rest-types/src/main/java/org/openecomp/sdcrests/vendorsoftwareproducts/types/VspDescriptionDto.java @@ -1,5 +1,6 @@ /* * Copyright © 2016-2018 European Support Limited + * Modifications Copyright (C) 2021 Nordix Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,13 +16,22 @@ */ package org.openecomp.sdcrests.vendorsoftwareproducts.types; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.stream.Collectors; import javax.validation.constraints.NotNull; import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.ToString; +import org.apache.commons.collections.CollectionUtils; import org.openecomp.sdc.common.util.ValidationUtils; import org.openecomp.sdc.vendorsoftwareproduct.dao.type.LicenseType; import org.openecomp.sdc.vendorsoftwareproduct.types.LicensingData; @Data +@ToString +@EqualsAndHashCode public class VspDescriptionDto { @NotNull @@ -40,6 +50,7 @@ public class VspDescriptionDto { private String licensingVersion; // this will be populated with vlm version private LicenseType licenseType; private LicensingData licensingData; + private List selectedModelList; public void setName(final String name) { this.name = ValidationUtils.sanitizeInputString(name); @@ -52,4 +63,19 @@ public class VspDescriptionDto { public void setDescription(final String description) { this.description = ValidationUtils.sanitizeInputString(description); } + + public void setSelectedModelList(final List selectedModelList) { + if (CollectionUtils.isEmpty(selectedModelList)) { + this.selectedModelList = new ArrayList<>(); + return; + } + this.selectedModelList = selectedModelList.stream().map(ValidationUtils::sanitizeInputString).collect(Collectors.toList()); + } + + public List getSelectedModelList() { + if (selectedModelList == null) { + return Collections.emptyList(); + } + return new ArrayList<>(selectedModelList); + } } -- cgit 1.2.3-korg