Add statistics and sonar cleanup and blacklist
[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_DERIVED_POLICY_TYPE = "onap.policies.monitoring";
47
48     private StdCombinedPolicyResultsTranslator translator = new StdCombinedPolicyResultsTranslator();
49     private List<ToscaPolicyTypeIdentifier> supportedPolicyTypes = new ArrayList<>();
50
51     /**
52      * Constructor.
53      */
54     public MonitoringPdpApplication() {
55         //
56         // By default this supports just Monitoring policy types
57         //
58         supportedPolicyTypes.add(new ToscaPolicyTypeIdentifier(ONAP_MONITORING_BASE_POLICY_TYPE, "1.0.0"));
59     }
60
61     @Override
62     public String applicationName() {
63         return "monitoring";
64     }
65
66     @Override
67     public List<String> actionDecisionsSupported() {
68         return Arrays.asList("configure");
69     }
70
71     @Override
72     public synchronized List<ToscaPolicyTypeIdentifier> supportedPolicyTypes() {
73         return supportedPolicyTypes;
74     }
75
76     @Override
77     public boolean canSupportPolicyType(ToscaPolicyTypeIdentifier policyTypeId) {
78         //
79         // For Monitoring, we will attempt to support all versions
80         // of the policy type. Since we are only packaging a decision
81         // back with a JSON payload of the property contents.
82         //
83         return (policyTypeId.getName().equals(ONAP_MONITORING_BASE_POLICY_TYPE)
84                 || policyTypeId.getName().startsWith(ONAP_MONITORING_DERIVED_POLICY_TYPE));
85     }
86
87     @Override
88     protected ToscaPolicyTranslator getTranslator(String type) {
89         return translator;
90     }
91
92 }