Initial OpenECOMP policy/engine commit
[policy/engine.git] / ECOMP-PDP / src / main / java / org / openecomp / policy / xacml / pdp / std / functions / PolicyList.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ECOMP-PDP
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.openecomp.policy.xacml.pdp.std.functions;
21
22 import java.util.ArrayList;
23 import java.util.HashMap;
24 import java.util.List;
25 import java.util.Map;
26
27 import org.apache.commons.logging.Log;
28 import org.apache.commons.logging.LogFactory;
29 import org.openecomp.policy.common.logging.flexlogger.FlexLogger; 
30 import org.openecomp.policy.common.logging.flexlogger.Logger; 
31 /**
32  * Creates a list of policy ids.
33  * 
34  * @version $Revision: 1.3 $
35  */
36 public class PolicyList {
37         
38 //      private static Map<String, Integer> policyMap = new HashMap<>();
39         private static List<String> policyList = new ArrayList<String>();
40         private Logger logger   = FlexLogger.getLogger(this.getClass());
41         
42         
43         public static List<String> getpolicyList(){
44                 return policyList;
45         }
46
47         public static void addPolicyID(String policyID){
48                 if (!policyList.contains(policyID)){
49                         policyList.add(policyID);
50                 }
51         //      policyMap.put(policyID, count);
52         }
53         
54         public static void clearPolicyList(){
55         //      policyMap.clear();
56                 if (!policyList.isEmpty()){
57                         policyList.clear();
58                 }
59         }
60 }