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