fe626e374c42dee43aec0e9c46f37f72654a78a7
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-license-rest / vendor-license-rest-services / src / main / java / org / openecomp / sdcrests / vendorlicense / rest / mapping / MapEntitlementPoolRequestDtoToEntitlementPoolEntity.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
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=========================================================
19  */
20
21 package org.openecomp.sdcrests.vendorlicense.rest.mapping;
22
23 import org.openecomp.sdc.vendorlicense.dao.types.ChoiceOrOther;
24 import org.openecomp.sdc.vendorlicense.dao.types.EntitlementPoolEntity;
25 import org.openecomp.sdc.vendorlicense.dao.types.MultiChoiceOrOther;
26 import org.openecomp.sdcrests.mapping.MappingBase;
27 import org.openecomp.sdcrests.vendorlicense.types.EntitlementPoolRequestDto;
28
29 public class MapEntitlementPoolRequestDtoToEntitlementPoolEntity
30     extends MappingBase<EntitlementPoolRequestDto, EntitlementPoolEntity> {
31   @Override
32   public void doMapping(EntitlementPoolRequestDto source, EntitlementPoolEntity target) {
33     target.setName(source.getName());
34     target.setDescription(source.getDescription());
35     target.setThresholdValue(source.getThresholdValue());
36     target.setThresholdUnit(source.getThresholdUnits());
37     target.setIncrements(source.getIncrements());
38
39     MapChoiceOrOtherDtoToChoiceOrOther choiceOrOtherMapper =
40         new MapChoiceOrOtherDtoToChoiceOrOther();
41     target.setEntitlementMetric(
42         choiceOrOtherMapper.applyMapping(source.getEntitlementMetric(), ChoiceOrOther.class));
43     target.setAggregationFunction(
44         choiceOrOtherMapper.applyMapping(source.getAggregationFunction(), ChoiceOrOther.class));
45     target.setOperationalScope(new MapMultiChoiceOrOtherDtoToMultiChoiceOrOther()
46         .applyMapping(source.getOperationalScope(), MultiChoiceOrOther.class));
47     target.setTime(choiceOrOtherMapper.applyMapping(source.getTime(), ChoiceOrOther.class));
48
49     target.setManufacturerReferenceNumber(source.getManufacturerReferenceNumber());
50   }
51 }