26f49196368fcaaf3273dc6ea41e3059ab6745b7
[policy/engine.git] / ONAP-PDP-REST / src / main / java / org / onap / policy / pdp / rest / api / services / ListConfigService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PDP-REST
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 package org.onap.policy.pdp.rest.api.services;
21
22 import java.util.ArrayList;
23 import java.util.Collection;
24
25 import org.onap.policy.api.ConfigRequestParameters;
26 import org.onap.policy.common.logging.flexlogger.FlexLogger;
27 import org.onap.policy.common.logging.flexlogger.Logger;
28 import org.onap.policy.pdp.rest.api.models.PolicyConfig;
29 import org.springframework.http.HttpStatus;
30
31 public class ListConfigService {
32     private static Logger LOGGER = FlexLogger.getLogger(ListConfigService.class.getName());
33     
34     private Collection<String> results = null;
35     private HttpStatus status = HttpStatus.BAD_REQUEST;
36
37     public ListConfigService(ConfigRequestParameters configRequestParameters,
38             String requestID) {
39         GetConfigService getConfigService = new GetConfigService(configRequestParameters,requestID);
40         Collection<PolicyConfig> policyConfigs = getConfigService.getResult();
41         LOGGER.info("Transferring Config Results to List. ");
42         if(policyConfigs!=null){
43             results = new ArrayList<String>();
44             status = HttpStatus.OK;
45             for(PolicyConfig policyConfig : policyConfigs){
46                 if(policyConfig.getPolicyConfigMessage()!=null && policyConfig.getPolicyConfigMessage().contains("PE300")){
47                     results.add(policyConfig.getPolicyConfigMessage());
48                     status = HttpStatus.BAD_REQUEST;
49                 } else {
50                     results.add("Policy Name: " + policyConfig.getPolicyName());
51                 }
52             }
53         }
54     }
55
56     public Collection<String> getResult() {
57         return results;
58     }
59
60     public HttpStatus getResponseCode() {
61         return status;
62     }
63
64 }