2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.policyEngine;
23 import java.util.Arrays;
24 import java.util.HashMap;
25 import java.util.LinkedList;
26 import java.util.List;
28 import java.util.UUID;
30 import org.onap.policy.api.AttributeType;
31 import org.onap.policy.api.PolicyChangeResponse;
32 import org.onap.policy.api.PolicyClass;
33 import org.onap.policy.api.PolicyEngine;
34 import org.onap.policy.api.PolicyParameters;
36 public class ActionPolicyClient {
37 static Boolean isEdit = true;
38 public static void main(String[] args) {
40 PolicyEngine policyEngine = new PolicyEngine("config.properties");
41 PolicyParameters policyParameters = new PolicyParameters();
43 policyParameters.setPolicyClass(PolicyClass.Action); //required
44 policyParameters.setPolicyName("MikeAPItesting.testActionAPI5"); //required
45 policyParameters.setPolicyDescription("This is a sample Action policy update example with no Action Body"); //optional
46 //policyParameters.setPolicyScope("MikeAPItesting"); //Directory will be created where the Policies are saved... this displays a a subscope on the GUI
48 //Set the Component Attributes... These are Optional
49 Map<String, String> configAttributes = new HashMap<>();
50 configAttributes.put("Template", "UpdateTemplate");
51 configAttributes.put("controller", "default");
52 configAttributes.put("SamPoll", "30");
53 configAttributes.put("value", "abcd");
55 Map<AttributeType, Map<String,String>> attributes = new HashMap<>();
56 attributes.put(AttributeType.MATCHING, configAttributes);
57 policyParameters.setAttributes(attributes);
60 List<String> dynamicRuleAlgorithmLabels = new LinkedList<>();
61 List<String> dynamicRuleAlgorithmFunctions = new LinkedList<>();
62 List<String> dynamicRuleAlgorithmField1 = new LinkedList<>();
63 List<String> dynamicRuleAlgorithmField2 = new LinkedList<>();
65 //Example of a complex Rule algorithm
66 /* label field1 function field2
67 * *****************************************************
68 * A1 cobal integer-equal 90
69 * A2 cap string-contains ca
70 * A3 cobal integer-equal 90
72 * A5 Config integer-greater-than 45
76 dynamicRuleAlgorithmLabels = Arrays.asList("A1","A2","A3","A4","A5","A6","A7");
77 dynamicRuleAlgorithmField1 = Arrays.asList("cobal","cap","cobal","A2","Config","A4","A1");
78 dynamicRuleAlgorithmFunctions = Arrays.asList("integer-equal","string-contains","integer-equal","and","integer-greater-than","or","and");
79 dynamicRuleAlgorithmField2 = Arrays.asList("90","ca","90","A3","45","A5","A6");
81 policyParameters.setDynamicRuleAlgorithmLabels(dynamicRuleAlgorithmLabels);
82 policyParameters.setDynamicRuleAlgorithmField1(dynamicRuleAlgorithmField1);
83 policyParameters.setDynamicRuleAlgorithmFunctions(dynamicRuleAlgorithmFunctions);
84 policyParameters.setDynamicRuleAlgorithmField2(dynamicRuleAlgorithmField2);
86 policyParameters.setActionPerformer("PEP");
87 policyParameters.setActionAttribute("mikeTest2");
88 policyParameters.setRequestID(UUID.randomUUID());
90 // API method to create Policy or update policy
91 PolicyChangeResponse response = null;
93 response = policyEngine.createPolicy(policyParameters);
95 response = policyEngine.updatePolicy(policyParameters);
98 if(response.getResponseCode()==200){
99 System.out.println(response.getResponseMessage());
100 System.out.println("Policy Created Successfully!");
102 System.out.println("Error! " + response.getResponseMessage());
104 } catch (Exception e) {
105 System.err.println(e.getMessage() + e);