Build XACML PDP support for native xacml policy type
[policy/xacml-pdp.git] / applications / native / src / main / java / org / onap / policy / xacml / pdp / application / nativ / NativePdpApplication.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 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  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.xacml.pdp.application.nativ;
24
25 import com.att.research.xacml.api.Request;
26 import com.att.research.xacml.api.Response;
27 import java.util.Arrays;
28 import java.util.List;
29 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyTypeIdentifier;
30 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyTranslator;
31 import org.onap.policy.pdp.xacml.application.common.std.StdXacmlApplicationServiceProvider;
32
33 /**
34  * This class implements an application that handles onap.policies.native.Xacml policies.
35  *
36  * @author Chenfei Gao (cgao@research.att.com)
37  *
38  */
39 public class NativePdpApplication extends StdXacmlApplicationServiceProvider {
40
41     private static final ToscaPolicyTypeIdentifier supportedPolicyType = new ToscaPolicyTypeIdentifier(
42             "onap.policies.native.Xacml", "1.0.0");
43     private NativePdpApplicationTranslator translator = new NativePdpApplicationTranslator();
44
45     @Override
46     public String applicationName() {
47         return "native";
48     }
49
50     @Override
51     public List<String> actionDecisionsSupported() {
52         return Arrays.asList("native");
53     }
54
55     @Override
56     public synchronized List<ToscaPolicyTypeIdentifier> supportedPolicyTypes() {
57         return Arrays.asList(supportedPolicyType);
58     }
59
60     @Override
61     public boolean canSupportPolicyType(ToscaPolicyTypeIdentifier policyTypeId) {
62         return supportedPolicyType.equals(policyTypeId);
63     }
64
65     @Override
66     protected ToscaPolicyTranslator getTranslator(String type) {
67         return translator;
68     }
69
70     /**
71      * Makes decision for the incoming native xacml request.
72      * @param request the native xacml request
73      * @return the native xacml response
74      */
75     public Response makeNativeDecision(Request request) {
76         return this.xacmlDecision(request);
77     }
78 }