Naming micro-service - upgrade to policy decision API.
[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     <T, R> GetConfigResponse makeOutboundCall( String policyName, T request, Class<R> response) throws Exception {
49         ObjectMapper objectmapper = new ObjectMapper();
50         PolicyDetails policyDetails = policyDetailsRepo.findPolicyResponseByName(policyName);
51         if (policyDetails == null) {
52             throw new Exception("Unable to find the policy " + policyName);
53         }
54         return handleResponse( policyDetails.getPolicyResponse() );
55     }
56 }