Remove duplicated code
[policy/xacml-pdp.git] / applications / match / src / main / java / org / onap / policy / xacml / pdp / application / match / MatchPdpApplication.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.match;
24
25 import java.nio.file.Path;
26 import java.util.Arrays;
27 import org.onap.policy.common.endpoints.parameters.RestServerParameters;
28 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyTypeIdentifier;
29 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyTranslator;
30 import org.onap.policy.pdp.xacml.application.common.XacmlApplicationException;
31 import org.onap.policy.pdp.xacml.application.common.std.StdMatchableTranslator;
32 import org.onap.policy.pdp.xacml.application.common.std.StdXacmlApplicationServiceProvider;
33
34 public class MatchPdpApplication extends StdXacmlApplicationServiceProvider {
35
36     public static final String ONAP_MATCH_BASE_POLICY_TYPE = "onap.policies.Match";
37     public static final String ONAP_MATCH_DERIVED_POLICY_TYPE = "onap.policies.match.";
38
39     private static final ToscaPolicyTypeIdentifier supportedPolicy = new ToscaPolicyTypeIdentifier(
40             ONAP_MATCH_BASE_POLICY_TYPE, "1.0.0");
41
42     private StdMatchableTranslator translator = new StdMatchableTranslator();
43
44     /**
45      * Constructor.
46      */
47     public MatchPdpApplication() {
48         super();
49
50         applicationName = "match";
51         actions = Arrays.asList("match");
52         supportedPolicyTypes.add(supportedPolicy);
53     }
54
55     @Override
56     public void initialize(Path pathForData, RestServerParameters policyApiParameters)
57             throws XacmlApplicationException {
58         //
59         // Store our API parameters and path for translator so it
60         // can go get Policy Types
61         //
62         this.translator.setPathForData(pathForData);
63         this.translator.setApiRestParameters(policyApiParameters);
64         //
65         // Let our super class do its thing
66         //
67         super.initialize(pathForData, policyApiParameters);
68     }
69
70     @Override
71     public boolean canSupportPolicyType(ToscaPolicyTypeIdentifier policyTypeId) {
72         return policyTypeId.getName().startsWith(ONAP_MATCH_DERIVED_POLICY_TYPE);
73     }
74
75     @Override
76     protected ToscaPolicyTranslator getTranslator(String type) {
77         return translator;
78     }
79
80 }