Controller Blueprints MS
[ccsdk/cds.git] / ms / controllerblueprints / modules / service / src / main / java / org / onap / ccsdk / apps / controllerblueprints / service / ConfigModelValidatorService.java
1 /*\r
2  * Copyright © 2017-2018 AT&T Intellectual Property.\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  *     http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 package org.onap.ccsdk.apps.controllerblueprints.service;\r
18 \r
19 import com.google.common.base.Preconditions;\r
20 import org.apache.commons.lang3.StringUtils;\r
21 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintException;\r
22 import org.onap.ccsdk.apps.controllerblueprints.core.data.ServiceTemplate;\r
23 import org.onap.ccsdk.apps.controllerblueprints.core.utils.JacksonUtils;\r
24 import org.onap.ccsdk.apps.controllerblueprints.service.validator.ServiceTemplateValidator;\r
25 import org.springframework.stereotype.Service;\r
26 \r
27 /**\r
28  * ServiceTemplateValidatorService.java Purpose: Provide Service to Validate Service Model Template\r
29  *\r
30  * @author Brinda Santh\r
31  * @version 1.0\r
32  */\r
33 \r
34 @Service\r
35 public class ConfigModelValidatorService {\r
36 \r
37     /**\r
38      * This is a validateServiceTemplate\r
39      *\r
40      * @param serviceTemplateContent\r
41      * @return ServiceTemplate\r
42      * @throws BluePrintException\r
43      */\r
44     public ServiceTemplate validateServiceTemplate(String serviceTemplateContent) throws BluePrintException {\r
45         Preconditions.checkArgument(StringUtils.isNotBlank(serviceTemplateContent), "Service Template Content is  (" + serviceTemplateContent + ") not Defined.");\r
46         ServiceTemplate serviceTemplate =\r
47                 JacksonUtils.readValue(serviceTemplateContent, ServiceTemplate.class);\r
48         return validateServiceTemplate(serviceTemplate);\r
49     }\r
50 \r
51     /**\r
52      * This is a enhanceServiceTemplate\r
53      *\r
54      * @param serviceTemplate\r
55      * @return ServiceTemplate\r
56      * @throws BluePrintException\r
57      */\r
58     @SuppressWarnings("squid:S00112")\r
59     public ServiceTemplate validateServiceTemplate(ServiceTemplate serviceTemplate) throws BluePrintException {\r
60         Preconditions.checkNotNull(serviceTemplate, "Service Template is not defined.");\r
61         ServiceTemplateValidator validator = new ServiceTemplateValidator();\r
62         validator.validateServiceTemplate(serviceTemplate);\r
63         return serviceTemplate;\r
64     }\r
65 \r
66 \r
67 }\r