23bf5d5357e90440e4c960c4e5aafa18ebc0b73e
[sdc.git] /
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 }