Submit Policy Tutorials
[policy/xacml-pdp.git] / tutorials / tutorial-xacml-application / src / main / java / org / onap / policy / tutorial / tutorial / TutorialRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ============LICENSE_END=========================================================
17  */
18
19 package org.onap.policy.tutorial.tutorial;
20
21 import com.att.research.xacml.std.annotations.XACMLAction;
22 import com.att.research.xacml.std.annotations.XACMLRequest;
23 import com.att.research.xacml.std.annotations.XACMLResource;
24 import com.att.research.xacml.std.annotations.XACMLSubject;
25 import java.util.Map;
26 import java.util.Map.Entry;
27 import lombok.Getter;
28 import lombok.Setter;
29 import lombok.ToString;
30 import org.onap.policy.models.decisions.concepts.DecisionRequest;
31
32 @Getter
33 @Setter
34 @ToString
35 @XACMLRequest(ReturnPolicyIdList = true)
36 public class TutorialRequest {
37     @XACMLSubject(includeInResults = true)
38     private String onapName;
39
40     @XACMLSubject(attributeId = "urn:org:onap:onap-component", includeInResults = true)
41     private String onapComponent;
42
43     @XACMLSubject(attributeId = "urn:org:onap:onap-instance", includeInResults = true)
44     private String onapInstance;
45
46     @XACMLAction()
47     private String action;
48
49     @XACMLResource(attributeId = "urn:org:onap:tutorial-user", includeInResults = true)
50     private String user;
51
52     @XACMLResource(attributeId = "urn:org:onap:tutorial-entity", includeInResults = true)
53     private String entity;
54
55     @XACMLResource(attributeId = "urn:org:onap:tutorial-permission", includeInResults = true)
56     private String permission;
57
58     /**
59      * createRequest.
60      *
61      * @param decisionRequest Incoming
62      * @return TutorialRequest object
63      */
64     public static TutorialRequest createRequest(DecisionRequest decisionRequest) {
65         //
66         // Create our object
67         //
68         TutorialRequest request = new TutorialRequest();
69         //
70         // Add the subject attributes
71         //
72         request.onapName = decisionRequest.getOnapName();
73         request.onapComponent = decisionRequest.getOnapComponent();
74         request.onapInstance = decisionRequest.getOnapInstance();
75         //
76         // Add the action attribute
77         //
78         request.action = decisionRequest.getAction();
79         //
80         // Add the resource attributes
81         //
82         Map<String, Object> resources = decisionRequest.getResource();
83         for (Entry<String, Object> entrySet : resources.entrySet()) {
84             if ("user".equals(entrySet.getKey())) {
85                 request.user = entrySet.getValue().toString();
86             }
87             if ("entity".equals(entrySet.getKey())) {
88                 request.entity = entrySet.getValue().toString();
89             }
90             if ("permission".equals(entrySet.getKey())) {
91                 request.permission = entrySet.getValue().toString();
92             }
93         }
94
95         return request;
96     }
97 }