6883f3e48c4561070086cb0e172b09e2f16715fa
[sdc.git] /
1 package org.openecomp.sdcrests.vendorlicense.rest.mapping;
2
3 import org.openecomp.sdc.vendorlicense.dao.types.LimitEntity;
4 import org.openecomp.sdcrests.mapping.MappingBase;
5
6 public class MapLimitEntityToLimitCreationDto extends
7     MappingBase<LimitEntity, LimitCreationDto> {
8   @Override
9   public void doMapping(LimitEntity source, LimitCreationDto target) {
10     target.setLimitId(source.getId());
11   }
12 }