[SDC] Onboarding 1710 rebase.
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-software-products-rest / vendor-software-products-rest-services / src / main / java / org / openecomp / sdcrests / vsp / rest / mapping / MapNicEntityToNicCreationResponseDto.java
1 package org.openecomp.sdcrests.vsp.rest.mapping;
2
3
4 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.NicEntity;
5 import org.openecomp.sdcrests.mapping.MappingBase;
6 import org.openecomp.sdcrests.vendorsoftwareproducts.types.NicCreationResponseDto;
7
8 public class MapNicEntityToNicCreationResponseDto extends MappingBase<NicEntity,
9     NicCreationResponseDto> {
10
11
12   @Override
13   public void doMapping(NicEntity source, NicCreationResponseDto target) {
14     target.setNicId(source.getId());
15   }
16 }