37847723f4dd4d21698c17643c652598c6147f3b
[policy/xacml-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 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  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.xacml.pdp.application.monitoring;
24
25 import java.util.ArrayList;
26 import java.util.Arrays;
27 import java.util.List;
28
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.StdCombinedPolicyResultsTranslator;
32 import org.onap.policy.pdp.xacml.application.common.std.StdXacmlApplicationServiceProvider;
33
34 /**
35  * This is the engine class that manages the instance of the XACML PDP engine.
36  *
37  * <p>It is responsible for initializing it and shutting it down properly in a thread-safe manner.
38  *
39  *
40  * @author pameladragosh
41  *
42  */
43 public class MonitoringPdpApplication extends StdXacmlApplicationServiceProvider {
44
45     private static final String ONAP_MONITORING_BASE_POLICY_TYPE = "onap.Monitoring";
46     private static final String ONAP_MONITORING_CDAP = "onap.policies.monitoring.cdap.tca.hi.lo.app";
47     private static final String ONAP_MONITORING_APPSERVER =
48             "onap.policies.monitoring.dcaegen2.collectors.datafile.datafile-app-server";
49     private static final String ONAP_MONITORING_DERIVED_POLICY_TYPE = "onap.policies.monitoring";
50     private static final String VERSION_100 = "1.0.0";
51
52     private StdCombinedPolicyResultsTranslator translator = new StdCombinedPolicyResultsTranslator();
53     private List<ToscaPolicyTypeIdentifier> supportedPolicyTypes = new ArrayList<>();
54
55     /**
56      * Constructor.
57      */
58     public MonitoringPdpApplication() {
59         //
60         // By default this supports just Monitoring policy types
61         //
62         supportedPolicyTypes.add(new ToscaPolicyTypeIdentifier(ONAP_MONITORING_BASE_POLICY_TYPE, VERSION_100));
63         supportedPolicyTypes.add(new ToscaPolicyTypeIdentifier(ONAP_MONITORING_CDAP, VERSION_100));
64         supportedPolicyTypes.add(new ToscaPolicyTypeIdentifier(ONAP_MONITORING_APPSERVER, VERSION_100));
65     }
66
67     @Override
68     public String applicationName() {
69         return "monitoring";
70     }
71
72     @Override
73     public List<String> actionDecisionsSupported() {
74         return Arrays.asList("configure");
75     }
76
77     @Override
78     public synchronized List<ToscaPolicyTypeIdentifier> supportedPolicyTypes() {
79         return supportedPolicyTypes;
80     }
81
82     @Override
83     public boolean canSupportPolicyType(ToscaPolicyTypeIdentifier policyTypeId) {
84         //
85         // For Monitoring, we will attempt to support all versions
86         // of the policy type. Since we are only packaging a decision
87         // back with a JSON payload of the property contents.
88         //
89         return (policyTypeId.getName().equals(ONAP_MONITORING_BASE_POLICY_TYPE)
90                 || policyTypeId.getName().equals(ONAP_MONITORING_CDAP)
91                 || policyTypeId.getName().equals(ONAP_MONITORING_APPSERVER)
92                 || policyTypeId.getName().startsWith(ONAP_MONITORING_DERIVED_POLICY_TYPE));
93     }
94
95     @Override
96     protected ToscaPolicyTranslator getTranslator(String type) {
97         return translator;
98     }
99
100 }