XACML Platform Enhancements
[policy/engine.git] / PolicyEngineClient / src / test / java / org / onap / policyengine / RawDecisionPolicyClient.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineClient
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.policyengine;
22
23 import java.util.UUID;
24 import org.onap.policy.api.PolicyChangeResponse;
25 import org.onap.policy.api.PolicyClass;
26 import org.onap.policy.api.PolicyEngine;
27 import org.onap.policy.api.PolicyParameters;
28 import org.onap.policy.api.RuleProvider;
29
30 public class RawDecisionPolicyClient {
31     /*
32      * 
33      * To Create a Decision Policy Use case. User need provide valid PolicySet or Policy Type xacml. On Setting below
34      * required attributes the Decision Raw policy will be created successfully.
35      * 
36      */
37     static Boolean isEdit = true;
38
39     /**
40      * Sample code to create Decison Raw Policy.
41      * @param args with policy parameters
42      */
43     public static void main(String[] args) {
44         try {
45             PolicyEngine policyEngine = new PolicyEngine("config.properties");
46             PolicyParameters policyParameters = new PolicyParameters();
47             // Set Policy Type
48             policyParameters.setPolicyClass(PolicyClass.Decision); // required
49             policyParameters.setPolicyName("com.testRawDecision"); // required
50             policyParameters.setRuleProvider(RuleProvider.RAW);// required
51             // required - The Raw XACML Policy Set or Policy and escape xml and remove line breaks.
52             policyParameters.setRawXacmlPolicy("");
53             policyParameters.setRequestID(UUID.randomUUID());
54
55             // API method to create Policy or update policy
56             PolicyChangeResponse response = null;
57             if (!isEdit) {
58                 response = policyEngine.createPolicy(policyParameters);
59             } else {
60                 response = policyEngine.updatePolicy(policyParameters);
61             }
62
63             if (response.getResponseCode() == 200) {
64                 System.out.println(response.getResponseMessage());
65                 System.out.println("Policy Created Successfully!");
66             } else {
67                 System.out.println("Error! " + response.getResponseMessage());
68             }
69         } catch (Exception e) {
70             System.err.println(e.getMessage());
71         }
72     }
73
74 }