1591b9190ce7a2e8b19388bd476d50e66e7ee335
[policy/xacml-pdp.git] / applications / monitoring / src / main / java / org / onap / policy / xacml / pdp / application / monitoring / MonitoringPdpApplication.java
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_SONHANDLER = "onap.policies.monitoring.docker.sonhandler.app";
50     private static final String ONAP_MONITORING_DERIVED_POLICY_TYPE = "onap.policies.monitoring";
51     private static final String VERSION_100 = "1.0.0";
52
53     private StdCombinedPolicyResultsTranslator translator = new StdCombinedPolicyResultsTranslator();
54     private List<ToscaPolicyTypeIdentifier> supportedPolicyTypes = new ArrayList<>();
55
56     /**
57      * Constructor.
58      */
59     public MonitoringPdpApplication() {
60         //
61         // By default this supports just Monitoring policy types
62         //
63         supportedPolicyTypes.add(new ToscaPolicyTypeIdentifier(ONAP_MONITORING_BASE_POLICY_TYPE, VERSION_100));
64         supportedPolicyTypes.add(new ToscaPolicyTypeIdentifier(ONAP_MONITORING_CDAP, VERSION_100));
65         supportedPolicyTypes.add(new ToscaPolicyTypeIdentifier(ONAP_MONITORING_APPSERVER, VERSION_100));
66         supportedPolicyTypes.add(new ToscaPolicyTypeIdentifier(ONAP_MONITORING_SONHANDLER, VERSION_100));
67     }
68
69     @Override
70     public String applicationName() {
71         return "monitoring";
72     }
73
74     @Override
75     public List<String> actionDecisionsSupported() {
76         return Arrays.asList("configure");
77     }
78
79     @Override
80     public synchronized List<ToscaPolicyTypeIdentifier> supportedPolicyTypes() {
81         return supportedPolicyTypes;
82     }
83
84     @Override
85     public boolean canSupportPolicyType(ToscaPolicyTypeIdentifier policyTypeId) {
86         //
87         // For Monitoring, we will attempt to support all versions
88         // of the policy type. Since we are only packaging a decision
89         // back with a JSON payload of the property contents.
90         //
91         return (policyTypeId.getName().equals(ONAP_MONITORING_BASE_POLICY_TYPE)
92                 || policyTypeId.getName().equals(ONAP_MONITORING_CDAP)
93                 || policyTypeId.getName().equals(ONAP_MONITORING_APPSERVER)
94                 || policyTypeId.getName().equals(ONAP_MONITORING_SONHANDLER)
95                 || policyTypeId.getName().startsWith(ONAP_MONITORING_DERIVED_POLICY_TYPE));
96     }
97
98     @Override
99     protected ToscaPolicyTranslator getTranslator(String type) {
100         return translator;
101     }
102
103 }