9cb434ff22bd80e4d181f44530107d1ac9bf39c7
[ccsdk/apps.git] / ms / neng / src / main / java / org / onap / ccsdk / apps / ms / neng / service / extinf / impl / PolicyFinderServiceDbImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : CCSDK.apps
4  * ================================================================================
5  * Copyright (C) 2018 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.onap.ccsdk.apps.ms.neng.service.extinf.impl;
22
23 import com.fasterxml.jackson.core.type.TypeReference;
24 import com.fasterxml.jackson.databind.DeserializationFeature;
25 import com.fasterxml.jackson.databind.ObjectMapper;
26 import java.util.List;
27 import java.util.Map;
28 import org.onap.ccsdk.apps.ms.neng.core.resource.model.GetConfigResponse;
29 import org.onap.ccsdk.apps.ms.neng.persistence.entity.PolicyDetails;
30 import org.onap.ccsdk.apps.ms.neng.persistence.repository.PolicyDetailsRepository;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.beans.factory.annotation.Qualifier;
33 import org.springframework.stereotype.Component;
34
35 /**
36  * Finds policies from the database.
37  */
38 @Component
39 @Qualifier("PolicyFinderDbImpl")
40 public class PolicyFinderServiceDbImpl extends PolicyFinderServiceImpl {
41     @Autowired
42     PolicyDetailsRepository policyDetailsRepo;
43
44     /**
45      * Finds the policy with the given name from the DB.
46      */
47     @Override
48     public GetConfigResponse getConfig(String policyName) throws Exception {
49         ObjectMapper objectmapper = new ObjectMapper();
50         objectmapper.enable(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT);
51         PolicyDetails policyDetails = policyDetailsRepo.findPolicyResponseByName(policyName);
52         if (policyDetails == null) {
53             throw new Exception("Unable to find the policy " + policyName);
54         }
55         List<Map<Object, Object>> respObj = objectmapper.readValue(policyDetails.getPolicyResponse(),
56                         new TypeReference<List<Map<Object, Object>>>() {});
57         transformConfigObject(objectmapper, respObj);
58         GetConfigResponse configResp = new GetConfigResponse();
59         configResp.setResponse(respObj);
60         return configResp;
61     }
62 }