2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
20 package org.openecomp.sdcrests.vsp.rest.mapping;
22 import org.apache.commons.lang3.StringUtils;
23 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.LicenseType;
24 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.VspDetails;
25 import org.openecomp.sdc.vendorsoftwareproduct.types.LicensingData;
26 import org.openecomp.sdcrests.mapping.MappingBase;
27 import org.openecomp.sdcrests.vendorsoftwareproducts.types.VspDetailsDto;
29 public class MapVspDetailsToDto extends MappingBase<VspDetails, VspDetailsDto> {
32 public void doMapping(VspDetails source, VspDetailsDto target) {
33 target.setId(source.getId());
34 target.setVersion(source.getVersion() == null ? null : source.getVersion().getId());
35 target.setName(source.getName());
36 target.setDescription(source.getDescription());
37 target.setIcon(source.getIcon());
38 target.setCategory(source.getCategory());
39 target.setSubCategory(source.getSubCategory());
40 target.setVendorId(source.getVendorId());
41 target.setVendorName(source.getVendorName());
42 target.setLicensingVersion(source.getVlmVersion() == null ? null : source.getVlmVersion().getId());
43 if (StringUtils.isNotBlank(source.getLicenseType())) {
44 target.setLicenseType(LicenseType.valueOf(source.getLicenseType()));
45 } else if (StringUtils.isNotBlank(target.getLicensingVersion())) {
46 target.setLicenseType(LicenseType.INTERNAL);
48 if (source.getLicenseAgreement() != null || source.getFeatureGroups() != null) {
49 LicensingData licensingData = new LicensingData();
50 licensingData.setLicenseAgreement(source.getLicenseAgreement());
51 licensingData.setFeatureGroups(source.getFeatureGroups());
52 target.setLicensingData(licensingData);
54 target.setOnboardingMethod(source.getOnboardingMethod());