Removed logger.debug(, exception)
[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 / MapComponentDependencyModelRequestToEntity.java
1 /*
2  * Copyright © 2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15 */
16
17 package org.openecomp.sdcrests.vsp.rest.mapping;
18
19
20 import org.openecomp.sdc.common.errors.CoreException;
21 import org.openecomp.sdc.common.errors.ErrorCode;
22 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.ComponentDependencyModelEntity;
23 import org.openecomp.sdc.vendorsoftwareproduct.errors.ComponentDependencyModelErrorBuilder;
24 import org.openecomp.sdcrests.mapping.MappingBase;
25 import org.openecomp.sdcrests.vendorsoftwareproducts.types.ComponentDependencyModel;
26 import org.openecomp.sdcrests.vendorsoftwareproducts.types.ComponentRelationType;
27
28 public class MapComponentDependencyModelRequestToEntity extends
29     MappingBase<ComponentDependencyModel, ComponentDependencyModelEntity> {
30
31   @Override
32   public void doMapping(ComponentDependencyModel source,
33                         ComponentDependencyModelEntity target) {
34     target.setSourceComponentId(source.getSourceId());
35     target.setTargetComponentId(source.getTargetId());
36     try {
37       ComponentRelationType.valueOf(source.getRelationType());
38       target.setRelation(source.getRelationType());
39     } catch (IllegalArgumentException exception) {
40       ErrorCode errorCode =
41           ComponentDependencyModelErrorBuilder.getInvalidRelationTypeErrorBuilder();
42       throw new CoreException(errorCode, exception);
43     }
44   }
45 }