d1a14d502457ec124e1ee6a878fcbc220b2d7b8c
[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.List;
24 /**
25  * Creates a list of policy ids.
26  * 
27  * @version $Revision: 1.3 $
28  */
29 public class PolicyList {
30         
31         private static List<String> policyList = new ArrayList<String>();
32         
33         
34         public static List<String> getpolicyList(){
35                 return policyList;
36         }
37
38         public static void addPolicyID(String policyID){
39                 if (!policyList.contains(policyID)){
40                         policyList.add(policyID);
41                 }
42         }
43         
44         public static void clearPolicyList(){
45                 if (!policyList.isEmpty()){
46                         policyList.clear();
47                 }
48         }
49 }